123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- 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
- },
- });
- },
- getPhotoListByIdAndAttachmentFlag: function (ids, attachmentFlag) {
- return request({
- url: "/look/over/getPhotoListByIdAndAttachmentFlag",
- method: "get",
- params: {
- ids: ids,
- attachmentFlag: attachmentFlag
- },
- });
- }
- };
|