1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| import request from "@/utils/axios";
| import type { InventoryItemListParams } from './types/itemDict.type';
|
| /**
| * 获取库存字典api
| * @param params
| * @returns
| */
| export function getInventoryItemListApi(params: InventoryItemListParams) {
| return request({
| url: '/inventory/item/detail/info/list',
| method: 'post',
| params
| })
| }
|
|