|
@@ -13,6 +13,7 @@
|
|
|
<tr>
|
|
|
<th>头像</th>
|
|
|
<th>昵称</th>
|
|
|
+ <th>推广人数</th>
|
|
|
<th>未结算</th>
|
|
|
<th>已结算</th>
|
|
|
<th>按钮</th>
|
|
@@ -22,6 +23,7 @@
|
|
|
<van-image round width="50px" height="50px" :src="userInfo.headImage" />
|
|
|
</td>
|
|
|
<td>{{ userInfo.nickName }}</td>
|
|
|
+ <td>{{ userInfo.extensionCount }}</td>
|
|
|
<td>{{ userInfo.achievement }}</td>
|
|
|
<td>{{ userInfo.achievementSettled }}</td>
|
|
|
<td><van-button type="primary" @click="showSettlement(userInfo)">结算</van-button></td>
|
|
@@ -42,6 +44,7 @@
|
|
|
headImage: string;
|
|
|
achievement: number;
|
|
|
achievementSettled: number;
|
|
|
+ extensionCount: number;
|
|
|
};
|
|
|
|
|
|
const branchModel = new BranchModel();
|