{{ text || text === 0 ? text : global.emptyLine }}
{{ text || text === 0 ? text : global.emptyLine }}
@@ -172,14 +172,14 @@ export default {
title: this.$t('enterpriseStandardLibrary.check.basedStandardNo'),
align: 'center',
width: 180,
- dataIndex: 'standardNo',
+ dataIndex: 'inspectNo',
scopedSlots: { customRender: 'toDetail' }
},
{
title: this.$t('enterpriseStandardLibrary.check.basedStandardName'),
align: 'center',
width: 180,
- dataIndex: 'standardName',
+ dataIndex: 'inspectName',
scopedSlots: { customRender: 'toDetail' }
},
{
@@ -193,63 +193,63 @@ export default {
title: this.$t('enterpriseStandardLibrary.check.workGroup'),
align: 'center',
width: 180,
- dataIndex: 'workGroup',
+ dataIndex: 'standardizationWorkGroup',
scopedSlots: { customRender: 'text' }
},
{
title: this.$t('enterpriseStandardLibrary.check.department'),
align: 'center',
width: 180,
- dataIndex: 'department',
+ dataIndex: 'belongDept',
scopedSlots: { customRender: 'text' }
},
{
title: this.$t('enterpriseStandardLibrary.check.scheduledCheckDate'),
align: 'center',
width: 180,
- dataIndex: 'scheduledCheckDate',
+ dataIndex: 'planInspectDate',
scopedSlots: { customRender: 'scheduledCheckDate' }
},
{
title: this.$t('enterpriseStandardLibrary.check.headOfCheck'),
align: 'center',
width: 180,
- dataIndex: 'headOfCheck',
+ dataIndex: 'inspectUser',
scopedSlots: { customRender: 'text' }
},
{
title: this.$t('enterpriseStandardLibrary.check.contactPerson'),
align: 'center',
width: 180,
- dataIndex: 'contactPerson',
+ dataIndex: 'standardizationDockingUser',
scopedSlots: { customRender: 'text' }
},
{
title: this.$t('enterpriseStandardLibrary.check.checkFinishDate'),
align: 'center',
width: 180,
- dataIndex: 'checkFinishDate',
+ dataIndex: 'completeDate',
scopedSlots: { customRender: 'text' }
},
{
title: this.$t('enterpriseStandardLibrary.check.actualChecker'),
align: 'center',
width: 180,
- dataIndex: 'actualChecker',
+ dataIndex: 'actualInspectUser',
scopedSlots: { customRender: 'text' }
},
{
title: this.$t('enterpriseStandardLibrary.check.status'),
align: 'center',
width: 180,
- dataIndex: 'status',
+ dataIndex: 'inspectStatus',
scopedSlots: { customRender: 'text' }
},
{
title: this.$t('enterpriseStandardLibrary.check.createDate'),
align: 'center',
width: 180,
- dataIndex: 'createDate',
+ dataIndex: 'createTime',
scopedSlots: { customRender: 'text' }
},
{
@@ -280,6 +280,16 @@ export default {
}
})
},
+ // 计划稽查日期改变
+ scheduledCheckDateChange (val) {
+ this.queryParam.planInspectStartDate = val[0]
+ this.queryParam.planInspectEndDate = val[1]
+ },
+ // 创建日期改变
+ createDateChange (val) {
+ this.queryParam.inspectCreateStartDate = val[0]
+ this.queryParam.inspectCreateEndDate = val[1]
+ },
// 点击跳转企标详情
handleGoDetail (record) {
this.$openPageNewSheet({
diff --git a/src/views/enterpriseStandardLibrary/reviewPlan/ReviewPlanList.vue b/src/views/enterpriseStandardLibrary/reviewPlan/ReviewPlanList.vue
index 3737b1b9..6ee0009b 100644
--- a/src/views/enterpriseStandardLibrary/reviewPlan/ReviewPlanList.vue
+++ b/src/views/enterpriseStandardLibrary/reviewPlan/ReviewPlanList.vue
@@ -81,7 +81,7 @@