删除修改
This commit is contained in:
parent
e023e3ae7f
commit
63bd139913
@ -906,7 +906,7 @@ export default {
|
||||
handleDelete(row) {
|
||||
const ids = row.id || this.ids;
|
||||
this.$modal
|
||||
.confirm('是否确认删除居住社区信息编号为"' + ids + '"的数据项?')
|
||||
.confirm('是否确认删除居住社区信息的数据项?')
|
||||
.then(function () {
|
||||
return delCommunityInfo(ids);
|
||||
})
|
||||
|
||||
@ -580,7 +580,7 @@ export default {
|
||||
/** 删除按钮操作 */
|
||||
handleDelete(row) {
|
||||
const ids = row.id || this.ids;
|
||||
this.$modal.confirm('是否确认删除被护理人基本信息编号为"' + ids + '"的数据项?').then(function() {
|
||||
this.$modal.confirm('是否确认删除被护理人基本信息的数据项?').then(function() {
|
||||
return delPatientArchives(ids);
|
||||
}).then(() => {
|
||||
this.getList();
|
||||
|
||||
@ -11,7 +11,7 @@
|
||||
<el-form-item label="护理站" prop="nurseStationId" v-if="nurseStationlist.find((e) => e.isAdmin == '1')">
|
||||
<el-select
|
||||
v-model="queryParams.nurseStationId"
|
||||
|
||||
|
||||
placeholder="请选择护理站"
|
||||
v-loadmore="loadMore"
|
||||
@keyup.enter.native="handleQuery"
|
||||
@ -1278,7 +1278,7 @@ export default {
|
||||
methods: {
|
||||
// // 新增所属科室按钮
|
||||
departclick(item, index) {
|
||||
|
||||
|
||||
console.log(item);
|
||||
this.departid = item.departmentCode;
|
||||
this.innerVisible2 = true;
|
||||
@ -1298,7 +1298,7 @@ export default {
|
||||
},
|
||||
// 新增护理站按钮
|
||||
clickinnerVisible(item, index) {
|
||||
|
||||
|
||||
// console.log(item);
|
||||
this.stationid = item.nurseStationId;
|
||||
this.innerVisible = true;
|
||||
@ -1443,7 +1443,7 @@ export default {
|
||||
this.total3 = res.total;
|
||||
this.loading = false;
|
||||
});
|
||||
|
||||
|
||||
},
|
||||
// 取消按钮
|
||||
cancel() {
|
||||
@ -1456,7 +1456,7 @@ export default {
|
||||
},
|
||||
// 表单重置
|
||||
reset() {
|
||||
|
||||
|
||||
this.form = {
|
||||
id: null,
|
||||
nurseStationId: null,
|
||||
@ -1490,7 +1490,7 @@ export default {
|
||||
],
|
||||
};
|
||||
this.resetForm("form");
|
||||
|
||||
|
||||
},
|
||||
|
||||
/** 搜索按钮操作 */
|
||||
@ -1647,7 +1647,7 @@ export default {
|
||||
handleDelete(row) {
|
||||
const ids = row.id || this.ids;
|
||||
this.$modal
|
||||
.confirm('是否确认删除护理站人员信息编号为"' + ids + '"的数据项?')
|
||||
.confirm('是否确认删除护理站人员信息的数据项?')
|
||||
.then(function () {
|
||||
return delPerson(ids);
|
||||
})
|
||||
|
||||
Loading…
Reference in New Issue
Block a user