Showing
2 changed files
with
10 additions
and
2 deletions
| ... | ... | @@ -71,3 +71,12 @@ export function updateApi(params) { |
| 71 | 71 | }) |
| 72 | 72 | } |
| 73 | 73 | |
| 74 | +// 通过订单ID 补货单-获取订货单列表 | |
| 75 | +export function loadOrderApi(ids) { | |
| 76 | + return request({ | |
| 77 | + url: `/selector/replenishment/order/load`, | |
| 78 | + method: 'post', | |
| 79 | + data: ids, | |
| 80 | + contentType: ContentTypeEnum.JSON | |
| 81 | + }) | |
| 82 | +} | ... | ... |
| ... | ... | @@ -77,8 +77,7 @@ |
| 77 | 77 | </template> |
| 78 | 78 | |
| 79 | 79 | <script> |
| 80 | -import { loadOrderApi } from '@/api/change_list.js' | |
| 81 | -import { createApi, getCodeApi } from '@/api/replenishment_order.js' | |
| 80 | +import { createApi, getCodeApi, loadOrderApi } from '@/api/replenishment_order.js' | |
| 82 | 81 | import Product from './product.vue' |
| 83 | 82 | import RelateSelectSheet from '@/components/relate-select/index.vue' |
| 84 | 83 | ... | ... |