🐞 fix(ID1000728): 【Bug转需求】订单详情合计金额、实付金额、待付金额旁边的小问号点击没反应
This commit is contained in:
parent
7b8f6466a6
commit
0ab2b22be5
@ -645,14 +645,14 @@ export default () => {
|
||||
<View className={styles.flexMoney}>
|
||||
<View className={styles.flexTotalBox}>
|
||||
<View className={styles.totalFont}>合计金额</View>
|
||||
<IconFont name={'icon-tishi'} size={28} ></IconFont>
|
||||
{/* <IconFont name={'icon-tishi'} size={28} ></IconFont> */}
|
||||
</View>
|
||||
<View className={styles.shoudPay}>¥{formatPriceDiv(infoObj.bill_total_sale_price)}</View>
|
||||
</View>
|
||||
<View className={styles.flexMoney}>
|
||||
<View className={styles.flexTotalBox}>
|
||||
<View className={styles.totalFont}>实付金额</View>
|
||||
<IconFont name={'icon-tishi'} size={28} ></IconFont>
|
||||
{/* <IconFont name={'icon-tishi'} size={28} ></IconFont> */}
|
||||
</View>
|
||||
<View className={styles.shoudPay}>¥{formatPriceDiv(infoObj.actual_amount)}</View>
|
||||
</View>
|
||||
@ -660,7 +660,7 @@ export default () => {
|
||||
infoObj?.wait_pay_amount < 0 && <View className={styles.flexMoney}>
|
||||
<View className={styles.flexTotalBox}>
|
||||
<View className={styles.totalFont}>{infoObj?.wait_pay_amount?.toString().indexOf('-') !== -1 ? '退款金额' : '待付金额'}</View>
|
||||
<IconFont name={'icon-tishi'} size={28} ></IconFont>
|
||||
{/* <IconFont name={'icon-tishi'} size={28} ></IconFont> */}
|
||||
</View>
|
||||
<View className={styles.shoudPay}>¥{formatPriceDiv(infoObj.wait_pay_amount)}</View>
|
||||
</View>
|
||||
@ -669,7 +669,7 @@ export default () => {
|
||||
infoObj?.wait_pay_amount > 0 && <View className={styles.flexMoney}>
|
||||
<View className={styles.flexTotalBox}>
|
||||
<View className={styles.totalFont}>{infoObj?.wait_pay_amount?.toString().indexOf('-') !== -1 ? '退款金额' : '待付金额'}</View>
|
||||
<IconFont name={'icon-tishi'} size={28} ></IconFont>
|
||||
{/* <IconFont name={'icon-tishi'} size={28} ></IconFont> */}
|
||||
</View>
|
||||
<View className={styles.shoudPay}>¥{formatPriceDiv(infoObj.wait_pay_amount)}</View>
|
||||
</View>
|
||||
|
Loading…
x
Reference in New Issue
Block a user