Commit 83536800 authored by XieZhiXiong's avatar XieZhiXiong

chore: 修改 column

parent cd961ec1
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* @Author: XieZhiXiong * @Author: XieZhiXiong
* @Date: 2020-11-05 15:18:15 * @Date: 2020-11-05 15:18:15
* @LastEditors: XieZhiXiong * @LastEditors: XieZhiXiong
* @LastEditTime: 2021-08-20 15:33:06 * @LastEditTime: 2021-08-27 09:44:33
* @Description: 换货发货统计、换货发货明细 * @Description: 换货发货统计、换货发货明细
*/ */
import React, { useState } from 'react'; import React, { useState } from 'react';
...@@ -122,32 +122,27 @@ const ExchangeDeliverInfo: React.FC<ExchangeDeliverInfoProps> = ({ ...@@ -122,32 +122,27 @@ const ExchangeDeliverInfo: React.FC<ExchangeDeliverInfoProps> = ({
{ {
title: '商品ID', title: '商品ID',
dataIndex: 'productId', dataIndex: 'productId',
align: 'center',
}, },
{ {
title: '商品名称', title: '商品名称',
dataIndex: 'productName', dataIndex: 'productName',
align: 'center', ellipsis: true,
}, },
{ {
title: '品类', title: '品类',
dataIndex: 'category', dataIndex: 'category',
align: 'center',
}, },
{ {
title: '品牌', title: '品牌',
dataIndex: 'brand', dataIndex: 'brand',
align: 'center',
}, },
{ {
title: '单位', title: '单位',
dataIndex: 'unit', dataIndex: 'unit',
align: 'center',
}, },
{ {
title: '换货数量', title: '换货数量',
dataIndex: 'replaceCount', dataIndex: 'replaceCount',
align: 'center',
}, },
{ {
title: '已换货发货/未换货发货', title: '已换货发货/未换货发货',
...@@ -171,12 +166,10 @@ const ExchangeDeliverInfo: React.FC<ExchangeDeliverInfoProps> = ({ ...@@ -171,12 +166,10 @@ const ExchangeDeliverInfo: React.FC<ExchangeDeliverInfoProps> = ({
{ {
title: '已换货收货', title: '已换货收货',
dataIndex: 'receiveCount', dataIndex: 'receiveCount',
align: 'center',
}, },
{ {
title: '差异数量', title: '差异数量',
dataIndex: 'differenceCount', dataIndex: 'differenceCount',
align: 'center',
}, },
]; ];
...@@ -188,47 +181,39 @@ const ExchangeDeliverInfo: React.FC<ExchangeDeliverInfoProps> = ({ ...@@ -188,47 +181,39 @@ const ExchangeDeliverInfo: React.FC<ExchangeDeliverInfoProps> = ({
{ {
title: '商品ID', title: '商品ID',
dataIndex: 'productId', dataIndex: 'productId',
align: 'center',
}, },
{ {
title: '商品名称', title: '商品名称',
dataIndex: 'productName', dataIndex: 'productName',
align: 'center', ellipsis: true,
}, },
{ {
title: '品类', title: '品类',
dataIndex: 'category', dataIndex: 'category',
align: 'center',
}, },
{ {
title: '品牌', title: '品牌',
dataIndex: 'brand', dataIndex: 'brand',
align: 'center',
}, },
{ {
title: '单位', title: '单位',
dataIndex: 'unit', dataIndex: 'unit',
align: 'center',
}, },
{ {
title: '换货数量', title: '换货数量',
dataIndex: 'count', dataIndex: 'count',
align: 'center',
}, },
{ {
title: '换货发货数量', title: '换货发货数量',
dataIndex: 'deliveryCount', dataIndex: 'deliveryCount',
align: 'center',
}, },
{ {
title: '换货入库数量', title: '换货入库数量',
dataIndex: 'storageCount', dataIndex: 'storageCount',
align: 'center',
}, },
{ {
title: '差异数量', title: '差异数量',
dataIndex: 'differenceCount', dataIndex: 'differenceCount',
align: 'center',
}, },
]; ];
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* @Author: XieZhiXiong * @Author: XieZhiXiong
* @Date: 2020-11-05 15:18:15 * @Date: 2020-11-05 15:18:15
* @LastEditors: XieZhiXiong * @LastEditors: XieZhiXiong
* @LastEditTime: 2021-08-20 17:51:50 * @LastEditTime: 2021-08-27 09:43:32
* @Description: 换货退货收货统计、换货退货发货明细 * @Description: 换货退货收货统计、换货退货发货明细
*/ */
import React, { useState } from 'react'; import React, { useState } from 'react';
...@@ -124,32 +124,27 @@ const ExchangeReceivedInfo: React.FC<ExchangeReceivedInfoProps> = ({ ...@@ -124,32 +124,27 @@ const ExchangeReceivedInfo: React.FC<ExchangeReceivedInfoProps> = ({
{ {
title: '商品ID', title: '商品ID',
dataIndex: 'productId', dataIndex: 'productId',
align: 'center',
}, },
{ {
title: '商品名称', title: '商品名称',
dataIndex: 'productName', dataIndex: 'productName',
align: 'center', ellipsis: true,
}, },
{ {
title: '品类', title: '品类',
dataIndex: 'category', dataIndex: 'category',
align: 'center',
}, },
{ {
title: '品牌', title: '品牌',
dataIndex: 'brand', dataIndex: 'brand',
align: 'center',
}, },
{ {
title: '单位', title: '单位',
dataIndex: 'unit', dataIndex: 'unit',
align: 'center',
}, },
{ {
title: '换货数量', title: '换货数量',
dataIndex: 'replaceCount', dataIndex: 'replaceCount',
align: 'center',
}, },
{ {
title: '已退货发货/未退货发货', title: '已退货发货/未退货发货',
...@@ -173,12 +168,10 @@ const ExchangeReceivedInfo: React.FC<ExchangeReceivedInfoProps> = ({ ...@@ -173,12 +168,10 @@ const ExchangeReceivedInfo: React.FC<ExchangeReceivedInfoProps> = ({
{ {
title: '已退货收货', title: '已退货收货',
dataIndex: 'receiveCount', dataIndex: 'receiveCount',
align: 'center',
}, },
{ {
title: '差异数量', title: '差异数量',
dataIndex: 'differenceCount', dataIndex: 'differenceCount',
align: 'center',
}, },
]; ];
...@@ -190,47 +183,39 @@ const ExchangeReceivedInfo: React.FC<ExchangeReceivedInfoProps> = ({ ...@@ -190,47 +183,39 @@ const ExchangeReceivedInfo: React.FC<ExchangeReceivedInfoProps> = ({
{ {
title: '商品ID', title: '商品ID',
dataIndex: 'productId', dataIndex: 'productId',
align: 'center',
}, },
{ {
title: '商品名称', title: '商品名称',
dataIndex: 'productName', dataIndex: 'productName',
align: 'center', ellipsis: true,
}, },
{ {
title: '品类', title: '品类',
dataIndex: 'category', dataIndex: 'category',
align: 'center',
}, },
{ {
title: '品牌', title: '品牌',
dataIndex: 'brand', dataIndex: 'brand',
align: 'center',
}, },
{ {
title: '单位', title: '单位',
dataIndex: 'unit', dataIndex: 'unit',
align: 'center',
}, },
{ {
title: '换货数量', title: '换货数量',
dataIndex: 'count', dataIndex: 'count',
align: 'center',
}, },
{ {
title: '退货发货数量', title: '退货发货数量',
dataIndex: 'deliveryCount', dataIndex: 'deliveryCount',
align: 'center',
}, },
{ {
title: '退货入库数量', title: '退货入库数量',
dataIndex: 'storageCount', dataIndex: 'storageCount',
align: 'center',
}, },
{ {
title: '差异数量', title: '差异数量',
dataIndex: 'differenceCount', dataIndex: 'differenceCount',
align: 'center',
}, },
]; ];
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* @Author: XieZhiXiong * @Author: XieZhiXiong
* @Date: 2020-11-05 15:18:15 * @Date: 2020-11-05 15:18:15
* @LastEditors: XieZhiXiong * @LastEditors: XieZhiXiong
* @LastEditTime: 2021-08-19 17:24:00 * @LastEditTime: 2021-08-27 09:44:08
* @Description: 退货收货统计、退货发货明细 * @Description: 退货收货统计、退货发货明细
*/ */
import React, { useState } from 'react'; import React, { useState } from 'react';
...@@ -124,7 +124,6 @@ const ReturnInfo: React.FC<ReturnInfoProps> = ({ ...@@ -124,7 +124,6 @@ const ReturnInfo: React.FC<ReturnInfoProps> = ({
{ {
title: '商品ID', title: '商品ID',
dataIndex: 'productId', dataIndex: 'productId',
align: 'center',
}, },
{ {
title: '商品名称', title: '商品名称',
...@@ -134,22 +133,18 @@ const ReturnInfo: React.FC<ReturnInfoProps> = ({ ...@@ -134,22 +133,18 @@ const ReturnInfo: React.FC<ReturnInfoProps> = ({
{ {
title: '品类', title: '品类',
dataIndex: 'category', dataIndex: 'category',
align: 'center',
}, },
{ {
title: '品牌', title: '品牌',
dataIndex: 'brand', dataIndex: 'brand',
align: 'center',
}, },
{ {
title: '单位', title: '单位',
dataIndex: 'unit', dataIndex: 'unit',
align: 'center',
}, },
{ {
title: '退货数量', title: '退货数量',
dataIndex: 'returnCount', dataIndex: 'returnCount',
align: 'center',
}, },
{ {
title: '已退货发货/未退货发货', title: '已退货发货/未退货发货',
...@@ -173,12 +168,10 @@ const ReturnInfo: React.FC<ReturnInfoProps> = ({ ...@@ -173,12 +168,10 @@ const ReturnInfo: React.FC<ReturnInfoProps> = ({
{ {
title: '已退货收货', title: '已退货收货',
dataIndex: 'receiveCount', dataIndex: 'receiveCount',
align: 'center',
}, },
{ {
title: '差异数量', title: '差异数量',
dataIndex: 'differenceCount', dataIndex: 'differenceCount',
align: 'center',
}, },
]; ];
...@@ -190,7 +183,6 @@ const ReturnInfo: React.FC<ReturnInfoProps> = ({ ...@@ -190,7 +183,6 @@ const ReturnInfo: React.FC<ReturnInfoProps> = ({
{ {
title: '商品ID', title: '商品ID',
dataIndex: 'productId', dataIndex: 'productId',
align: 'center',
}, },
{ {
title: '商品名称', title: '商品名称',
...@@ -200,37 +192,30 @@ const ReturnInfo: React.FC<ReturnInfoProps> = ({ ...@@ -200,37 +192,30 @@ const ReturnInfo: React.FC<ReturnInfoProps> = ({
{ {
title: '品类', title: '品类',
dataIndex: 'category', dataIndex: 'category',
align: 'center',
}, },
{ {
title: '品牌', title: '品牌',
dataIndex: 'brand', dataIndex: 'brand',
align: 'center',
}, },
{ {
title: '单位', title: '单位',
dataIndex: 'unit', dataIndex: 'unit',
align: 'center',
}, },
{ {
title: '退货数量', title: '退货数量',
dataIndex: 'count', dataIndex: 'count',
align: 'center',
}, },
{ {
title: '退货发货数量', title: '退货发货数量',
dataIndex: 'deliveryCount', dataIndex: 'deliveryCount',
align: 'center',
}, },
{ {
title: '退货入库数量', title: '退货入库数量',
dataIndex: 'storageCount', dataIndex: 'storageCount',
align: 'center',
}, },
{ {
title: '差异数量', title: '差异数量',
dataIndex: 'differenceCount', dataIndex: 'differenceCount',
align: 'center',
}, },
]; ];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment