Showing
2 changed files
with
20 additions
and
0 deletions
src/api/cargoSelect.js
0 → 100644
| 1 | +import request from '@/utils/request' | ||
| 2 | + | ||
| 3 | +// 货物查询查询条件数据 | ||
| 4 | +export function findConditionData(data) { | ||
| 5 | + return request({ | ||
| 6 | + url: '/cargo/findConditionData', | ||
| 7 | + method: 'post', | ||
| 8 | + data: data | ||
| 9 | + }) | ||
| 10 | +} | ||
| 11 | + | ||
| 12 | +//货物查询 | ||
| 13 | +export function findCargoData(data) { | ||
| 14 | + return request({ | ||
| 15 | + url: '/cargo/findCargoData', | ||
| 16 | + method: 'post', | ||
| 17 | + data: data | ||
| 18 | + }) | ||
| 19 | +} | ||
| 20 | + |
This diff is collapsed. Click to expand it.
-
Please register or login to post a comment