调整/测试

This commit is contained in:
shikong 2024-10-18 16:03:15 +08:00
parent b801f5106c
commit e2d5c8ef12
Signed by: Shikong
GPG Key ID: BD85FF18B373C341

View File

@ -25,13 +25,13 @@ const props = defineProps({
<view class="w-3/4 flex flex-col justify-between p-2"> <view class="w-3/4 flex flex-col justify-between p-2">
<view class="min-w-0 overflow-hidden overflow-ellipsis whitespace-nowrap"> <view class="min-w-0 overflow-hidden overflow-ellipsis whitespace-nowrap">
<text>{{ props.title }}</text> <text class="text-base">{{ props.title }}</text>
</view> </view>
<view> <view>
<text class="text-orange-500">{{ props.price }}</text> <text class="text-orange-500 text-base">{{ props.price }}</text>
<text v-show="props.oldPrice != null" class="ml-1 text-xs text-gray-500 line-through"> <text v-show="props.oldPrice != null" class="ml-1 text-xs text-gray-500 line-through">
{{ props.oldPrice }} {{ props.oldPrice }}
</text> </text>
</view> </view>
</view> </view>