梁航:发布接口绑定

This commit is contained in:
hot777zz
2023-11-18 20:46:43 +08:00
parent 7689a13b19
commit 2383b1a612
5 changed files with 626 additions and 325 deletions

View File

@@ -260,6 +260,27 @@ const apiService = {
resolve(service.post(url, data))
})
},
//发布店铺出租
publishRent(data){
const url = `/shop/rent/`
return new Promise((resolve, reject) => {
resolve(service.post(url, data))
})
},
//发布找店地址
publishAddress(data){
const url = `/shop/selection/`
return new Promise((resolve, reject) => {
resolve(service.post(url, data))
})
},
//发布项目招商
publishInvestment(data){
const url = `/shop/investment/`
return new Promise((resolve, reject) => {
resolve(service.post(url, data))
})
},
}
export {
apiService,