Commit 543ffbc9 by crushh

update: dist

parent 89c84257
......@@ -42,11 +42,13 @@
<el-table-column min-width="140" header-align="left" align="left" prop="clerkId" label="导购信息">
<template slot-scope="scope">
<div class="ellipsis-100">
<div class="memberInfo">
<img class="vertical-middle table__avatar--40" :src="filterAvatar(scope.row.clerkImage)" width="60" height="60" />
<div class="inline-block vertical-middle">
<p class="table-name--ellipsis">{{ scope.row.clerkName || '--' }}</p>
<p class="fz13 gray">{{ scope.row.storeName || '--' }}</p>
<el-tooltip :content="scope.row.storeName" :disabled="scope.row.storeName && scope.row.storeName.length < 7">
<p class="fz13 gray table-name--ellipsis">{{ scope.row.storeName || '--' }}</p>
</el-tooltip>
</div>
</div>
</template>
......@@ -54,11 +56,11 @@
<el-table-column min-width="140" header-align="left" align="left" prop="memberId" label="会员信息">
<template slot-scope="scope">
<a class="ellipsis-100" :href="`${window.location.origin}/member/#/wechatmemberDetail?memberId=${scope.row.memberId}`" target="_blank">
<a class="memberInfo" :href="`${window.location.origin}/member/#/wechatmemberDetail?memberId=${scope.row.memberId}`" target="_blank">
<img class="vertical-middle table__avatar--40" :src="filterAvatar(scope.row.thirdImgUrl)" width="60" height="60" />
<div class="inline-block vertical-middle">
<p class="table-name--ellipsis">{{ scope.row.memberName || '--' }}</p>
<p class="fz13 gray">{{ scope.row.cardNum || '--' }}</p>
<p class="fz13 gray table-name--ellipsis">{{ scope.row.cardNum || '--' }}</p>
</div>
</a>
</template>
......@@ -283,6 +285,7 @@ export default {
let res = await evaluateBad(Object.assign({ badStatus: this.$route.params.type }, this.listParams));
if (res.errorCode === 0 && res.result) {
this.tableList = res.result.page.result || [];
this.total = res.result.page.totalCount;
this.badOptions = res.result.badList;
} else {
......@@ -352,4 +355,8 @@ export default {
line-height: 33px;
padding: 0;
}
.memberInfo {
display: flex;
justify-content: space-between;
}
</style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment