| File was renamed from src/api/task/bailReporting.js |
| | |
| | | |
| | | export const getDetail = (params) => { |
| | | return request({ |
| | | url: "/api/blade-taskBailReportingEvent/taskBailReportingEvent/detail", |
| | | url: "/ssoapi/blade-taskBailReportingEvent/taskBailReportingEvent/detail", |
| | | method: "get", |
| | | params: { |
| | | ...params, |
| | |
| | | }; |
| | | export const getList = (current, size, params) => { |
| | | return request({ |
| | | url: '/api/blade-taskBailReportingEvent/taskBailReportingEvent/page', |
| | | url: '/ssoapi/blade-taskBailReportingEvent/taskBailReportingEvent/page', |
| | | method: 'get', |
| | | params: { |
| | | ...params, |
| | |
| | | |
| | | export const update = (row) => { |
| | | return request({ |
| | | url: "/api/blade-taskBailReportingEvent/taskBailReportingEvent/update", |
| | | url: "/ssoapi/blade-taskBailReportingEvent/taskBailReportingEvent/update", |
| | | method: "post", |
| | | data: row, |
| | | }); |