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.
22 lines
630 B
22 lines
630 B
var fly = require('../../../utils/request')
|
|
|
|
// 行程上报
|
|
export function saveTripInfo(params) {
|
|
return fly.post('custom/epidemic/saveTripInfo', params)
|
|
}
|
|
// 我的上报列表
|
|
export function getTripInfoList(params) {
|
|
return fly.get('custom/epidemic/getTripInfoList', params)
|
|
}
|
|
// 我的上报详情
|
|
export function getTripInfoDetail(id) {
|
|
return fly.get(`custom/epidemic/getTripInfoDetail?id=${id}`)
|
|
}
|
|
// 删除
|
|
export function deleteTripById(params) {
|
|
return fly.deleted('custom/epidemic/deleteTripById', params)
|
|
}
|
|
// 级联
|
|
export function getAreaInfo(pid) {
|
|
return fly.get(`admin/city/getAreaInfo?pid=${pid}`)
|
|
}
|
|
|