|
@@ -90,14 +90,14 @@ export default {
|
|
|
return `${
|
|
|
(this.$refs.table.localPagination.current - 1) * this.$refs.table.localPagination.pageSize + index + 1
|
|
|
}`
|
|
|
- },
|
|
|
+ }
|
|
|
},
|
|
|
{
|
|
|
title: '配置名称',
|
|
|
dataIndex: 'title',
|
|
|
width: 150,
|
|
|
checked: true,
|
|
|
- align: 'center',
|
|
|
+ align: 'center'
|
|
|
},
|
|
|
{
|
|
|
title: '配置类型',
|
|
@@ -107,7 +107,7 @@ export default {
|
|
|
dataIndex: 'code',
|
|
|
customRender: (text, record, index) => {
|
|
|
return this.classNameCodeMap[text]
|
|
|
- },
|
|
|
+ }
|
|
|
},
|
|
|
{
|
|
|
title: '自定义处理',
|
|
@@ -117,63 +117,56 @@ export default {
|
|
|
align: 'center',
|
|
|
customRender: (text, record, index) => {
|
|
|
return text ? '是' : '否'
|
|
|
- },
|
|
|
+ }
|
|
|
},
|
|
|
{
|
|
|
title: '数据表',
|
|
|
dataIndex: 'titleCode',
|
|
|
width: 120,
|
|
|
checked: true,
|
|
|
- align: 'center',
|
|
|
+ align: 'center'
|
|
|
},
|
|
|
{
|
|
|
title: '数据列(中文)',
|
|
|
width: 120,
|
|
|
checked: true,
|
|
|
align: 'center',
|
|
|
- dataIndex: 'titleColumnName',
|
|
|
+ dataIndex: 'titleColumnName'
|
|
|
},
|
|
|
{
|
|
|
title: '数据列(英文)',
|
|
|
width: 120,
|
|
|
checked: true,
|
|
|
align: 'center',
|
|
|
- dataIndex: 'titleColumnCode',
|
|
|
+ dataIndex: 'titleColumnCode'
|
|
|
},
|
|
|
{
|
|
|
title: '数据处理类',
|
|
|
width: 200,
|
|
|
checked: true,
|
|
|
align: 'center',
|
|
|
- dataIndex: 'handleName',
|
|
|
+ dataIndex: 'handleName'
|
|
|
},
|
|
|
{
|
|
|
title: '数据处理类编码',
|
|
|
width: 180,
|
|
|
checked: true,
|
|
|
align: 'center',
|
|
|
- dataIndex: 'handleCode',
|
|
|
+ dataIndex: 'handleCode'
|
|
|
},
|
|
|
{
|
|
|
title: '数据处理方法',
|
|
|
dataIndex: 'methodName',
|
|
|
width: 180,
|
|
|
checked: true,
|
|
|
- align: 'center',
|
|
|
+ align: 'center'
|
|
|
},
|
|
|
{
|
|
|
title: '数据处理方法编码',
|
|
|
width: 180,
|
|
|
checked: true,
|
|
|
align: 'center',
|
|
|
- dataIndex: 'methodCode',
|
|
|
- },
|
|
|
- {
|
|
|
- title: '备注简介',
|
|
|
- width: 120,
|
|
|
- checked: true,
|
|
|
- align: 'center',
|
|
|
- dataIndex: 'remark',
|
|
|
+ dataIndex: 'methodCode'
|
|
|
},
|
|
|
{
|
|
|
title: '操作',
|
|
@@ -182,8 +175,8 @@ export default {
|
|
|
align: 'center',
|
|
|
fixed: 'right',
|
|
|
checked: true,
|
|
|
- scopedSlots: { customRender: 'action' },
|
|
|
- },
|
|
|
+ scopedSlots: { customRender: 'action' }
|
|
|
+ }
|
|
|
],
|
|
|
// 下拉框map
|
|
|
// 加载数据方法 必须为 Promise 对象
|