fix: 商品管理优化以及obj-table-plus版本控制
This commit is contained in:
parent
09972d39c4
commit
cf322f629a
|
@ -57,7 +57,7 @@
|
|||
"mockjs": "^1.1.0",
|
||||
"nprogress": "0.2.0",
|
||||
"obj-modal": "^1.2.2",
|
||||
"obj-table-plus": "^2.5.0",
|
||||
"obj-table-plus": "^3.1.0",
|
||||
"qrcodejs2": "^0.0.2",
|
||||
"qs": "^6.13.0",
|
||||
"quill": "1.3.7",
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -8,9 +8,17 @@
|
|||
<vxe-column
|
||||
field="productImg"
|
||||
title="商品图片"
|
||||
:cell-render="imgUrlCellRender"
|
||||
width="80"
|
||||
></vxe-column>
|
||||
width="120"
|
||||
>
|
||||
<template slot-scope="{ row }">
|
||||
<el-image
|
||||
:preview-src-list="[row.productImg]"
|
||||
:src="row.productImg"
|
||||
:width="80"
|
||||
:height="80"
|
||||
/>
|
||||
</template>
|
||||
</vxe-column>
|
||||
<vxe-column field="productSpecName" title="商品规格名称"></vxe-column>
|
||||
<vxe-column field="originPrice" title="商品原价"></vxe-column>
|
||||
<vxe-column field="finalPrice" title="商品终价"></vxe-column>
|
||||
|
|
Loading…
Reference in New Issue