Commit ca4dbfbf authored by XieZhiXiong's avatar XieZhiXiong

chore: 完善展示

parent c813f140
......@@ -157,11 +157,11 @@ const ExchangeDeliverInfo: React.FC<ExchangeDeliverInfoProps> = ({
descriptions={[
{
title: '已换货发货:',
value: `¥${text}`,
value: `${text}`,
},
{
title: '未换货发货:',
value: `¥${record.unDeliveryCount}`,
value: `${record.unDeliveryCount}`,
},
]}
percent={(text / record.replaceCount) * 100}
......@@ -448,7 +448,7 @@ const ExchangeDeliverInfo: React.FC<ExchangeDeliverInfoProps> = ({
<ReturnDeliverDrawer
afterType={afterType}
flowType="returnDeliver"
flowType="exchangeDeliver"
value={{
productList: currentDetailed?.detailList?.map((item) => ({
orderNo: item.orderNo,
......
......@@ -2,7 +2,7 @@
* @Author: XieZhiXiong
* @Date: 2020-11-05 15:18:15
* @LastEditors: XieZhiXiong
* @LastEditTime: 2021-08-20 09:57:54
* @LastEditTime: 2021-08-20 17:51:50
* @Description: 换货退货收货统计、换货退货发货明细
*/
import React, { useState } from 'react';
......@@ -159,11 +159,11 @@ const ExchangeReceivedInfo: React.FC<ExchangeReceivedInfoProps> = ({
descriptions={[
{
title: '已退货发货:',
value: `¥${text}`,
value: `${text}`,
},
{
title: '未退货发货:',
value: `¥${record.unDeliveryCount}`,
value: `${record.unDeliveryCount}`,
},
]}
percent={(text / record.replaceCount) * 100}
......
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