diff --git a/src/utils/Interface.js b/src/utils/Interface.js index 0ea2fef..2a58fc8 100644 --- a/src/utils/Interface.js +++ b/src/utils/Interface.js @@ -330,7 +330,6 @@ export const InstrumentInfo = { addClockInstrument: (data) => { return Ajax({ url: "/clock/addClockInstrument" + paramsToUrlQueryString(data), - data, method: "get", }); }, @@ -346,7 +345,6 @@ export const InstrumentInfo = { getLatestClockRecord: (data) => { return Ajax({ url: "/clock/latestClockRecord", - data, method: "get", }); }, @@ -354,7 +352,6 @@ export const InstrumentInfo = { getList: (data) => { return Ajax({ url: "/clock/list" + paramsToUrlQueryString(data), - data, method: "get", }); }, @@ -362,7 +359,6 @@ export const InstrumentInfo = { getClockStatistics: (data) => { return Ajax({ url: "/clock/clockStatistics", - data, method: "get", }); }, @@ -381,7 +377,6 @@ export const InstrumentInfo = { getRecord: (data) => { return Ajax({ url: "/nursingLog/record" + paramsToUrlQueryString(data), - data, method: "get", }); }, @@ -389,7 +384,6 @@ export const InstrumentInfo = { getStatistics: (data) => { return Ajax({ url: "/nursingLog/statistics" + paramsToUrlQueryString(data), - data, method: "get", }); },