1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- import request from "../../common/request"
- export default {
- save: function (inputForm) {
- return request({
- url: "/look/over/save",
- method: "post",
- data: inputForm,
- });
- },
- savePhoto: function (inputForm) {
- return request({
- url: "/look/over/savePhoto",
- 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}
- });
- },
- getOfficeOnHamlet: function () {
- return request({
- url: "/look/over/getOfficeOnHamlet",
- method: "get"
- });
- },
- 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,
- });
- },
- getPhotoListByAttachmentAndFlag: function (attachmentIds, attachmentFlag) {
- return request({
- url: "/look/over/getPhotoListByAttachmentAndFlag",
- method: "get",
- params: {
- attachmentId: attachmentIds,
- attachmentFlag: attachmentFlag
- },
- });
- }
- };
|