flat: 金额校验

This commit is contained in:
Apcallover
2024-04-15 15:11:46 +08:00
parent dca8f38a31
commit 73d1d8a224
5 changed files with 776 additions and 661 deletions

View File

@@ -1,25 +1,27 @@
import {request} from '@/untils/AxiosUtils.js';
/*逆地址解析*/
export const getcoder = (location, key, get_poi) => {
return request({
url: '/qq/map/ws/geocoder/v1',
method: 'get',
params: {
location,
key,
get_poi
}
})
}
/*关键词输入提示*/
export const querySearch = (keyword, key) => {
return request({
url: '/qq/map/ws/place/v1/suggestion',
method: 'get',
params: {
keyword,
key
}
})
}
import {
request
} from '@/untils/AxiosUtils.js';
/*逆地址解析*/
export const getcoder = (location, key, get_poi) => {
return request({
url: '/qq/map/ws/geocoder/v1',
method: 'get',
params: {
location,
key,
get_poi
}
})
}
/*关键词输入提示*/
export const querySearch = (keyword, key) => {
return request({
url: '/qq/map/ws/place/v1/suggestion',
method: 'get',
params: {
keyword,
key
}
})
}

View File

@@ -99,4 +99,12 @@ export const addInviteCompanyAuth = (params) => {
method: 'post',
params
})
}
export const getDictionary = (params) => {
return request({
url: '/api/jobslink-api/system/dict-biz/dictionary',
method: 'get',
params
})
}