增加系统到期日期
This commit is contained in:
@@ -79,6 +79,7 @@
|
|||||||
<th>手机号</th>
|
<th>手机号</th>
|
||||||
<th>领导人</th>
|
<th>领导人</th>
|
||||||
<th>开通日期</th>
|
<th>开通日期</th>
|
||||||
|
<th>系统到期日期</th>
|
||||||
<th class="col-actions">操作</th>
|
<th class="col-actions">操作</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
@@ -100,6 +101,7 @@
|
|||||||
<td>{{ row.colleaguePhone || '-' }}</td>
|
<td>{{ row.colleaguePhone || '-' }}</td>
|
||||||
<td>{{ row.teamLeader || '-' }}</td>
|
<td>{{ row.teamLeader || '-' }}</td>
|
||||||
<td>{{ formatOpenDate(row.applyDate) }}</td>
|
<td>{{ formatOpenDate(row.applyDate) }}</td>
|
||||||
|
<td>{{ formatApplicantSystemExpireDate(row) }}</td>
|
||||||
<td class="col-actions">
|
<td class="col-actions">
|
||||||
<el-button type="text" @click="handleEdit(row)">编辑</el-button>
|
<el-button type="text" @click="handleEdit(row)">编辑</el-button>
|
||||||
<el-button type="text" style="color:#F56C6C;" @click="handleDelete(row)">删除</el-button>
|
<el-button type="text" style="color:#F56C6C;" @click="handleDelete(row)">删除</el-button>
|
||||||
@@ -209,6 +211,7 @@
|
|||||||
<th>手机号</th>
|
<th>手机号</th>
|
||||||
<th>特权开通日期</th>
|
<th>特权开通日期</th>
|
||||||
<th>开通日期</th>
|
<th>开通日期</th>
|
||||||
|
<th>系统到期日期</th>
|
||||||
<th>购买时间</th>
|
<th>购买时间</th>
|
||||||
<th>金额</th>
|
<th>金额</th>
|
||||||
<th class="cell-nickname-check">
|
<th class="cell-nickname-check">
|
||||||
@@ -267,6 +270,7 @@
|
|||||||
<td>{{ row.applyPhone || '-' }}</td>
|
<td>{{ row.applyPhone || '-' }}</td>
|
||||||
<td>{{ formatTryDate(row.tryDate) }}</td>
|
<td>{{ formatTryDate(row.tryDate) }}</td>
|
||||||
<td>{{ formatOpenDate(row.applyDate) }}</td>
|
<td>{{ formatOpenDate(row.applyDate) }}</td>
|
||||||
|
<td>{{ formatApplicantSystemExpireDate(row) }}</td>
|
||||||
<td>{{ formatLatestTradePayTime(row) }}</td>
|
<td>{{ formatLatestTradePayTime(row) }}</td>
|
||||||
<td>{{ formatLatestTradeTotalMoney(row) }}</td>
|
<td>{{ formatLatestTradeTotalMoney(row) }}</td>
|
||||||
<td class="cell-nickname-check">
|
<td class="cell-nickname-check">
|
||||||
@@ -903,6 +907,9 @@ export default {
|
|||||||
if (viptime == null || viptime === '') return '-'
|
if (viptime == null || viptime === '') return '-'
|
||||||
return this.formatOpenDate(viptime)
|
return this.formatOpenDate(viptime)
|
||||||
},
|
},
|
||||||
|
formatApplicantSystemExpireDate(row) {
|
||||||
|
return this.formatUserPrivilege(row && row.applicantUser)
|
||||||
|
},
|
||||||
formatReferrerPrivilege(row) {
|
formatReferrerPrivilege(row) {
|
||||||
return this.formatUserPrivilege(row && row.referrerUser)
|
return this.formatUserPrivilege(row && row.referrerUser)
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user