|
|
|
@ -1,5 +1,5 @@
|
|
|
|
|
import {page} from "@/api/basic/sicker/skPersonApi";
|
|
|
|
|
import {detail, page as prescribePage} from "@/api/basic/sicker/prescribeApi";
|
|
|
|
|
import {downloadSick, page} from "@/api/basic/sicker/skPersonApi";
|
|
|
|
|
import {detail, downloadPrescribe, page as prescribePage} from "@/api/basic/sicker/prescribeApi";
|
|
|
|
|
|
|
|
|
|
let query = {
|
|
|
|
|
name: "",
|
|
|
|
@ -19,6 +19,8 @@ export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
fullscreenLoading: false,
|
|
|
|
|
dlSickLoading: false,
|
|
|
|
|
updatePrecribeLoading: false,
|
|
|
|
|
showSearch: true,
|
|
|
|
|
filterQuery: {...query},
|
|
|
|
|
editType: "",
|
|
|
|
@ -104,6 +106,34 @@ export default {
|
|
|
|
|
this.fullscreenLoading = false
|
|
|
|
|
this.$message.error("数据加载失败")
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
onDownload() {
|
|
|
|
|
this.dlSickLoading = true;
|
|
|
|
|
downloadSick({thidSys: "thirdId"}).then(res => {
|
|
|
|
|
this.dlSickLoading = false
|
|
|
|
|
if (res.code != 20000) {
|
|
|
|
|
this.$message.error(res.message)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
this.dlSickLoading = false
|
|
|
|
|
this.$message.error("数据加载失败")
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
updatePrecribe() {
|
|
|
|
|
this.updatePrecribeLoading = true;
|
|
|
|
|
downloadPrescribe({sickCode: this.sickerInfo.code}).then(res => {
|
|
|
|
|
this.updatePrecribeLoading = false
|
|
|
|
|
if (res.code != 20000) {
|
|
|
|
|
this.$message.error(res.message)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
this.updatePrecribeLoading = false
|
|
|
|
|
this.$message.error("数据加载失败")
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|