增加系统到期日期

This commit is contained in:
zhonghua.li
2026-05-27 07:47:24 +08:00
parent 64ed366b4b
commit b1b0fc87af

View File

@@ -79,6 +79,7 @@
<th>手机号</th>
<th>领导人</th>
<th>开通日期</th>
<th>系统到期日期</th>
<th class="col-actions">操作</th>
</tr>
</thead>
@@ -100,6 +101,7 @@
<td>{{ row.colleaguePhone || '-' }}</td>
<td>{{ row.teamLeader || '-' }}</td>
<td>{{ formatOpenDate(row.applyDate) }}</td>
<td>{{ formatApplicantSystemExpireDate(row) }}</td>
<td class="col-actions">
<el-button type="text" @click="handleEdit(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 class="cell-nickname-check">
@@ -267,6 +270,7 @@
<td>{{ row.applyPhone || '-' }}</td>
<td>{{ formatTryDate(row.tryDate) }}</td>
<td>{{ formatOpenDate(row.applyDate) }}</td>
<td>{{ formatApplicantSystemExpireDate(row) }}</td>
<td>{{ formatLatestTradePayTime(row) }}</td>
<td>{{ formatLatestTradeTotalMoney(row) }}</td>
<td class="cell-nickname-check">
@@ -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)
},