新增批发价,多规格
This commit is contained in:
parent
d442ba88dc
commit
d45b1acc21
@ -261,13 +261,30 @@
|
||||
</div>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="store_name" label="商品名称" min-width="200" />
|
||||
<el-table-column prop="store_name" label="商品名称" min-width="200">
|
||||
<template slot-scope="scope">
|
||||
<div v-if="scope.row.attrValue && scope.row.attrValue.length > 1">
|
||||
<span style="color: #fe8c51; font-size: 10px; margin-right: 4px"
|
||||
>[多规格]</span
|
||||
>{{ scope.row.store_name }}
|
||||
</div>
|
||||
<span v-else>{{ scope.row.store_name }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="price" label="商品售价" min-width="90" />
|
||||
<el-table-column prop="svip_price" label="会员价" min-width="90">
|
||||
<el-table-column prop="price" label="批发价" min-width="90">
|
||||
<template slot-scope="scope">
|
||||
<span v-if="scope.row.attrValue[0]">
|
||||
{{ scope.row.attrValue[0].procure_price || "-" }}</span
|
||||
>
|
||||
<span v-else>-</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<!-- <el-table-column prop="svip_price" label="会员价" min-width="90">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ scope.row.svip_price || "-" }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table-column> -->
|
||||
<el-table-column prop="sales" label="销量" min-width="90" />
|
||||
<el-table-column prop="stock" label="库存" min-width="70" />
|
||||
<!-- <el-table-column prop="integral_total" label="积分抵扣" min-width="70" />
|
||||
|
Loading…
x
Reference in New Issue
Block a user