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.
58 lines
1.2 KiB
58 lines
1.2 KiB
// axios
|
|
import request from '@/utils/request'
|
|
|
|
// 上报事件
|
|
export function saveOfficialAccountEvent(data) {
|
|
return request({
|
|
url: `/governance/officialAccountEvent/saveOfficialAccountEvent`,
|
|
method: 'post',
|
|
message: '上报事件中...',
|
|
data
|
|
})
|
|
}
|
|
// 上报范围
|
|
export function checkAreaPoint(data) {
|
|
return request({
|
|
url: `/gov/org/agency/checkAreaPoint`,
|
|
method: 'post',
|
|
message: '上报事件中...',
|
|
data
|
|
})
|
|
}
|
|
|
|
// 获取事件列表
|
|
export function eventList(params) {
|
|
return request({
|
|
url: `/governance/officialAccountEventList/eventList`,
|
|
method: 'get',
|
|
message: '获取事件中...',
|
|
params
|
|
})
|
|
}
|
|
//我的诉求列表
|
|
export function collects(data) {
|
|
return request({
|
|
url: `/governance/icEventOld/list`,
|
|
method: 'post',
|
|
message: '获取诉求中...',
|
|
data
|
|
})
|
|
}
|
|
// 事件评价
|
|
export function updateEvent(data) {
|
|
return request({
|
|
url: `/governance/officialAccountEventList/updateEvent`,
|
|
method: 'post',
|
|
message: '事件评价中...',
|
|
data
|
|
})
|
|
}
|
|
// 获取处理进展
|
|
export function process(data) {
|
|
return request({
|
|
url: `/governance/icEventOld/process`,
|
|
method: 'post',
|
|
message: '获取处理进展中...',
|
|
data
|
|
})
|
|
}
|
|
|