From b36bd95504344c65319edcfe100ab499a074e23d Mon Sep 17 00:00:00 2001 From: zhangds Date: Fri, 30 Sep 2022 14:44:01 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=95=86=E5=93=81?= =?UTF-8?q?=E8=8C=83=E5=9B=B4=E5=88=97=E8=A1=A8table=E4=B8=80=E6=A0=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/coupon/commodity/index.jsx | 87 +++++++++++++--------------- 1 file changed, 41 insertions(+), 46 deletions(-) diff --git a/src/pages/coupon/commodity/index.jsx b/src/pages/coupon/commodity/index.jsx index f9c7210d..8d77fc1c 100644 --- a/src/pages/coupon/commodity/index.jsx +++ b/src/pages/coupon/commodity/index.jsx @@ -16,89 +16,84 @@ import "./style.less"; const tableColumn = [ { title: "商品编号", - name: "id", - prop: "id", + name: "product_id", + prop: "product_id", + className: "name", type: "normal", width: "auto", }, { title: "商品名称", - name: "product_name", prop: "product_name", + name: "product_name", + width: "200px", type: "normal", - width: "auto", }, { - title: "官方价", + title: "立减金平台批次号", + width: "200px", + prop: "channel_activity_id", + name: "channel_activity_id", + type: "normal", + }, + { + title: "上游平台", + width: "auto", + prop: "upstream", + name: "upstream", + type: "normal", + }, + { + title: "商品权重", + width: "auto", + prop: "weight", + name: "weight", + type: "normal", + }, + { + title: "有效时间段", + width: "500px", + prop: "effectDate", + name: "effectDate", + type: "normal", + }, + { + title: "官方价格", name: "official_price", prop: "official_price", type: "normal", width: "auto", }, { - title: "合同单价", + title: "合同价", name: "contract_price", + type: "normal", prop: "contract_price", - type: "normal", - width: "auto", - }, - { - title: "库存数量", - name: "quantity", - prop: "quantity", - type: "normal", - width: "auto", - }, - { - title: "批次号", - name: "channel_activity_id", - prop: "channel_activity_id", - type: "normal", - width: "auto", - }, - { - title: "总预算", - name: "all_budget", - prop: "all_budget", - type: "normal", - width: "auto", - }, - { - title: "有效时间段", - name: "effectDate", - prop: "effectDate", - type: "normal", width: "auto", }, { title: "创建时间", name: "create_time", - prop: "create_time", type: "normal", - width: "auto", + prop: "create_time", + width: "250px", }, { title: "类型", name: "product_type_text", + type: "normal", prop: "product_type_text", - type: "normal", - width: "auto", - }, - { - title: "上游平台", - name: "upstream", - prop: "upstream", - type: "normal", width: "auto", }, { title: "操作", - name: "opearo", prop: "opearo", + name: "opearo", type: "slot", width: "200px", }, ]; + const UseCouponCommodity = () => { const [state, setState] = useSetState({ tabList: [{ title: "商品范围列表", index: 0 }],