@cdwx/system
Version:
成都文宣业务类服务模块组件库
29 lines (28 loc) • 535 B
JavaScript
import e from "./http-client.js";
const n = "/station";
function o(t) {
return e.http.post(`${n}/page`, t);
}
function p(t) {
return e.http.get(`${n}/delete/${t}`);
}
function r(t) {
return e.http.post(`${n}/operateCommandStatus`, t);
}
function u(t) {
return e.http.post(`${n}/add`, t);
}
function i(t) {
return e.http.post(`${n}/update`, t);
}
function s() {
return e.http.post(`${n}/getAll`);
}
export {
p as deleteData,
s as getAllData,
o as getListData,
r as operateData,
u as saveData,
i as updateData
};