kz-ui-base 1.0.174 → 1.0.177
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api/bd/item.js +9 -0
- package/package.json +1 -1
package/api/bd/item.js
CHANGED
|
@@ -123,9 +123,18 @@ export function listItemDtoByIds(itemIds) {
|
|
|
123
123
|
method: 'get',
|
|
124
124
|
})
|
|
125
125
|
}
|
|
126
|
+
|
|
126
127
|
export function listItemByNos(itemNos) {
|
|
127
128
|
return request({
|
|
128
129
|
url: '/bd/item/getItemByItemNos?itemNos=' + itemNos,
|
|
129
130
|
method: 'get',
|
|
130
131
|
})
|
|
131
132
|
}
|
|
133
|
+
|
|
134
|
+
export function listSortMaxByItemClassNo(query) {
|
|
135
|
+
return request({
|
|
136
|
+
url: '/bd/item/listSortMaxByItemClassNo',
|
|
137
|
+
method: 'get',
|
|
138
|
+
params: query
|
|
139
|
+
})
|
|
140
|
+
}
|