You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
812 B

import request from "@/utils/request";
// 报工确认列表-app
export function confirm(params) {
let data = {
flag: params.flag,
};
return request({
url: "/api/example/YysDayWork/confirm",
method: "POST",
data,
});
}
// 获取用户列表-app
export function userList() {
return request({
url: "/api/system/DataInterface/595963517819945029/Actions/Preview",
method: "POST",
});
}
// 物料信息列表-app
export function materialInformationList() {
return request({
url: "/api/system/DataInterface/596288337614995461/Actions/Preview",
method: "POST",
});
}
// 报工确认-app
export function sure(params) {
let data = {
...params
};
console.log(data)
return request({
url: "/api/example/YysDayWork/sure",
method: "POST",
data,
});
}