Commit 1a24d3aa authored by zhengke's avatar zhengke

修改

parent d9505ca6
......@@ -138,6 +138,7 @@
display: flex;
justify-content: space-between;
align-items: center;
height:25px;
}
.tufa_xiugai {
......
......@@ -333,6 +333,21 @@
},
//值班打卡或值班交接
SetDutyCheck(status) {
let diaMsg='';
if(status==1){
diaMsg='是否确定值班打卡?'
}
if(status==2){
diaMsg='是否确定值班交接?'
}
this.$q.dialog({
title: '删除提示',
message: diaMsg,
cancel: true,
persistent: true,
ok: "确定",
cancel: "取消",
}).onOk(() => {
this.checkMsg.Status = status;
saveDutyCheck(this.checkMsg).then(res => {
if (res.Code == 1) {
......@@ -354,6 +369,10 @@
})
}
})
}).onCancel(() => {
});
},
//刷新父页面
refreshPage() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment