feat: 下载单据

yanshishuju
chenhc 7 months ago
parent 31d28ace80
commit f595b61e84

@ -349,7 +349,7 @@ export default {
page: 1, page: 1,
limit: 10,}; limit: 10,};
this.actDateRange = []; this.actDateRange = [];
this.getList(); // this.getList();
}, },
downloadPrescription(status) { downloadPrescription(status) {
if(status == 1){ if(status == 1){
@ -396,9 +396,14 @@ export default {
this.filterQuery.endTime = null; this.filterQuery.endTime = null;
} }
getThrOrderPage(this.filterQuery).then(res => { getThrOrderPage(this.filterQuery).then(res => {
this.loading = false this.loading = false
this.list = res.data.list || [] if (res.code == 20000){
this.total = res.data.total || 0 this.list = res.data.list || []
this.total = res.data.total || 0
}else {
this.$message.error(res.message)
}
}).catch(() => { }).catch(() => {
this.loading = false this.loading = false
this.list = [] this.list = []
@ -502,7 +507,7 @@ export default {
this.queryList = re.data.queryList; this.queryList = re.data.queryList;
this.fromList = re.data.fromList; this.fromList = re.data.fromList;
this.getWorkBindBusTypes(this) this.getWorkBindBusTypes(this)
this.getList(); // this.getList();
}); });
} }

Loading…
Cancel
Save