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

(cherry picked from commit 04d88ce1a6)
This commit is contained in:
puhui999
2023-10-18 17:20:13 +08:00
committed by shizhong
parent 432620ffec
commit bb18f469de
4 changed files with 282 additions and 262 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' })
}