From c09e858fe674ea768248798ca86cf4b90cdff09d Mon Sep 17 00:00:00 2001 From: Crunchy <3114200645@qq.com> Date: 星期三, 31 七月 2024 15:07:38 +0800 Subject: [PATCH] 检验下单的时候遇到光纤接头损耗的特殊项目需要弹框填写,现在因为别的地方改动这里受到了影响 --- src/components/do/b3-work-time-management/work-time-statistics.vue | 9 ++++++--- 1 files changed, 6 insertions(+), 3 deletions(-) diff --git a/src/components/do/b3-work-time-management/work-time-statistics.vue b/src/components/do/b3-work-time-management/work-time-statistics.vue index 3b873af..d7d6d4c 100644 --- a/src/components/do/b3-work-time-management/work-time-statistics.vue +++ b/src/components/do/b3-work-time-management/work-time-statistics.vue @@ -56,11 +56,12 @@ </div> <div class="table"> <ValueTable ref="ValueTable0" - v-if="currentTable == 'value0'" + v-if="currentTable == 'value0'" :isColumnWidth="true" + :isShowZero="true" :url="$api.auxiliaryOriginalHours.selectAuxiliaryOriginalHours" :componentData="componentData" :key="upIndex" /> - <ValueTable ref="ValueTable1" - v-if="currentTable == 'value1'" + <ValueTable ref="ValueTable1" :isShowZero="true" + v-if="currentTable == 'value1'" :isColumnWidth="true" :url="$api.auxiliaryCorrectionHours.selectAuxiliaryCorrectionHours" :inputUrl="$api.auxiliaryCorrectionHours.upload" :componentData="componentData0" @@ -98,6 +99,7 @@ requiredAdd: [], requiredUp: [], accept:聽'.xlsx', + sort: false, inputType:聽'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', cellSpecialStyle:{ redColorByKey:'Hours' @@ -113,6 +115,7 @@ order: 'desc' } }, + sort: false, isIndex: true, showSelect: false, select: false, -- Gitblit v1.9.3