This commit is contained in:
曹辉 2022-11-17 12:28:18 +08:00
parent 69cc27c4a5
commit 6e46a11a9c

View File

@ -18,7 +18,6 @@
v-model="queryParams.nurseStationId"
clearable
placeholder="请选择护理站"
>
<el-option
v-for="item in handstationlist"
@ -39,7 +38,6 @@
<el-select
v-model="queryParams.nurseStationId"
placeholder="请选择护理站"
>
<el-option
v-for="item in handstationlist"
@ -490,7 +488,7 @@
:data="nurseStationlist"
@cell-dblclick="choicestationid"
>
<el-table-column label="请选择" width="70" align="center" >
<el-table-column label="请选择" width="70" align="center">
<template slot-scope="scope">
<el-button
type="primary"
@ -714,7 +712,7 @@ export default {
return {
imageUrl: "",
imgone: "",
handstationlist:[],
handstationlist: [],
//
upload: {
//
@ -740,7 +738,7 @@ export default {
multiple: true,
//
showSearch: true,
//
//
total: 0,
total2: 0,
total3: 0,
@ -831,7 +829,6 @@ export default {
this.info();
this.getInfoListinfo();
this.infos();
},
methods: {
imgUrl(imgUrl) {
@ -938,12 +935,12 @@ export default {
},
//
stationlist() {
this.loading=true;
this.loading = true;
getListByUser(this.getListByUserquery).then((res) => {
this.total4 = res.total;
this.nurseStationlist = res.rows;
});
this.loading=false;
this.loading = false;
},
//
getInfoListinfo() {
@ -1165,6 +1162,9 @@ export default {
console.log(valid);
if (valid) {
if (this.form.nurseStationItem.id != null) {
this.form.nurseStationItemPrices.forEach((e) => {
e.nurseStationItemId = this.form.nurseStationItem.id;
});
updateNurseItem(this.form).then((response) => {
var obj = { pictureUrlList: [] };
if (this.imgone != this.form.nurseStationItem.itemPictureUrl) {
@ -1193,10 +1193,10 @@ export default {
infos() {
var queryFor = {
pageNum: 1,
pageSize:9999,
pageSize: 9999,
};
getListByUser(queryFor).then((res) => {
console.log(res)
console.log(res);
this.handstationlist = res.rows;
});
},
@ -1217,7 +1217,7 @@ export default {
this.getList();
this.$modal.msgSuccess("删除成功");
})
.catch(() => { });
.catch(() => {});
},
/** 导入按钮操作 */
handleExport() {
@ -1241,7 +1241,6 @@ export default {
}
});
},
},
};
</script>