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(); }); }