基于iView的列表组件封装

封装的好处多多,代码便于维护、减少代码量、减少BUG

前台封装以前没有尝试过,这回试试,哈哈

目录

1、列表组件封装

2、树组件封装

3、下拉框组件封装

4、上传组件封装

列表组件的API

 属性 说明 类型 默认值
 url 请求列表数据的地址 必填  String
pagingOption 列表底部是否显示分页信息及总数,有两个配置项 showPaging、showTotal Object 显示分页及总数信息
cols 列定义 必填 Array
height   列表高度 选填 Number 500
checkBox 是否显示复选框 选填 Boolean 显示

事件

onSelect:选择某一行时触发,返回值是当前行数据

slot

toolButtons:列表上方的工具按钮定义

列表组件的封装

1、dataTable.vue文件

<template>
    <div>
        <div class="buttonGroup">
            <slot name="toolButtons"></slot>
        </div>
        <Table :loading="loading" border :height=‘height‘ stripe :columns="cols" :data="dataContent" @on-selection-change="onSelect"></Table>
        <Page ref="paging" v-if="pagingOption.showPaging" :total="total" style="margin-top:5px;float: right"
              :show-total="pagingOption.showTotal"
              @on-change="getData"></Page>
    </div>
</template>

<script>

    export default {
        data: function () {
            return {
                current: 1,
                pageSize: 10,
                dataContent: [],
                loading: false,
                total: 0,
                initPage: 1
            }
        },
        props: {
            height:{
              type:Number,
              default:500
            },
            url: {
                type: String,
                require: true
            },
            pagingOption: {
                type: Object,
                default: function () {
                    return {
                        showPaging: true,
                        showTotal: true
                    }
                }
            },
            cols: {},
            checkBox:{
                type:Boolean,
                default:true
            }
        },
        methods: {
            refresh() {
                this.getData(1)
            },

            getData(pageNum) {
                this.loading = true
                this.$http.get(this.url, this.getPagingInfo(pageNum)).then(res => {
                    this.dataContent = res.result.data
                    this.total = res.result.total
                    this.loading = false
                })
            },
            getPagingInfo(page) {
                const param = {
                    current: page,
                    pageSize: this.pageSize
                }
                return param
            },
            onSelect(selection){
                this.$emit(‘onSelect‘,{
                    selection:selection
                })
            }
        },
        mounted() {
            this.getData(this.initPage)
        },
        created(){
            if(this.checkBox){
                this.cols.unshift({
                    type: ‘selection‘,
                    width: 60,
                    align: ‘center‘
                })
            }
        }
    }
</script>

<style lang="less" scoped>
    .margin(@border_width:10px) {
        margin-bottom: @border_width;
    }

    .buttonGroup {
        text-align: right;
        .margin(5px)
    }
</style>

2、dataTable.js

import dataTable from ‘./dataTable.vue‘

const _dataTable = {
    install:function(Vue){
        Vue.component(‘WtDataTable‘,dataTable)
    }
}

export default _dataTable

3、添加组件到Vue中

import WtDataTable from ‘./components/table/dataTable.js‘
Vue.use(WtDataTable)

列表组件的应用(简单)

以系统日志模块举例

syslogPerformance.vue

<template>
    <WtDataTable :url="url" :checkBox="checkBox" :cols="cols">
    </WtDataTable>
</template>

<script>
    export default {
        data:function(){
            return {
                url:‘syslogPerformance/getData‘,
                checkBox:false,
                cols:[
                    {
                        title: ‘来访主机‘,
                        key: ‘remoteHost‘
                    },
                    {
                        title: ‘访问的url‘,
                        key: ‘requestURI‘
                    },
                    {
                        title: ‘请求类型‘,
                        key: ‘requestType‘
                    },
                    {
                        title: ‘远程端口‘,
                        key: ‘remotePort‘
                    },
                    {
                        title: ‘耗时‘,
                        key: ‘timeConsuming‘
                    },
                    {
                        title: ‘发起时间‘,
                        key: ‘createDateTime‘
                    }
                ]
            }
        }
    }
</script>

<style scoped>

</style>

效果

列表组件应用(复杂)

<template lang="html">
    <div>
        <WtDataTable ref="userList" :url="url"
                     :pagingOption="pagingOption" :cols="columns" @onSelect="onSelect">
            <div slot="toolButtons">
                <Button type="primary" @click="add">新增</Button>
                <Button type="error" @click="batchDelete">删除</Button>
            </div>
        </WtDataTable>
    </div>
</template>

<script>
    export default {
        data() {
return {
                url: ‘/sysUser/getData‘,

                pagingOption: {
                    showPaging: true,
                    showTotal: true
                },
                columns: [
                    {
                        title: ‘Id‘,
                        key: ‘userId‘,
                        display: ‘none‘
                    },
                    {
                        title: ‘姓名‘,
                        key: ‘userName‘,
                        render: (h, params) => {
                            return h(‘a‘, {
                                style: {
                                    color: ‘blue‘,
                                    ‘text-decoration‘: ‘underline‘
                                },
                                on: {
                                    click: () => {
                                        this.$Modal.info({
                                            title: ‘User Info‘,
                                            content: ‘neirong‘
                                        })
                                    }
                                }
                            }, params.row.userName)
                        }
                    },
                    {
                        title: ‘账号‘,
                        key: ‘account‘
                    },
                    {
                        title: ‘密码‘,
                        key: ‘password‘
                    },
                    {
                        title: ‘邮箱‘,
                        key: ‘mail‘
                    },
                    {
                        title: ‘生日‘,
                        key: ‘birthday‘
                    },
                    {
                        title: ‘状态‘,
                        key: ‘inUse‘,
                        render: (h, params) => {
                            let text = params.row.inUse ? ‘开启‘ : ‘禁用‘
                            return h(‘span‘, text)
                        }
                    },
                    {
                        title: ‘操作‘,
                        key: ‘action‘,
                        fixed: ‘right‘,
                        width: 120,
                        render: (h, params) => {
                            return h(‘div‘, [
                                h(‘Button‘, {
                                    props: {
                                        type: ‘error‘,
                                        size: ‘small‘
                                    },
                                    on: {
                                        click: () => {
                                            // this.remove(params)
                                            const _this = this
                                            WT.modal.confirm({
                                                content: ‘确认删除?‘,
                                                onOk: function () {
                                                    _this.deleteUser(params)
                                                }
                                            })
                                        }
                                    }
                                }, ‘删除‘),
                                h(‘Button‘, {
                                    props: {
                                        type: ‘text‘,
                                        size: ‘small‘
                                    },
                                    on: {
                                        click: () => {
                                            this.edit(params)
                                        }
                                    }
                                }, ‘修改‘)
                            ]);
                        }
                    }
                ],

                defaultAvatars:[],
                ruleValidate: {
                    userName: [{
                        required: true,
                        message: ‘用户姓名不能为空‘,
                        trigger: ‘blur‘
                    }],
                    account: [{
                        required: true,
                        message: ‘账号不能为空‘,
                        trigger: ‘blur‘
                    }],
                    password: [{
                        trigger: ‘blur‘,
                        validator: validatePass
                    }],
                    passwordConfirm: [{
                        trigger: ‘blur‘,
                        validator: validatePassCheck
                    }],
                    mail: [
                        {required: true, message: ‘邮箱必填‘, trigger: ‘blur‘},
                        {type: ‘email‘, message: ‘邮箱地址有误‘, trigger: ‘blur‘}
                    ]
                },
                userInfo: {
                    userId: null,
                    userName: ‘‘,
                    mail: ‘‘,
                    password: ‘‘,
                    account: ‘‘,
                    passwordConfirm: ‘‘,
                    inUse: true,
                    birthday: ‘‘,
                    avatars: []
                },
                selectedItem: [],
                mailSuffixs: []
            }
        },
        methods: {

            //列表方法
            add() {
                this.showUserAddModal()
            },
            batchDelete() {
                if (this.selectedItem) {
                    const userIds = new Array()
                    this.selectedItem.forEach((k, v) => {
                        userIds.push(k.userId)
                    })
                    this.$http.delete(‘/sysUser/deleteBatch‘, userIds).then(res => {
                        WT.toast.success("删除成功")
                        this.reloadDataGrid()
                    })
                }
            }
        }
    }
</script>

<style lang="css">
    .ivu-form-item-content {
        text-align: left;
    }
</style>

效果

原文地址:https://www.cnblogs.com/lichking2017/p/9048741.html

时间: 2024-10-10 01:21:44

基于iView的列表组件封装的相关文章

列表组件概述(转)

全文转至:http://www.cnblogs.com/lyzg/ 这次要介绍的是列表组件.为了写它,我花了有将近2周的晚上,才一点一点的把它写到现在这个程度.到目前为止,一共写了有17个文件,虽然没有覆盖到一些更复杂的场景,但是把我当时计划写这个组件的基本目的已经完成了.先给大家看看我最后写出来的文件情况: 也许有人会好奇,一个列表的功能怎么会写出这么多东西出来?关于这个问题的答案,我稍后再来总结,先让我描述下我写这些东西之前产生的想法. 1. 背景介绍 我是去年5月份在上家公司开始做的前端开

Vue.js 自定义组件封装实录——基于现有控件的二次封装(以计时器为例)

在本人着手开发一个考试系统的过程中,出现了如下一个需求:制作一个倒计时的控件显示在试卷页面上.本文所记录的就是这样的一个过程. 前期工作 对于这个需求,自然我想到的是有没有现成的组件可以直接使用(本着不重复发明轮子的原则).于是我就在 GitHub 上找寻.确实找到了不少,但是与需求之间的差距还比较大.从零开始写又不太现实(时间摆在那里,加之自己的前端也是刚学,还没有从零开始手撸一个控件的能力),所以在已有组件的基础上进行二次封装便成了一个比较可行的方法(几乎也是唯一解).遂在 npm 上以 c

jQueryMobile 列表组件与面板组件

1. 列表组件 data-count-theme countTheme 指定数字泡泡的显示风格 data-divider-theme dividerTheme 指定分割线的显示风格 data-filter filter 若为true则列表组件提供过滤器 N/A filterCallback 过滤器列表项的回调函数 data-filter-placeholdr filterPlaceholder 过滤器的占位内容 data-filter-theme filterTheme  过滤器搜索栏显示风格

基于log4net的日志组件扩展分装,实现自动记录交互日志 XYH.Log4Net.Extend

背景: 随着公司的项目不断的完善,功能越来越复杂,服务也越来越多(微服务),公司迫切需要对整个系统的每一个程序的运行情况进行监控,并且能够实现对自动记录不同服务间的程序调用的交互日志,以及通一个服务或者项目中某一次执行情况的跟踪监控 根据log4net的现有功能满足不了实际需求,所以需要以log4net为基础进行分装完善,现在分装出了一个基础的版本,如有不妥之处,多多指点功能简介: 该组件是在log4net的基础上,进行了一定的扩展封装实现的自动记录交互日志功能 该组件的封装的目的是解决一下几个

基于sqlite的Qt 数据库封装

[代码] mydata.h 10 #ifndef MYDATA_H 11 #define MYDATA_H 12 #include <QObject> 13 #include <QString> 14 #include <QtSql/QSqlTableModel> 15 #include <QtSql/QSqlQuery> 16 #include <QStringList> 17 #include <QtSql/QSqlDatabase&g

Linux组件封装之五:生产者消费者问题

生产者,消费者问题是有关互斥锁(MutexLock).条件变量(Condition).线程(Thread)的经典案例: 描述的问题可以叙述为 生产者往buffer中投放产品,而消费者则从buffer中消费产品. 生产着消费者问题的难点在于: 为了缓冲区数据的安全性,一次只允许一个线程进入缓冲区投放或者消费产品,这个buffer就是所谓的临界资源. 生产者往缓冲区中投放产品时,如果缓冲区已满,那么该线程需要等待,即进入阻塞状态,一直到消费者取走产品为止. 相应的,消费者欲取走产品,如果此时缓冲区为

基于jQuery的TreeGrid组件详解

一.TreeGrid组件相关的类 1.TreeGrid(_config) _config:json格式的数据,组件所需要的数据都通过该参数提供. 2.TreeGridItem(_root, _rowId, _rowIndex, _rowData) _root:显示组件实例的目标容器对象. _rowId:选中行的id. _rowIndex:选中行的索引. _rowData:json格式的行数据. 二._config参数详解 id:组件实例的id. width:组件实例的宽度. renderTo:用

c#编写的基于Socket的异步通信系统封装DLL--SanNiuSignal.DLL

SanNiuSignal是一个基于异步socket的完全免费DLL:它里面封装了Client,Server以及UDP:有了这个DLL:用户不用去关心心跳:粘包 :组包:发送文件等繁琐的事情:大家只要简单的几步就能实现强大的通信系统:能帮助到大家是本人觉得最幸福的事情,也希望大家 在用的过程中找出DLL中不足的地方:好改正:此DLL的苹果版和java版正在努力开发中......交流QQ:365368248:此演示源码下载地址:http://pan.baidu.com/s/1eQw1npw 里面包括

bootstrap 之 列表组件使用

列表是几乎所有网站都会用到的一个组件,正好bootstrap也给我们提供了这个组件的样式,下面我给大家简单介绍一下bootstrap中的列表组件的用法! 首先,重提一下引用bootstrap的核心文件的问题,以免有些刚入手的朋友忘了这个. 在页面的开头,先引用bootstrap的核心文件(css,js)等. <!-- 新 Bootstrap 核心 CSS 文件 --> <link rel='stylesheet' href='css/bootstrap.min.css' /> &l