From 615fbb4d50656660a0bc0db3136de219568211e3 Mon Sep 17 00:00:00 2001
From: Admin <978517621@qq.com>
Date: 星期一, 19 九月 2022 17:54:02 +0800
Subject: [PATCH] Default Changelist
---
src/views/system/personShiftManage/personTimeManage/holidayTimeGroup/index.vue | 11 ++++++-----
1 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/src/views/system/personShiftManage/personTimeManage/holidayTimeGroup/index.vue b/src/views/system/personShiftManage/personTimeManage/holidayTimeGroup/index.vue
index e9e4e07..b37119d 100644
--- a/src/views/system/personShiftManage/personTimeManage/holidayTimeGroup/index.vue
+++ b/src/views/system/personShiftManage/personTimeManage/holidayTimeGroup/index.vue
@@ -282,7 +282,7 @@
if (res.data.code === '200') {
ElMessage({
type: 'success',
- message: res.data.msg
+ message: '添加成功!'
});
getListByPage();
} else {
@@ -299,7 +299,7 @@
if (res.data.code === '200') {
ElMessage({
type: 'success',
- message: res.data.msg
+ message: '修改成功!'
});
getListByPage();
} else {
@@ -323,7 +323,8 @@
if (state.chosenIndex == null) {
await addRecord(data);
} else {
- (data.id = JSON.stringify(state.addRecord.id)), await editRecord(data);
+ data.id = JSON.stringify(state.addRecord.id)
+ await editRecord(data);
}
state.dialogAddRecord = false;
} else {
@@ -338,7 +339,7 @@
if (res.data.code === '200') {
ElMessage({
type: 'success',
- message: res.data.msg
+ message: '删除成功!'
});
getListByPage();
} else {
@@ -377,7 +378,7 @@
state.deleteSetDialog = false;
ElMessage({
type: 'success',
- message: res.data.msg
+ message: '删除成功!'
});
getListByPage();
} else {
--
Gitblit v1.9.2