OrderTableColumn: 商品信息列样式调整
This commit is contained in:
parent
70778fd9e6
commit
094f8e16db
@ -63,14 +63,18 @@
|
|||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<template #default="{ row }">
|
<template #default="{ row }">
|
||||||
<div class="flex items-center">
|
<div class="flex flex-wrap">
|
||||||
<el-image
|
<el-image
|
||||||
:src="row.picUrl"
|
:src="row.picUrl"
|
||||||
class="mr-10px h-30px w-30px"
|
class="mb-[13px] mr-[10px] h-[40px] w-[40px] v-middle"
|
||||||
@click="imagePreview(row.picUrl)"
|
@click="imagePreview(row.picUrl)"
|
||||||
/>
|
/>
|
||||||
<span class="mr-10px">{{ row.spuName }}</span>
|
<span class="mb-[13px] mr-[10px]">{{ row.spuName }}</span>
|
||||||
<el-tag v-for="property in row.properties" :key="property.propertyId" class="mr-10px">
|
<el-tag
|
||||||
|
v-for="property in row.properties"
|
||||||
|
:key="property.propertyId"
|
||||||
|
class="mb-[13px] mr-[10px]"
|
||||||
|
>
|
||||||
{{ property.propertyName }}: {{ property.valueName }}
|
{{ property.propertyName }}: {{ property.valueName }}
|
||||||
</el-tag>
|
</el-tag>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user