|
|
|
@ -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: "",
|
|
|
|
@ -18,7 +18,9 @@ let prescribeQuery = {
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
fullscreenLoading:false,
|
|
|
|
|
fullscreenLoading: false,
|
|
|
|
|
dlSickLoading: false,
|
|
|
|
|
updatePrecribeLoading: false,
|
|
|
|
|
showSearch: true,
|
|
|
|
|
filterQuery: {...query},
|
|
|
|
|
editType: "",
|
|
|
|
@ -29,12 +31,12 @@ export default {
|
|
|
|
|
total: 0,
|
|
|
|
|
list: [],
|
|
|
|
|
// =============患者=================
|
|
|
|
|
showSickerDialog:false,
|
|
|
|
|
sicker:null,
|
|
|
|
|
showSickerDialog: false,
|
|
|
|
|
sicker: null,
|
|
|
|
|
// =============患者end================
|
|
|
|
|
// ============处方=============
|
|
|
|
|
sickerInfo:null,
|
|
|
|
|
showPrescribeDetailDialog:false,
|
|
|
|
|
sickerInfo: null,
|
|
|
|
|
showPrescribeDetailDialog: false,
|
|
|
|
|
prescribeLoading: false,
|
|
|
|
|
prescribeList: [],
|
|
|
|
|
prescribeTotal: 0,
|
|
|
|
@ -72,7 +74,7 @@ export default {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
sickerClick(row) {
|
|
|
|
|
this.sickerInfo={...row}
|
|
|
|
|
this.sickerInfo = {...row}
|
|
|
|
|
this.prescribeQuery = {...prescribeQuery}
|
|
|
|
|
this.prescribeQuery.sickerCode = row.code
|
|
|
|
|
this.prescribeLoading = true
|
|
|
|
@ -80,30 +82,58 @@ export default {
|
|
|
|
|
this.prescribeLoading = false
|
|
|
|
|
this.prescribeList = res.data.list || []
|
|
|
|
|
this.prescribeTotal = res.data.total || 0
|
|
|
|
|
}).catch(()=>{
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
this.prescribeLoading = false
|
|
|
|
|
this.prescribeList = []
|
|
|
|
|
this.prescribeTotal = 0
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
showSickerInfo(row){
|
|
|
|
|
showSickerInfo(row) {
|
|
|
|
|
this.sicker = {...row}
|
|
|
|
|
this.showSickerDialog = true
|
|
|
|
|
},
|
|
|
|
|
showPrescribeDetail(row){
|
|
|
|
|
showPrescribeDetail(row) {
|
|
|
|
|
this.fullscreenLoading = true
|
|
|
|
|
detail({prescribeCode:row.code}).then(res=>{
|
|
|
|
|
detail({prescribeCode: row.code}).then(res => {
|
|
|
|
|
this.fullscreenLoading = false
|
|
|
|
|
if(res.code!=20000){
|
|
|
|
|
if (res.code != 20000) {
|
|
|
|
|
this.$message.error(res.message)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
this.prescribeDetail = res.data
|
|
|
|
|
this.showPrescribeDetailDialog = true
|
|
|
|
|
}).catch (() => {
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
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("数据加载失败")
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|