Commit 3c0a18e4 by crushh

update: dist

parent 543ffbc9
......@@ -46,8 +46,8 @@
<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>
<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 :content="scope.row.storeName" :disabled="!scope.row.storeName || (scope.row.storeName && scope.row.storeName.length < 9)">
<p class="fz13 gray table-name--ellipsis w140">{{ scope.row.storeName || '--' }}</p>
</el-tooltip>
</div>
</div>
......@@ -60,7 +60,7 @@
<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 table-name--ellipsis">{{ scope.row.cardNum || '--' }}</p>
<p class="fz13 gray table-name--ellipsis w140">{{ scope.row.cardNum || '--' }}</p>
</div>
</a>
</template>
......@@ -357,6 +357,9 @@ export default {
}
.memberInfo {
display: flex;
justify-content: space-between;
justify-content: flex-start;
}
.w140 {
width: 140px;
}
</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