登录
注册
关于我们
简体中文
ENGLISH
搜索
购物车
0 ITEMS ON YOUR CART
首页
动态
方案
案例
专栏
期刊
联系我们
首页
期刊
一、表格sintels-table
数字云创 开发规范
一、表格sintels-table
CmsWing
一、表格sintels-table
### 一、表头
...
1、点击表头字段排序 @sort-change='sortChange' 示例: sortChange({ column, prop, order }) { this.listQuery.sort = order == 'ascending' ? 'asc' : 'desc' this.listQuery.sidx = !order ? '' : prop this.initData() }, 2、行双击 @row-dblclick="handledbClick" handleDel(id) { this.$confirm('此操作将永久删除该数据, 是否继续?', '提示', { type: 'warning' }).then(() => { request({ url: `/api/example/TvendorInfo/${id}`, method: 'DELETE' }).then(res => { this.$message({ type: 'success', message: res.msg, onClose: () => { this.initData() } }); }) }).catch(() => { }); }, 3、行选择 @selection-change="handleSelectionChange" ### 二、表体 #### 1、行操作
编辑
删除
##### 1.1、删除 handleDel(id) { this.$confirm('此操作将永久删除该数据, 是否继续?', '提示', { type: 'warning' }).then(() => { request({ url: `/api/example/TvendorInfo/${id}`, method: 'DELETE' }).then(res => { this.$message({ type: 'success', message: res.msg, onClose: () => { this.initData() } }); }) }).catch(() => { }); }, ##### 1.2、编辑行数据 addOrUpdateHandle(id,isDetail) { this.formVisible = true this.$nextTick(() => { this.$refs.sintelsForm.init(id,isDetail) }) }, #### 2、行展示
{{ scope.row.finner | dynamicText(finnerOptions) }}
##### 2.1、内容超过表格展示量显示省略号... show-overflow-tooltip ##### 2.2、数据字典插槽:
网站导航
首页
动态
方案
案例
专栏
期刊
联系我们