This commit is contained in:
duan
2025-09-29 10:42:48 +08:00
parent 89db955ec1
commit 096f591123
80 changed files with 8735 additions and 3286 deletions

16
http/api/area.js Normal file
View File

@@ -0,0 +1,16 @@
import http from '@/http/yskApi/http.js'
const request = http.request
/**
* 获取区域列表
* @returns
*/
export function getShopArea(data, urlType = 'account') {
return request({
url: `/account/admin/shopArea`,
method: "GET",
data: {
...data
}
})
}