体验官修改

This commit is contained in:
2023-07-31 17:27:05 +08:00
parent a0399a8944
commit c41b852aaf
26 changed files with 1568 additions and 124 deletions

View File

@@ -147,6 +147,17 @@ const orderDi = (exchange_id) => req({
url : "experiences/exchanges/" + exchange_id + "/track"
})
// 获取城市海报
const posters = (data) => req({
url : "experiences/areas/share_codes",
data: data
})
// 所有省市区数据
const regionList = (data) => req({
url : "experiences/regions",
data: data
})
export default ({
index,
@@ -172,5 +183,7 @@ export default ({
orderList,
orderDet,
orderSign,
orderDi
orderDi,
posters,
regionList
})

View File

@@ -12,8 +12,8 @@ import {updToken} from './updateToken'
// wx6bd4fcc040bfa025 水感应 正式appid
// wx9ae0c63d0c58caeb 测试appid 三猿
// wx3056ec23196eaf02 水感应 测试
const api = "https://api.shui.shuiganying.com/api/" // 正式环境
// const api = "https://shuitest.shuiganying.com/api/" // 测试环境
// const api = "https://api.shui.shuiganying.com/api/" // 正式环境
const api = "https://shuitest.shuiganying.com/api/" // 测试环境
const header = {
"Accept" : "application/json"
}