From fd174c6efc16f5771e6882bd8fc29f08259285f9 Mon Sep 17 00:00:00 2001 From: zxl <763096477@qq.com> Date: 星期一, 24 三月 2025 11:47:55 +0800 Subject: [PATCH] 容缺计数 --- src/views/projectEngineering/projectLibrary/index.vue | 18 ++++++++++++------ 1 files changed, 12 insertions(+), 6 deletions(-) diff --git a/src/views/projectEngineering/projectLibrary/index.vue b/src/views/projectEngineering/projectLibrary/index.vue index bda8944..4e15aeb 100644 --- a/src/views/projectEngineering/projectLibrary/index.vue +++ b/src/views/projectEngineering/projectLibrary/index.vue @@ -225,9 +225,9 @@ <template v-if="item.slotName === 'projectType'"> <dict-tag :options="dict.type.sys_project_type" :value="scope.row.projectType"/> </template> - <!-- projectSubType鎻掓Ы --> + <!-- attractInvestment鎻掓Ы --> <template v-if="item.slotName === 'attractInvestment'"> - <dict-tag :options="dict.type.sys_project_type" :value="scope.row.attractInvestment"/> + <dict-tag :options="dict.type.attract_investment" :value="scope.row.attractInvestment"/> </template> <!-- constructionNature鎻掓Ы --> <template v-if="item.slotName === 'constructionNature'"> @@ -237,19 +237,25 @@ <template v-if="item.slotName === 'investType'"> <dict-tag :options="dict.type.sys_investment_type" :value="scope.row.investType"/> </template> - <!-- investType鎻掓Ы --> + <!-- importanceType鎻掓Ы --> <template v-if="item.slotName === 'importanceType'"> <dict-tag :options="dict.type.sys_key_categories" :value="scope.row.importanceType"/> </template> - <!-- planStartTime --> - <template v-if="item.slotName === 'planStartTime'"> - {{ scope.row.planStartTime ? scope.row.planStartTime.split('-')[0] + '骞�' : '' }} + <!-- plannedStartDate --> + <template v-if="item.slotName === 'plannedStartDate'"> + {{ scope.row.plannedStartDate ? scope.row.plannedStartDate.split('-')[0] + '骞�' : '' }} </template> <!-- usedStatus鎻掓Ы --> <template v-if="item.slotName === 'usedStatus'"> <dict-tag :options="dict.type.sys_used_status" :value="scope.row.usedStatus"/> </template> + <!-- planStartTime --> + <template v-else-if="item.slotName === 'planStartTime'"> + {{ scope.row.planStartTime ? scope.row.planStartTime.split(' ')[0] : '' }} + </template> </template> + <!-- 杞崲璁″垝寮�宸ユ牱寮� 绌烘牸鍒囧壊鏁扮粍 --> + <!-- 榛樿鏄剧ず --> <span v-else>{{ scope.row[item.columns] }}</span> </template> -- Gitblit v1.8.0