|
@@ -107,18 +107,18 @@
|
|
|
<el-table v-loading="loading" :data="siteList" @sort-change="sortChannelId" @selection-change="handleSelectionChange">
|
|
|
<!-- <el-table-column type="selection" width="55" /> -->
|
|
|
<el-table-column label="经销商编号" sortable="custom" prop="channelId" width="110px"/>
|
|
|
- <el-table-column label="经销商名称" show-overflow-tooltip prop="name" max-width="100px" />
|
|
|
+ <el-table-column label="经销商名称" show-overflow-tooltip prop="name" max-width="110px" />
|
|
|
<el-table-column label="手机号码" prop="mobile" width="120px"/>
|
|
|
- <el-table-column label="佣金比例" sortable="custom" prop="commRate">
|
|
|
+ <el-table-column label="佣金比例" sortable="custom" prop="commRate" width="100px">
|
|
|
<template slot-scope="{ row, column }">
|
|
|
<span>{{row.commRate}}%</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="上级渠道" prop="parentsName" min-width="170px" />
|
|
|
- <el-table-column label="盲票库存" sortable="custom" prop="offLineQtyCnt" />
|
|
|
- <el-table-column label="线下销量" sortable="custom" prop="offLineSaleCnt" />
|
|
|
- <el-table-column label="线上销量" sortable="custom" prop="onLineSaleCnt" />
|
|
|
- <el-table-column label="用户数" sortable="custom" prop="userCnt" />
|
|
|
+ <el-table-column label="上级渠道" prop="parentsName" min-width="100px" />
|
|
|
+ <el-table-column label="盲票库存" sortable="custom" prop="offLineQtyCnt" width="100px"/>
|
|
|
+ <el-table-column label="线下销量" sortable="custom" prop="offLineSaleCnt" width="100px"/>
|
|
|
+ <el-table-column label="线上销量" sortable="custom" prop="onLineSaleCnt" width="100px"/>
|
|
|
+ <el-table-column label="用户数" sortable="custom" prop="userCnt" width="100px"/>
|
|
|
<el-table-column label="认证状态" prop="certifyStatus" >
|
|
|
<template slot-scope="{ row, column }">
|
|
|
<span v-if="getValue(row.certifyStatus) == 'y'" style="color: blue;"> {{getDesc(row.certifyStatus)}}</span>
|