完善商城

This commit is contained in:
wangxiaowei
2025-12-09 18:04:22 +08:00
parent 5d7b75a14e
commit 8fbceb9f0b
12 changed files with 1510 additions and 24 deletions

26
src/api/venue.js Normal file
View File

@ -0,0 +1,26 @@
import request from '@/utils/request'
let VenueApi = {
/*场馆列表*/
groundList(data, errorback) {
return request._post('/shop/ground.ground/groundList', data, errorback);
},
/*添加场馆*/
addGround(data, errorback) {
return request._post('/shop/ground.ground/addGround', data, errorback);
},
/*编辑场馆*/
editGround(data, errorback) {
return request._post('/shop/ground.ground/editGround', data, errorback);
},
/*删除场馆*/
delGround(data, errorback) {
return request._post('/shop/ground.ground/delGround', data, errorback);
},
}
export default VenueApi;