get请求对象不需要data

master
blak-kong 2 years ago
parent ad84c6f472
commit 5714f3f0bc

@ -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",
});
},

Loading…
Cancel
Save