预付费前端更新

This commit is contained in:
czx 2021-01-20 13:45:16 +08:00
parent 9515b4e754
commit dff06a9106

View File

@ -264,6 +264,7 @@
created() {
this.getList();
this.buildSuggestionList();
this.myGetUser();
},
mounted() {
@ -316,6 +317,21 @@
};
},
buildSuggestionList() {
listNoPrepayment(this.queryParams).then(response => {
let prepaymentList = response.data.records;
this.suggestionList = prepaymentList.map(item => {
return {
"value": item.hospitalId,
"departName": item.departName,
"name": item.name,
"bedId": item.bedId,
"patientId": item.patientId,
}
});
});
},
//
getDefaultNoPrepayment() {
this.loading = true;