|
@@ -99,20 +99,24 @@
|
|
|
</el-row>
|
|
|
|
|
|
<el-table v-loading="loading" :data="siteList" @selection-change="handleSelectionChange">
|
|
|
- <!-- <el-table-column type="selection" width="55" align="center" /> -->
|
|
|
+ <!-- <el-table-column type="selection" width="55" /> -->
|
|
|
<el-table-column label="经销商编号" prop="channelId" width="100px"/>
|
|
|
- <el-table-column label="经销商名称" show-overflow-tooltip align="center" prop="name" max-width="100px" />
|
|
|
- <el-table-column label="手机号码" align="center" prop="mobile" />
|
|
|
- <el-table-column label="佣金比例" align="center" prop="commRate" />
|
|
|
- <el-table-column label="上级渠道" align="center" prop="parentName" />
|
|
|
- <el-table-column label="用户数" align="center" prop="userCnt" />
|
|
|
- <el-table-column label="认证状态" align="center" prop="certifyStatus" >
|
|
|
+ <el-table-column label="经销商名称" show-overflow-tooltip prop="name" max-width="100px" />
|
|
|
+ <el-table-column label="手机号码" prop="mobile" />
|
|
|
+ <el-table-column label="佣金比例" prop="commRate">
|
|
|
+ <template slot-scope="{ row, column }">
|
|
|
+ <span>{{row.commRate}}%</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="上级渠道" prop="parentName" />
|
|
|
+ <el-table-column label="用户数" prop="userCnt" />
|
|
|
+ <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>
|
|
|
<span v-if="getValue(row.certifyStatus) == 'n'" style="color: red;"> {{getDesc(row.certifyStatus)}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="状态" align="center" key="statusV">
|
|
|
+ <el-table-column label="状态" key="statusV">
|
|
|
<template slot-scope="scope">
|
|
|
<el-switch
|
|
|
v-model="scope.row.statusV"
|
|
@@ -122,12 +126,6 @@
|
|
|
></el-switch>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <!-- <el-table-column label="状态" align="center" prop="status" >
|
|
|
- <template slot-scope="{ row, column }">
|
|
|
- <span v-if="getValue(row.status) == 1" style="color: blue;"> {{getDesc(row.status)}}</span>
|
|
|
- <span v-if="getValue(row.status) == 2" style="color: red;"> {{getDesc(row.status)}}</span>
|
|
|
- </template>
|
|
|
- </el-table-column> -->
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button
|