19 lines
526 B
JavaScript
19 lines
526 B
JavaScript
|
|
import { declareRequest } from "@cqsjjb/jjb-dva-runtime";
|
||
|
|
|
||
|
|
export const eightworkList = declareRequest(
|
||
|
|
"eightworkLoading",
|
||
|
|
`Post > @/eightwork/eightworkInfo/list`,
|
||
|
|
);
|
||
|
|
export const eightworkInfo = declareRequest(
|
||
|
|
"eightworkLoading",
|
||
|
|
`Get > /eightwork/eightworkInfo/{id}`,
|
||
|
|
);
|
||
|
|
export const eightworkType = declareRequest(
|
||
|
|
"eightworkLoading",
|
||
|
|
`Post > @/eightwork/eightworkTask/listByWorkType`,
|
||
|
|
);
|
||
|
|
export const eightworkRecordsList = declareRequest(
|
||
|
|
"eightworkLoading",
|
||
|
|
`Post > @/eightwork/eightworkInfo/list`,
|
||
|
|
);
|