123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- import request from "../../common/request"
- export default {
- save: function (inputForm) {
- console.log('提交的数据',inputForm)
- return request({
- url: "/dispose/rubbish/save",
- method: "post",
- data: inputForm,
- });
- },
- queryById: function (id) {
- return request({
- url: "/dispose/rubbish/queryById",
- method: "get",
- params: { id: id },
- });
- },
- getMaxNo: function () {
- return request({
- url: "/dispose/rubbish/getMaxNo",
- method: "get",
- });
- },
- getProcessingUnit: function () {
- return request({
- url: "/dispose/rubbish/getProcessingUnit",
- method: "get",
- });
- },
- getUserInfoByOffId: function (officeId) {
- return request({
- url: "/dispose/rubbish/getUserInfoByOffId",
- method: "get",
- params: {officeId: officeId}
- });
- },
- getRubbishStation: function () {
- return request({
- url: "/dispose/rubbish/getRubbishStation",
- method: "get",
- });
- },
- getByProcInsId: function (procInsIdList) {
- return request({
- url: "/dispose/rubbish/getByProcInsId",
- method: "get",
- params: {procInsIds: procInsIdList.join(",")},
- });
- },
- };
|