|
|
@@ -28,6 +28,18 @@
|
|
|
</el-form>
|
|
|
|
|
|
<el-table height="500" border v-loading="loading" :data="customerList" ref="customerList" >
|
|
|
+ <el-table-column label="用户ID" align="center" prop="userId" />
|
|
|
+ <el-table-column label="企微客户头像" align="center" prop="avatar" width="100px">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-popover
|
|
|
+ placement="right"
|
|
|
+ title=""
|
|
|
+ trigger="hover">
|
|
|
+ <img slot="reference" :src="scope.row.avatar" width="60px">
|
|
|
+ <img :src="scope.row.avatar" style="max-width: 200px;">
|
|
|
+ </el-popover>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="用户昵称" align="center" prop="nickName" />
|
|
|
<el-table-column label="手机号码" align="center" prop="phone" />
|
|
|
<el-table-column label="操作" align="center" fixed="right" width="120px" class-name="small-padding fixed-width">
|