From 40dcdd26823f97ce3d4c9190778d328cbf565f4a Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Tue, 19 Nov 2024 16:36:38 +0800 Subject: [PATCH] =?UTF-8?q?refactor(store-product):=20=E9=87=8D=E6=9E=84?= =?UTF-8?q?=E5=95=86=E5=93=81=E5=88=97=E8=A1=A8=E5=B1=95=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将商品名称列拆分为多个子列,展示更多价格信息 - 合并供货价、商户价和零售价列,以节省空间 - 将库存和销量列合并为一个列,提高信息密度 - 调整部分列的显示顺序和样式 --- src/views/store/store_product/index.vue | 47 +++++++++++++------------ 1 file changed, 24 insertions(+), 23 deletions(-) diff --git a/src/views/store/store_product/index.vue b/src/views/store/store_product/index.vue index 0e7b06229..66c246d5e 100644 --- a/src/views/store/store_product/index.vue +++ b/src/views/store/store_product/index.vue @@ -117,12 +117,20 @@ /> - + + + {{ row.store_name }} + + 供货价:{{ row.purchase }} + + + 商户价: {{ row.cost }} + + + 零售价:{{ row.price }} + + + - - + - + - - - - + + + + {{ row.stock }}/{{ row.sales }} + +