[update] 修改bug78134,78133
This commit is contained in:
@@ -167,6 +167,7 @@ export default {
|
|||||||
return parseInt(index) + 1
|
return parseInt(index) + 1
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
// 章节条款
|
||||||
{
|
{
|
||||||
title: this.$t('enterpriseStandardLibrary.standard.subjectToClause'),
|
title: this.$t('enterpriseStandardLibrary.standard.subjectToClause'),
|
||||||
align: 'center',
|
align: 'center',
|
||||||
@@ -174,11 +175,20 @@ export default {
|
|||||||
dataIndex: 'clause',
|
dataIndex: 'clause',
|
||||||
scopedSlots: { customRender: 'text' }
|
scopedSlots: { customRender: 'text' }
|
||||||
},
|
},
|
||||||
|
// 标准内容或要求
|
||||||
{
|
{
|
||||||
title: this.$t('enterpriseStandardLibrary.standard.standardContentOrRequirements'),
|
title: this.$t('enterpriseStandardLibrary.standard.standardContentOrRequirements'),
|
||||||
align: 'center',
|
align: 'center',
|
||||||
dataIndex: 'requirement',
|
dataIndex: 'requirement',
|
||||||
scopedSlots: { customRender: 'text' }
|
scopedSlots: { customRender: 'text' }
|
||||||
|
},
|
||||||
|
// 整改部门
|
||||||
|
{
|
||||||
|
title: this.$t('enterpriseStandardLibrary.standard.rectificationDepartment'),
|
||||||
|
align: 'center',
|
||||||
|
dataIndex: 'rectificationDepartment',
|
||||||
|
width: 400,
|
||||||
|
scopedSlots: { customRender: 'text' }
|
||||||
}
|
}
|
||||||
], // 稽查内容表格列参数
|
], // 稽查内容表格列参数
|
||||||
dataSource: [], // 稽查内容数据
|
dataSource: [], // 稽查内容数据
|
||||||
|
|||||||
@@ -32,7 +32,8 @@
|
|||||||
:data-source="dataList"
|
:data-source="dataList"
|
||||||
:pagination="ipagination"
|
:pagination="ipagination"
|
||||||
:row-selection="{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange }"
|
:row-selection="{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange }"
|
||||||
:loading="loading">
|
:loading="loading"
|
||||||
|
@change="handleTableChange">
|
||||||
|
|
||||||
<!-- 标准编号、标准名称跳转详情-->
|
<!-- 标准编号、标准名称跳转详情-->
|
||||||
<template v-slot:detail="text, record">
|
<template v-slot:detail="text, record">
|
||||||
@@ -175,6 +176,11 @@ export default {
|
|||||||
this.selectedRowKeys = value
|
this.selectedRowKeys = value
|
||||||
this.selectedRowList = row
|
this.selectedRowList = row
|
||||||
},
|
},
|
||||||
|
handleTableChange (pagination) {
|
||||||
|
// 分页、排序、筛选变化时触发
|
||||||
|
this.ipagination = pagination
|
||||||
|
this.replacePage()
|
||||||
|
},
|
||||||
handleCancel () {
|
handleCancel () {
|
||||||
this.visible = false
|
this.visible = false
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user