Commit c3540f7f by 陈羽

update: 更改话务任务下线通知存储方式

parent 919ea67d
...@@ -273,7 +273,6 @@ export default { ...@@ -273,7 +273,6 @@ export default {
if (cDay % 10 !== 0 || cDay === 10) { if (cDay % 10 !== 0 || cDay === 10) {
cDayStr = numString.charAt((cDay - 1) % 10); cDayStr = numString.charAt((cDay - 1) % 10);
} }
console.log();
return cDay === 1 ? monString.charAt(cMonth - 1) + '月初一' : monString.charAt(cMonth - 1) + '月' + (cDay < 11 ? '初' : cDay < 20 ? '十' : cDay < 30 ? '廿' : '三十') + cDayStr; // tgString.charAt((cYear - 4) % 10) + dzString.charAt((cYear - 4) % 12) + '年 ' + run + monString.charAt(cMonth - 1) + '月' + return cDay === 1 ? monString.charAt(cMonth - 1) + '月初一' : monString.charAt(cMonth - 1) + '月' + (cDay < 11 ? '初' : cDay < 20 ? '十' : cDay < 30 ? '廿' : '三十') + cDayStr; // tgString.charAt((cYear - 4) % 10) + dzString.charAt((cYear - 4) % 12) + '年 ' + run + monString.charAt(cMonth - 1) + '月' +
} }
}, },
...@@ -460,14 +459,13 @@ export default { ...@@ -460,14 +459,13 @@ export default {
}); });
}, },
toTipTask() { toTipTask() {
console.log(localStorage.getItem('taskTip')); if (!sessionStorage.getItem('taskTip')) {
if (!localStorage.getItem('taskTip')) {
this.taskTipShow = true; this.taskTipShow = true;
} }
}, },
taskTipClose() { taskTipClose() {
this.taskTipShow = false; this.taskTipShow = false;
localStorage.setItem('taskTip', true); sessionStorage.setItem('taskTip', true);
}, },
/** /**
......
...@@ -235,7 +235,6 @@ export default { ...@@ -235,7 +235,6 @@ export default {
}); });
}, },
showDetail(item) { showDetail(item) {
console.log(item);
this.confirmDetailShow = true; this.confirmDetailShow = true;
} }
}, },
......
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