Compare commits

..

2 Commits

Author SHA1 Message Date
KangKang0928 cf322f629a fix: 商品管理优化以及obj-table-plus版本控制 2024-12-17 10:10:17 +08:00
KangKang0928 09972d39c4 Merge branch 'master' of http://60.204.229.151:20080/chenkangxu/merchant-web 2024-12-16 21:01:25 +08:00
3 changed files with 13436 additions and 4 deletions

View File

@ -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",

13424
pnpm-lock.yaml Normal file

File diff suppressed because it is too large Load Diff

View File

@ -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>