xinelu-applet-ui/api/pagesC/selectInstitution/index.js

26 lines
416 B
JavaScript
Raw Normal View History

2023-10-12 09:47:40 +08:00
import request from "@/api/request.js"
2023-10-16 11:28:16 +08:00
export function getCounty(data) {
2023-10-12 09:47:40 +08:00
return request({
url: `/applet/signinfo/getCounty`,
method: 'post',
data: data,
header: {
2023-10-16 11:28:16 +08:00
region: uni.getStorageSync('region'),
2023-10-12 09:47:40 +08:00
}
})
}
2023-10-16 11:28:16 +08:00
export function getNearbyOrg(data) {
2023-10-12 09:47:40 +08:00
return request({
url: `/applet/signinfo/getNearbyOrg`,
method: 'get',
data: data,
header: {
2023-10-16 11:28:16 +08:00
region: uni.getStorageSync('region'),
2023-10-12 09:47:40 +08:00
}
})
}