| | |
| | | }); |
| | | } |
| | | |
| | | |
| | | export function hiddenDangerRectify(data) { |
| | | return request({ |
| | | headers:{ |
| | | 'Authorization': getToken() |
| | | }, |
| | | url: process.env.BASE_API+'/hiddenDanger/rectify', |
| | | method: 'post', |
| | | data |
| | | }); |
| | | } |
| | | |
| | | export function hiddenDangerConfirm(data) { |
| | | return request({ |
| | | headers:{ |
| | |
| | | }); |
| | | } |
| | | |
| | | export function hiddenDangerAccept(data) { |
| | | return request({ |
| | | headers:{ |
| | | 'Authorization': getToken() |
| | | }, |
| | | url: process.env.BASE_API+'/hiddenDanger/accept', |
| | | method: 'post', |
| | | data |
| | | }); |
| | | } |
| | | |
| | | |
| | | export function hiddenDangerReject(data) { |
| | | return request({ |
| | | headers:{ |
| | | 'Authorization': getToken() |
| | | }, |
| | | url: process.env.BASE_API+'/hiddenDanger/reject', |
| | | method: 'post', |
| | | data |
| | | }); |
| | | } |
| | | |
| | | export function hiddenDangerReportList(data) { |
| | | return request({ |
| | |
| | | } |
| | | |
| | | |
| | | export function hiddenDangerConfirmList(data) { |
| | | export function hiddenDangerAcceptList(data) { |
| | | return request({ |
| | | headers:{ |
| | | 'Authorization': getToken() |
| | | }, |
| | | url: process.env.BASE_API+'/hiddenDanger/confirmPage', |
| | | url: process.env.BASE_API+'/hiddenDanger/acceptPage', |
| | | method: 'post', |
| | | data |
| | | }); |
| | | } |
| | | |
| | | |
| | | export function hiddenDangerRectifyList(data) { |
| | | return request({ |
| | | headers:{ |
| | | 'Authorization': getToken() |
| | | }, |
| | | url: process.env.BASE_API+'/hiddenDanger/rectifyPage', |
| | | method: 'post', |
| | | data |
| | | }); |