🐞 fix(ID1000761): 【发货详情数据有误】
https://www.tapd.cn/53459131/bugtrace/bugs/view/1153459131001000761
This commit is contained in:
parent
c6f3173e5e
commit
8e0744215e
@ -63,7 +63,7 @@ const DeliveryDetail: FC = () => {
|
||||
<View className={styles['detailInfoItem--detail--count']}>
|
||||
x{weightItem?.sale_mode === 0 ? `${weightItem.roll} 条` : `${formatMeterDiv(weightItem?.length || 0)} 米`}
|
||||
</View>
|
||||
<View className={styles['detailInfoItem--detail--weight']}>{formatWeightDiv(weightItem.weight)}/kg</View>
|
||||
<View className={styles['detailInfoItem--detail--weight']}>{formatWeightDiv(weightItem.weight)}kg</View>
|
||||
</View>
|
||||
</View>
|
||||
</View>
|
||||
@ -141,9 +141,9 @@ const DeliveryDetail: FC = () => {
|
||||
<View className={styles.total}>
|
||||
<Text>汇总:</Text>
|
||||
<Text className={styles.totalContent}>
|
||||
共{detailInfo?.weight_list?.length || 0}种面料,4种颜色,共
|
||||
{detailInfo?.sale_mode === 0 ? `${detailInfo?.total_roll}条` : `${formatMeterDiv(detailInfo?.total_length)}米`}
|
||||
,重量{detailInfo?.total_weight}kg
|
||||
共{detailInfo?.delivery_product_nums || 0}种面料,{detailInfo?.delivery_product_color_nums || 0}种颜色,共
|
||||
{detailInfo?.sale_mode === 0 ? `${detailInfo?.total_roll}条` : `${formatMeterDiv(detailInfo?.total_length).toLocaleString()}米`}
|
||||
,重量{formatWeightDiv(detailInfo?.total_weight).toLocaleString()}kg
|
||||
</Text>
|
||||
</View>
|
||||
</LayoutBlock>
|
||||
|
Loading…
x
Reference in New Issue
Block a user