From c77637aa6781f3275839674cb4fa2d4b72b8827c Mon Sep 17 00:00:00 2001 From: charles <981744753@qq.com> Date: 星期一, 15 七月 2024 19:34:55 +0800 Subject: [PATCH] fix:修复纤度登记表,检验表,产量等级表部分的bug修复 --- src/views/systemSetting/silkStandardSetting/components/silkTableList.vue | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/views/systemSetting/silkStandardSetting/components/silkTableList.vue b/src/views/systemSetting/silkStandardSetting/components/silkTableList.vue index bc3226f..34d5eb1 100644 --- a/src/views/systemSetting/silkStandardSetting/components/silkTableList.vue +++ b/src/views/systemSetting/silkStandardSetting/components/silkTableList.vue @@ -47,7 +47,6 @@ } " ></el-input> - {{item.prop}} <div class="common-select-btn" @click="clearupColumn(item.prop,i)"> <i class="el-icon-remove" title="鍒犻櫎"></i> </div> @@ -356,7 +355,9 @@ //瑙e喅琛ㄦ牸鎶栧姩闂 beforeUpdate() { this.$nextTick(() => { - this.$refs["fromTable"].doLayout() + if(this.$refs["fromTable"]){ + this.$refs["fromTable"].doLayout() + } }) } } -- Gitblit v1.8.0