You need to sign in or sign up before continuing.
Commit 43b4437b by huaying

Merge branch 'feature/7月迭代-会员' into dev

parents 04cf84de 904a0760
......@@ -391,6 +391,8 @@ export default {
const { status } = row;
// console.log(row)
let isOverdue = Date.now() >= row.limitTime;
// limitTime 为 null 就不算过期
if(row.limitTime == null) return isOverdue = false;
if (status == 3) {
_content = `<div class="${isOverdue ? 'dm-status--info' : 'dm-status--error'}">${isOverdue ? '已过期' : '待领取'}</div>`;
} else if (status == 4) {
......
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