From 3a4536445096cdb80d586a67df3c00ab4a0faecb Mon Sep 17 00:00:00 2001 From: jinlin <jinlin> Date: 星期一, 22 七月 2024 16:46:38 +0800 Subject: [PATCH] 修改 --- web/src/views/modules/basicInfo/ProductModelTree.vue | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/web/src/views/modules/basicInfo/ProductModelTree.vue b/web/src/views/modules/basicInfo/ProductModelTree.vue index 5949b1d..9f59fb1 100644 --- a/web/src/views/modules/basicInfo/ProductModelTree.vue +++ b/web/src/views/modules/basicInfo/ProductModelTree.vue @@ -7,7 +7,7 @@ size="small" clearable ></el-input> - <el-button type="primary" @click="add()" style="margin: 10px 0 0 10px;padding: 9px 18px !important;">鏂板鍨嬪彿</el-button> + <el-button v-if="isShow" type="primary" @click="add()" style="margin: 10px 0 0 10px;padding: 9px 18px !important;">鏂板鍨嬪彿</el-button> <el-divider></el-divider> <el-tree style="height: 90%;overflow: auto" @@ -34,6 +34,10 @@ name: 'ProductModelTree', props: { showXdy: { + type: Boolean, + default: true + }, + isShow: { type: Boolean, default: true }, @@ -80,7 +84,6 @@ if (this.basic) { if (this.productList && this.productList[0].children) { this.defaultId = this.productList[0].children[0].id - console.log(this.defaultId, 'this.defaultID') this.$nextTick(() => { this.$refs.tree.setCurrentKey(this.defaultId); //涓�瀹氳鍔犺繖涓�変腑浜嗗惁鍒欐牱寮忔病鏈夊嚭鏉� }); -- Gitblit v1.9.1