update 企标稽查计划

This commit is contained in:
danshihao
2023-11-22 14:12:00 +08:00
parent f842aaad35
commit 5a6d4ef402
@@ -37,8 +37,7 @@
<template v-slot:departOpinion="{text, record}">
<a-tooltip overlay-class-name="tooltip-style">
<template slot="title">{{ text || text === 0 ? text : global.emptyLine }}</template>
<a class="table-text can-click-table-text" @click="showDepartOpinion(record)" v-if="(text || text === 0)">{{ $t('view') }}</a>
<div class="table-text" v-else-if="(text || text === 0)">{{ text }}</div>
<a class="table-text can-click-table-text" @click="showDepartOpinion(record)" v-if="text && text.length">{{ $t('view') }}</a>
<div class="table-text" v-else>{{ global.emptyLine }}</div>
</a-tooltip>
</template>
@@ -193,7 +192,7 @@ export default {
title: this.$t('workCenter.esInspectionPlan.initiator'),
align: 'center',
width: 120,
dataIndex: 'initiator',
dataIndex: 'createByDictText',
showCodeList: [
EsInspectionPlan.liaisonCollect.value,
EsInspectionPlan.relevantPersonnelCountersign.value,
@@ -205,7 +204,7 @@ export default {
title: this.$t('workCenter.esInspectionPlan.departOpinion'),
align: 'center',
width: 120,
dataIndex: 'opinion',
dataIndex: 'processEsInspectPlanOpinionList',
showCodeList: [EsInspectionPlan.liaisonCollect.value],
scopedSlots: { customRender: 'departOpinion' }
},