货物包拆单预测

This commit is contained in:
zhonghua.li
2026-05-26 15:58:32 +08:00
parent 90371f1c13
commit 3cbc3d1251
5 changed files with 566 additions and 38 deletions

View File

@@ -208,7 +208,6 @@
</th>
<th>手机号</th>
<th>特权开通日期</th>
<th>申请人特权</th>
<th>开通日期</th>
<th>购买时间</th>
<th>金额</th>
@@ -267,7 +266,6 @@
</td>
<td>{{ row.applyPhone || '-' }}</td>
<td>{{ formatTryDate(row.tryDate) }}</td>
<td>{{ formatApplicantPrivilege(row) }}</td>
<td>{{ formatOpenDate(row.applyDate) }}</td>
<td>{{ formatLatestTradePayTime(row) }}</td>
<td>{{ formatLatestTradeTotalMoney(row) }}</td>
@@ -905,9 +903,6 @@ export default {
if (viptime == null || viptime === '') return '-'
return this.formatOpenDate(viptime)
},
formatApplicantPrivilege(row) {
return this.formatUserPrivilege(row && row.applicantUser)
},
formatReferrerPrivilege(row) {
return this.formatUserPrivilege(row && row.referrerUser)
},