Commit c3540f7f by 陈羽

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

parent 919ea67d
......@@ -273,7 +273,6 @@ export default {
if (cDay % 10 !== 0 || cDay === 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) + '月' +
}
},
......@@ -460,14 +459,13 @@ export default {
});
},
toTipTask() {
console.log(localStorage.getItem('taskTip'));
if (!localStorage.getItem('taskTip')) {
if (!sessionStorage.getItem('taskTip')) {
this.taskTipShow = true;
}
},
taskTipClose() {
this.taskTipShow = false;
localStorage.setItem('taskTip', true);
sessionStorage.setItem('taskTip', true);
},
/**
......
......@@ -235,7 +235,6 @@ export default {
});
},
showDetail(item) {
console.log(item);
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