梁航:发布接口绑定
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user