|
@@ -162,17 +162,12 @@ export default defineComponent({
|
|
|
const b = new Date(`${that.$util.YMD(now)} ${time}`).getTime() - 1000 * 60 * Number(diff)
|
|
|
return a >= b
|
|
|
}
|
|
|
- const ratherTimeDaily = (now, time, diff) => {
|
|
|
- const a = new Date(now).getTime()
|
|
|
- const b = new Date(`${that.$util.YMD(now)} ${time}`).getTime() + oneDayTime - 1000 * 60 * Number(diff)
|
|
|
- return a >= b
|
|
|
- }
|
|
|
const tipsCpt = computed(() => {
|
|
|
let str: Array<string> = []
|
|
|
if (!store.state.app.signInfo?.id && ratherTime(store.state.app.timestamp, store.state.app.publicConfig['sign.begin.time'], store.state.app.publicConfig['sign.remind.time'])) {
|
|
|
str.push('未签到')
|
|
|
}
|
|
|
- if (!store.state.app.dailyInfo?.id && ratherTimeDaily(store.state.app.timestamp, store.state.app.publicConfig['log.submit.time'], store.state.app.publicConfig['log.remind.time'])) {
|
|
|
+ if (!store.state.app.dailyInfo?.id && ratherTime(store.state.app.timestamp, store.state.app.publicConfig['log.submit.time'], store.state.app.publicConfig['log.remind.time'])) {
|
|
|
str.push('未提交日志')
|
|
|
}
|
|
|
if (store.getters['app/isWeeklyDay'] && !store.state.app.weeklyInfo?.id && ratherTime(store.state.app.timestamp, store.state.app.publicConfig['week.submit.time'], store.state.app.publicConfig['week.remind.time'])) {
|