|
@@ -47,12 +47,19 @@
|
|
|
<el-table-column align="center" width="100" label="购买用户ID" prop="buyerUserId" show-overflow-tooltip />
|
|
|
<el-table-column align="center" width="150" label="下单用户号码" prop="phone" show-overflow-tooltip />
|
|
|
<el-table-column align="center" width="100" label="支付金额" prop="orderPrice" show-overflow-tooltip />
|
|
|
- <el-table-column align="center" width="100" label="佣金比例/金额" prop="orderProportion" show-overflow-tooltip />
|
|
|
+ <el-table-column align="center" width="120" prop="orderProportion" label="佣金比例/金额">
|
|
|
+ <template slot-scope="{ row }">
|
|
|
+ <span v-if="row.orderProportion <= 1">{{ row.orderProportion * 100 }}%</span>
|
|
|
+ <span v-else-if="row.orderProportion > 1">¥{{ row.orderProportion }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column align="center" width="120" label="上级身份" prop="tidentity" show-overflow-tooltip />
|
|
|
<el-table-column align="center" width="100" label="上级ID" prop="tid" show-overflow-tooltip />
|
|
|
<el-table-column align="center" width="120" label="上级手机号" prop="tphone" show-overflow-tooltip />
|
|
|
<el-table-column align="center" width="100" label="用于分佣的佣金总额" prop="commissionPrice" show-overflow-tooltip />
|
|
|
+ <el-table-column align="center" width="100" label="获得佣金" prop="userCommission" show-overflow-tooltip />
|
|
|
<!-- <el-table-column align="center" width="100" label="佣金分配详情" prop="commissionDetail" show-overflow-tooltip /> -->
|
|
|
- <el-table-column align="center" label="操作" width="220" fixed="right" class-name="small-padding fixed-width">
|
|
|
+ <el-table-column align="center" label="操作" width="120" fixed="right" class-name="small-padding fixed-width">
|
|
|
<template slot-scope="{ row }">
|
|
|
<el-button type="warning" size="mini" @click="handleDetail(row)">
|
|
|
详情
|