This commit is contained in:
曹磊 2024-08-13 10:51:43 +08:00
parent 2aa71d0e74
commit 9bdbb45654
1 changed files with 16 additions and 0 deletions

View File

@ -81,6 +81,11 @@
<template slot-scope="scope">
<span v-if="scope.row.userType == 1">用户</span>
<span v-if="scope.row.userType == 2">师傅</span>
<span v-if="scope.row.userType == 3">商家</span>
<span v-if="scope.row.userType == 4">经纪人</span>
<span v-if="scope.row.userType == 5">分销员</span>
<span v-if="scope.row.userType == 6">业务员</span>
<span v-if="scope.row.userType == 7">代理</span>
</template>
</el-table-column>
@ -91,6 +96,16 @@
<span style="color: #4f9dec;cursor: pointer;" @click="updates(scope.row)"
v-if="scope.row.userType == 2">{{ scope.row.artificerName ? scope.row.artificerName :
'未绑定' }}</span>
<span style="color: #4f9dec;cursor: pointer;" @click="updates(scope.row)"
v-if="scope.row.userType == 3">{{ scope.row.userName ? scope.row.userName : '未绑定' }}</span>
<span style="color: #4f9dec;cursor: pointer;" @click="updates(scope.row)"
v-if="scope.row.userType == 4">{{ scope.row.userName ? scope.row.userName : '未绑定' }}</span>
<span style="color: #4f9dec;cursor: pointer;" @click="updates(scope.row)"
v-if="scope.row.userType == 5">{{ scope.row.userName ? scope.row.userName : '未绑定' }}</span>
<span style="color: #4f9dec;cursor: pointer;" @click="updates(scope.row)"
v-if="scope.row.userType == 6">{{ scope.row.userName ? scope.row.userName : '未绑定' }}</span>
<span style="color: #4f9dec;cursor: pointer;" @click="updates(scope.row)"
v-if="scope.row.userType == 7">{{ scope.row.userName ? scope.row.userName : '未绑定' }}</span>
</template>
</el-table-column>
<el-table-column prop="phone" label="手机号" width="100">
@ -103,6 +118,7 @@
<template slot-scope="scope">
<span v-if="scope.row.classify == 1">支付宝</span>
<span v-else-if="scope.row.classify == 2">银行卡</span>
<span v-else-if="scope.row.classify == 3">微信</span>
<span v-else> -</span>
</template>
</el-table-column>