[update] 修改bug78134,78133

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