From f595b61e84be364e5d65440425297e93152dfaca Mon Sep 17 00:00:00 2001 From: chenhc <2369838784@qq.com> Date: Wed, 18 Sep 2024 14:56:43 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=B8=8B=E8=BD=BD=E5=8D=95=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../collect/prescribe/prescribeDownloadDialog.vue | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/views/collect/prescribe/prescribeDownloadDialog.vue b/src/views/collect/prescribe/prescribeDownloadDialog.vue index 6e79c40b..930f7456 100644 --- a/src/views/collect/prescribe/prescribeDownloadDialog.vue +++ b/src/views/collect/prescribe/prescribeDownloadDialog.vue @@ -349,7 +349,7 @@ export default { page: 1, limit: 10,}; this.actDateRange = []; - this.getList(); + // this.getList(); }, downloadPrescription(status) { if(status == 1){ @@ -396,9 +396,14 @@ export default { this.filterQuery.endTime = null; } getThrOrderPage(this.filterQuery).then(res => { + this.loading = false - this.list = res.data.list || [] - this.total = res.data.total || 0 + if (res.code == 20000){ + this.list = res.data.list || [] + this.total = res.data.total || 0 + }else { + this.$message.error(res.message) + } }).catch(() => { this.loading = false this.list = [] @@ -502,7 +507,7 @@ export default { this.queryList = re.data.queryList; this.fromList = re.data.fromList; this.getWorkBindBusTypes(this) - this.getList(); + // this.getList(); }); }