This commit is contained in:
yanran200730
2022-11-30 13:59:17 +08:00
parent b4ae677932
commit 57107ae4ad

View File

@@ -48,11 +48,11 @@
:current.sync="search.current"
:size.sync="search.size"
@getList="getList">
<el-table-column slot="goods" width="240px" label="商品" align="left">
<el-table-column slot="goods" width="280px" label="商品" align="left">
<template slot-scope="{ row }">
<div class="goods">
<img :src="row.imageUrl">
<span>{{ row.merchandiseName }}</span>
<span :title="row.merchandiseName">{{ row.merchandiseName }}</span>
</div>
</template>
</el-table-column>
@@ -206,6 +206,14 @@
height: 80px;
margin-right: 20px;
}
span {
flex: 1;
display: -webkit-box;
overflow: hidden;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
}
.userSelcet {