style(shop): 移除订单确认页面中的规格信息显示

- 注释掉订单确认页面商品规格信息的展示
- 注释掉购物车订单确认页面商品规格信息的展示
This commit is contained in:
2026-02-26 14:55:08 +08:00
parent e40120138b
commit 68d5848d3d
2 changed files with 2 additions and 2 deletions

View File

@@ -849,7 +849,7 @@ const OrderConfirm = () => {
</View>
<View className={'flex flex-col w-full ml-2'} style={{width: '100%'}}>
<Text className={'font-medium w-full'}>{goods.name}</Text>
<Text className={'number text-gray-400 text-sm py-2'}>80g/</Text>
{/*<Text className={'number text-gray-400 text-sm py-2'}>80g/袋</Text>*/}
<View className={'flex justify-between items-center'}>
<Text className={'text-red-500'}>{goods.price}</Text>
<View className={'flex flex-col items-end gap-1'}>

View File

@@ -164,7 +164,7 @@ const OrderConfirm = () => {
}} lazyLoad={false}/>
<View className={'flex flex-col'}>
<View className={'font-medium w-full'}>{item.name}</View>
<View className={'number text-gray-400 text-sm py-2'}>80g/</View>
{/*<View className={'number text-gray-400 text-sm py-2'}>80g/袋</View>*/}
<Space className={'flex justify-start items-center'}>
<View className={'text-red-500'}>{item.price}</View>
<View className={'text-gray-500 text-sm'}>x {item.quantity}</View>