fix: 茅台预约,功能优化。

This commit is contained in:
tianyongbao
2024-12-10 02:35:27 +08:00
parent 07edb8d6ca
commit 6d45e53729
6 changed files with 338 additions and 50 deletions

View File

@@ -49,3 +49,30 @@ export function refreshShop() {
method: 'get'
})
}
// 查询省份列表
export function listProvince(query) {
return request({
url: '/invest/ishop/provinceList',
method: 'get',
params: query
})
}
// 查询城市列表
export function listCity(query) {
return request({
url: '/invest/ishop/cityList',
method: 'get',
params: query
})
}
// 查询区域列表列表
export function listDistrict(query) {
return request({
url: '/invest/ishop/districtList',
method: 'get',
params: query
})
}

View File

@@ -77,3 +77,12 @@ export function login(mobile, code, deviceId) {
params: { mobile, code, deviceId }
})
}
// 新增账号管理
export function loginIUser(data) {
return request({
url: '/invest/iuser/loginIUser',
method: 'post',
data
})
}