预付费前端更新
This commit is contained in:
parent
9515b4e754
commit
dff06a9106
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user