修改图片圆角

This commit is contained in:
wangxiaowei
2025-12-26 22:18:37 +08:00
parent e1018180b9
commit ff6724d338

View File

@ -19,7 +19,7 @@
</view> </view>
<view class="flex items-center"> <view class="flex items-center">
<view class="mr-28rpx"> <view class="mr-28rpx">
<wd-img width="200rpx" height="200rpx" :src="item.img"></wd-img> <wd-img width="200rpx" height="200rpx" :src="item.img" radius="10rpx"></wd-img>
</view> </view>
<view class="flex-1"> <view class="flex-1">
<view @click="ComboCard.handleToOrderDetail"> <view @click="ComboCard.handleToOrderDetail">
@ -48,7 +48,7 @@
import { onPageScroll, onReachBottom } from '@dcloudio/uni-app' import { onPageScroll, onReachBottom } from '@dcloudio/uni-app'
import useMescroll from "@/uni_modules/mescroll-uni/hooks/useMescroll.js" import useMescroll from "@/uni_modules/mescroll-uni/hooks/useMescroll.js"
import { router } from '@/utils/tools' import { router } from '@/utils/tools'
import { getStoreOrderList, renewOrder} from '@/api/order' import { getStoreOrderList, renewOrder, getRenewList} from '@/api/order'
import { useStoreStore } from '@/store' import { useStoreStore } from '@/store'
import { toast } from '@/utils/toast' import { toast } from '@/utils/toast'
@ -92,10 +92,9 @@
page: mescroll.num, page: mescroll.num,
size: mescroll.size, size: mescroll.size,
store_id: useStore.defaultStore.id, store_id: useStore.defaultStore.id,
order_status: '',
} }
getStoreOrderList(filter).then((res) => { getRenewList(filter).then((res) => {
const curPageData = res.list || [] // 当前页数据 const curPageData = res.list || [] // 当前页数据
if(mescroll.num == 1) list.value = [] // 第一页需手动制空列表 if(mescroll.num == 1) list.value = [] // 第一页需手动制空列表
list.value = list.value.concat(curPageData) //追加新数据 list.value = list.value.concat(curPageData) //追加新数据