修改
This commit is contained in:
parent
acbced983a
commit
03fb466150
@ -69,6 +69,7 @@
|
||||
v-loading="loading"
|
||||
:data="nurseStationlist"
|
||||
@selection-change="handleSelectionChange"
|
||||
:element-loading-text="loadingtext"
|
||||
>
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column label="护理站编号" align="center" prop="nurseStationCode" width="150" />
|
||||
|
||||
@ -181,7 +181,8 @@ export default {
|
||||
],
|
||||
},
|
||||
|
||||
checkedDataList: [] // 选择的护理机构分类
|
||||
checkedDataList: [],// 选择的护理机构分类
|
||||
loadingtext: "加载中"
|
||||
};
|
||||
},
|
||||
created() {
|
||||
@ -191,13 +192,14 @@ export default {
|
||||
},
|
||||
methods: {
|
||||
GenerateQRcode(row) {
|
||||
this.loading = true
|
||||
this.loadingtext = "生成中";
|
||||
this.loading = true;
|
||||
this.nurseStationFriendslist = row;
|
||||
nurseStationFriends(row.id).then(res => {
|
||||
this.nurseStationFriendslist.img =
|
||||
process.env.VUE_APP_BASE_API + res.msg;
|
||||
this.nurseStationFriendsshow = true;
|
||||
this.loading = false
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
imgs(item) {
|
||||
@ -299,6 +301,7 @@ export default {
|
||||
},
|
||||
// 表单重置
|
||||
reset() {
|
||||
this.loadingtext = "加载中";
|
||||
this.nurseStationType2 = [];
|
||||
this.form = {
|
||||
id: null,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user