You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
608 B
24 lines
608 B
var request = require('../../../utils/request.js')
|
|
|
|
export function getDeptTree () {
|
|
return request.get(`admin/dept/getAllDeptTree`)
|
|
}
|
|
// 根据经纬度查询 街道 社区
|
|
export function getDeptIdByItude (para) {
|
|
return request.post(`admin/dept/getGridByCoordinate`, para)
|
|
}
|
|
|
|
// 上报
|
|
export function submitItem (para) {
|
|
return request.post(`events/item/submitItem`, para)
|
|
}
|
|
// 列表
|
|
export function getProjectList(param) {
|
|
return request.get('events/item/getItemListByUserId', param)
|
|
}
|
|
|
|
// 查询企业
|
|
export function getCompany(param) {
|
|
return request.post('events/item/company', param)
|
|
}
|
|
|
|
|