修改
This commit is contained in:
parent
c1593120b7
commit
1ff0df4043
@ -912,14 +912,14 @@ export default {
|
|||||||
},
|
},
|
||||||
/** 删除按钮操作 */
|
/** 删除按钮操作 */
|
||||||
handleDelete(row) {
|
handleDelete(row) {
|
||||||
const ids = row.id || this.ids;
|
var ids = row.id || this.ids;
|
||||||
const nurseStationIds = row.nurseStationId || this.nurseStationIds;
|
var nurseStationIds = row.nurseStationId || this.nurseStationIds;
|
||||||
const moduleTypes = row.moduleType || this.moduleTypes;
|
var moduleTypes = row.moduleType || this.moduleTypes;
|
||||||
const nurseItemIds = row.nurseItemId || this.nurseItemIds;
|
var nurseItemIds = row.nurseItemId || this.nurseItemIds;
|
||||||
if (!nurseStationIds) {
|
if (nurseStationIds == undefined) {
|
||||||
nurseStationIds = "";
|
nurseStationIds = "";
|
||||||
}
|
}
|
||||||
if (!nurseItemIds) {
|
if (nurseItemIds == undefined) {
|
||||||
nurseItemIds = "";
|
nurseItemIds = "";
|
||||||
}
|
}
|
||||||
this.$modal
|
this.$modal
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user