1
0
mirror of https://github.com/FatttSnake/Pinnacle-OA.git synced 2026-04-04 22:41:24 +08:00

update attendance message

This commit is contained in:
gzw
2023-06-10 21:43:04 +08:00
parent 66cd78ce31
commit 5e990c30a9

View File

@@ -56,7 +56,7 @@ export default {
.then((response) => { .then((response) => {
if (response.data.code === DATABASE_SAVE_OK) { if (response.data.code === DATABASE_SAVE_OK) {
ElMessage({ ElMessage({
message: '签到成功', message: '打卡成功',
type: 'success' type: 'success'
}) })
this.$emit('setDialogVisible', false) this.$emit('setDialogVisible', false)
@@ -64,7 +64,7 @@ export default {
}) })
.catch((reportError) => { .catch((reportError) => {
ElMessage({ ElMessage({
message: '签到失败', message: '打卡失败',
type: 'warning' type: 'warning'
}) })
}) })