| ¶Ô±ÈÐÂÎļþ |
| | |
| | | // ç产æ¥å·¥é¡µé¢æ¥å£ |
| | | import request from "@/utils/request"; |
| | | |
| | | // å页æ¥è¯¢ |
| | | export function workListPage(query) { |
| | | return request({ |
| | | url: "/salesLedger/work/listPage", |
| | | method: "get", |
| | | params: query, |
| | | }); |
| | | } |
| | | // åè¡¨æ ¼æ¥è¯¢ |
| | | export function workListPageById(query) { |
| | | return request({ |
| | | url: "/salesLedger/work/list", |
| | | method: "get", |
| | | params: query, |
| | | }); |
| | | } |
| | | // ç产æ¥å·¥ |
| | | export function productionReport(query) { |
| | | return request({ |
| | | url: "/salesLedger/work/productionReport", |
| | | method: "post", |
| | | data: query, |
| | | }); |
| | | } |
| | | // ç产æ¥å·¥-ç¼è¾ |
| | | export function productionReportUpdate(query) { |
| | | return request({ |
| | | url: "/salesLedger/work/productionReportUpdate", |
| | | method: "post", |
| | | data: query, |
| | | }); |
| | | } |
| | | // ç产æ¥å·¥-å é¤ |
| | | export function productionReportDelete(query) { |
| | | return request({ |
| | | url: "/productionProductMain/delete", |
| | | method: "delete", |
| | | data: query, |
| | | }); |
| | | } |