From 8c33e7df410c5f332061dedeff1bdcdf6c9b091b Mon Sep 17 00:00:00 2001 From: woody Date: Fri, 26 Sep 2025 09:29:22 +0800 Subject: [PATCH] =?UTF-8?q?fix(resettle1):=20childNode=E4=B8=BA=E7=A9=BA?= =?UTF-8?q?=E4=B8=8D=E8=AF=B7=E6=B1=82=E5=88=97=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/architecture/resettleArchite/resettle1.vue | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pages/architecture/resettleArchite/resettle1.vue b/pages/architecture/resettleArchite/resettle1.vue index 0c2e196..e9916ff 100644 --- a/pages/architecture/resettleArchite/resettle1.vue +++ b/pages/architecture/resettleArchite/resettle1.vue @@ -148,7 +148,7 @@ export default { queryParams: { childNode: '', stage: 1, - stageStatus: 0, + stageStatus: null, }, stageList: [ [ @@ -199,7 +199,9 @@ export default { onLoad() { this.init() this.getChildList().then(() => { - this.getDataList() + if (this.queryParams.childNode) { + this.getDataList() + } }) }, @@ -225,9 +227,8 @@ export default { methods: { init() { this.stageName = this.stageList[0][0].label - this.statusName = this.statusList[0][0].label + // this.statusName = this.statusList[0][0].label this.queryParams.stage = this.stageList[0][0].value - this.queryParams.stageStatus = this.statusList[0][0].value }, //复制文字 copyText() { @@ -522,7 +523,7 @@ export default { stage: this.stageList[0][0].value, stageStatus: this.statusList[0][0].value, } - this.handleSearch() + // this.handleSearch() }, }, }