diff --git a/src/views/lb-business/purchase-apply/index.vue b/src/views/lb-business/purchase-apply/index.vue
index 0bba41c..4908063 100644
--- a/src/views/lb-business/purchase-apply/index.vue
+++ b/src/views/lb-business/purchase-apply/index.vue
@@ -79,6 +79,7 @@
手机号 |
领导人 |
开通日期 |
+ 系统到期日期 |
操作 |
@@ -100,6 +101,7 @@
{{ row.colleaguePhone || '-' }} |
{{ row.teamLeader || '-' }} |
{{ formatOpenDate(row.applyDate) }} |
+ {{ formatApplicantSystemExpireDate(row) }} |
编辑
删除
@@ -209,6 +211,7 @@
| 手机号 |
特权开通日期 |
开通日期 |
+ 系统到期日期 |
购买时间 |
金额 |
@@ -267,6 +270,7 @@
| {{ row.applyPhone || '-' }} |
{{ formatTryDate(row.tryDate) }} |
{{ formatOpenDate(row.applyDate) }} |
+ {{ formatApplicantSystemExpireDate(row) }} |
{{ formatLatestTradePayTime(row) }} |
{{ formatLatestTradeTotalMoney(row) }} |
@@ -903,6 +907,9 @@ export default {
if (viptime == null || viptime === '') return '-'
return this.formatOpenDate(viptime)
},
+ formatApplicantSystemExpireDate(row) {
+ return this.formatUserPrivilege(row && row.applicantUser)
+ },
formatReferrerPrivilege(row) {
return this.formatUserPrivilege(row && row.referrerUser)
},
|