From cefcb88c6cd0690052e503d5f1c943cb7f8a03cb Mon Sep 17 00:00:00 2001
From: Your Name <123456>
Date: 星期三, 30 十一月 2022 09:18:32 +0800
Subject: [PATCH] Merge branch 'master' of https://sinanoaq.cn:8888/r/gtqt
---
src/views/system/personShiftManage/personTimeManage/workingHoursSet/index.vue | 13 +++++++------
1 files changed, 7 insertions(+), 6 deletions(-)
diff --git a/src/views/system/personShiftManage/personTimeManage/workingHoursSet/index.vue b/src/views/system/personShiftManage/personTimeManage/workingHoursSet/index.vue
index 5083c09..41487fd 100644
--- a/src/views/system/personShiftManage/personTimeManage/workingHoursSet/index.vue
+++ b/src/views/system/personShiftManage/personTimeManage/workingHoursSet/index.vue
@@ -14,7 +14,7 @@
<div class="main-card">
<el-row class="cardTop">
<el-col :span="12" class="mainCardBtn">
- <el-button type="primary" :icon="Plus" size="default" @click="dialogAddRecord = true">新建</el-button>
+ <el-button type="primary" :icon="Plus" size="default" @click="dialogAddRecord = true">新增</el-button>
<!-- <el-button type="warning" :icon="Edit" size="default" plain>修改</el-button>-->
<el-button type="danger" :icon="Delete" size="default" plain @click="deleteBatchBtn">删除</el-button>
</el-col>
@@ -24,7 +24,7 @@
<el-table-column type="selection" width="100" />
<el-table-column property="name" label="工作时间组名称" />
<el-table-column property="list" :formatter="toNames" label="关联工作时段" />
- <el-table-column property="info" label="描述信息" />
+ <el-table-column property="info" label="描述信息"/>
<el-table-column fixed="right" label="操作" align="center" width="250">
<template #default="scope">
<el-button link type="primary" size="small" :icon="View" @click="viewRecord(scope.row)">查看</el-button>
@@ -284,7 +284,7 @@
if (res.data.code === '200') {
ElMessage({
type: 'success',
- message: res.data.msg
+ message: '添加成功!'
});
getListByPage();
} else {
@@ -301,7 +301,7 @@
if (res.data.code === '200') {
ElMessage({
type: 'success',
- message: res.data.msg
+ message: '修改成功!'
});
getListByPage();
} else {
@@ -341,7 +341,7 @@
if (res.data.code === '200') {
ElMessage({
type: 'success',
- message: res.data.msg
+ message: '删除成功!'
});
getListByPage();
} else {
@@ -380,7 +380,7 @@
state.deleteSetDialog = false;
ElMessage({
type: 'success',
- message: res.data.msg
+ message: '删除成功!'
});
getListByPage();
} else {
@@ -448,6 +448,7 @@
userInfos.value.projectId = value;
await initBackEndControlRoutes();
};
+
return {
addRef,
addRules,
--
Gitblit v1.9.2