From 082b572b91abd0d5ae8e409714553130448aa6d1 Mon Sep 17 00:00:00 2001 From: 张涛 <“2538313560@qq.com”> Date: 星期五, 30 八月 2024 17:25:44 +0800 Subject: [PATCH] fix:薪资调整 --- 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