From cb1f69717eed3b6a61b6c61a8934bac752782b2d Mon Sep 17 00:00:00 2001 From: wwl <xchao828@163.com> Date: 星期三, 05 三月 2025 17:00:38 +0800 Subject: [PATCH] 1 --- src/views/doctor/check/index.vue | 30 ++++++++++++++++++++++-------- 1 files changed, 22 insertions(+), 8 deletions(-) diff --git a/src/views/doctor/check/index.vue b/src/views/doctor/check/index.vue index ac92118..719b8d3 100644 --- a/src/views/doctor/check/index.vue +++ b/src/views/doctor/check/index.vue @@ -1418,6 +1418,7 @@ return { remakes: "", titles: "", + type: null, advice: "", idss: [], vaids: [], @@ -1597,8 +1598,14 @@ return ""; }, getbzlist() { + this.loading = true; getDeptAdvice(this.queryParam1).then((response) => { - this.deptAdviceList = response.data.list; + + if(response.data.list){ + this.deptAdviceList = response.data.list; + this.loading = false + } + this.total1 = response.data.total; }); }, @@ -1629,13 +1636,19 @@ }, // 妫�鏌ユ楠岀粨鏋滄寜閽� result() { - this.openOne = true; let tjNumber = this.tableAll.tjNumber; - console.log(tjNumber, 999); + console.log(this.tableAll.tjNumber,666); + getXm(tjNumber).then((res) => { - console.log(res, 666); this.xiangmuList = res.data; + if(this.xiangmuList.length > 0){ + this.openOne = true; + } + else{ + this.openOne = false; + this.$modal.msgWarning("鏆傛棤椤圭洰涓庢鏌ユ楠岀粨鏋�") + } }); }, queryResultone(row) { @@ -1650,7 +1663,6 @@ // 璁剧疆鏄惁闇�瑕佹敼鍙橀鑹� if (ycbz === "1") { this.isRed = true; // 璁剧疆鏍囪瘑锛屾敼鍙樺瓧浣撻鑹� - console.log(this.isRed, 444); } else { this.isRed = false; // 鎭㈠榛樿棰滆壊 } @@ -1969,9 +1981,9 @@ }); }, hb() { - if (this.queryParams.tjNumber != "") { - this.submitForm(); - } + /* if (this.queryParams.tjNumber != "") { + // this.submitForm(); + } */ }, propoChange() { this.cusobj = { sex: this.tableAll.cusSex, isZj: 1 }; @@ -2004,6 +2016,7 @@ this.loading = true; this.queryParams.type = this.tjStatus; getProList(this.queryParams).then((response) => { + console.log(response,333); if (response.code == 200) { this.loading = false; if (response.data) { @@ -2532,6 +2545,7 @@ tjNumber: this.tjNumber, proParentId: this.nums, }; + this.loading = true; getParentId(data).then((response) => { this.proParentList = response.data; this.value = []; -- Gitblit v1.8.0