Commit 9a51fa7e authored by dragondean@qq.com's avatar dragondean@qq.com

路线价格过期标准

parent 1a9aea20
...@@ -381,7 +381,7 @@ export default { ...@@ -381,7 +381,7 @@ export default {
if(validateEndDate && validateEndDate < nowDate) { if(validateEndDate && validateEndDate < nowDate) {
notSetPrice = true; notSetPrice = true;
} }
let setPriceText = notSetPrice ? '(' + this.$t('未设置价格') + ')' : ''; let setPriceText = notSetPrice ? '(' + this.$t('已过期') + ')' : '';
if(row.blacklist) return this.$t('黑名单') + setPriceText; if(row.blacklist) return this.$t('黑名单') + setPriceText;
if(row.auditStatus === AuditStatusEnum.PASS) return this.$t('已上架') + setPriceText; if(row.auditStatus === AuditStatusEnum.PASS) return this.$t('已上架') + setPriceText;
return this.$t('已下架') + setPriceText; return this.$t('已下架') + setPriceText;
......
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