123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- import request from "../../common/request"
- export default {
- save: function (inputForm) {
- return request({
- url: "/look/over/save",
- method: "post",
- data: inputForm,
- });
- },
- getMaxNo: function () {
- return request({
- url: "/look/over/getMaxNo",
- method: "get",
- });
- },
- getProcessingUnit: function () {
- return request({
- url: "/look/over/getProcessingUnit",
- method: "get",
- });
- },
- getUserInfoByOffId: function (officeId) {
- return request({
- url: "/look/over/getUserInfoByOffId",
- method: "get",
- params: {officeId: officeId}
- });
- },
- queryById: function (id) {
- return request({
- url: "/look/over/queryById",
- method: "get",
- params: { id: id },
- });
- },
- getNotDisposeList: function (params) {
- return request({
- url: "/look/over/getNotDisposeList",
- method: "get",
- params: params,
- });
- },
- };
|