订单列表:自定义列抽离封装为组件

This commit is contained in:
puhui999
2023-10-18 17:20:13 +08:00
parent d1a3fe5d5a
commit 04d88ce1a6
4 changed files with 282 additions and 249 deletions

View File

@ -26,7 +26,7 @@ export const getDeliveryPickUpStore = async (id: number) => {
}
// 查询自提门店精简列表
export const getListAllSimple = async () => {
export const getListAllSimple = async (): Promise<DeliveryPickUpStoreVO[]> => {
return await request.get({ url: '/trade/delivery/pick-up-store/list-all-simple' })
}