shuishen
2024-01-05 9ea3fc90fc9b2b3c06ecde8db5c6636586241a9e
1
2
3
4
5
6
7
8
9
10
11
12
13
import request from '@/router/axios';
 
 
 
export const getDetail = (params) => {
  return request({
    url: "/api/blade-taskBailReportingEvent/taskBailReportingEvent/detail",
    method: "get",
    params: {
      ...params,
    },
  });
};