kz-ui-base 1.0.167 → 1.0.169
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/pd/bom.js +5 -5
- package/common/src/utils/request.js +1 -1
- package/package.json +1 -1
package/api/pd/bom.js
CHANGED
|
@@ -13,9 +13,9 @@ export function bomExplode(query) {
|
|
|
13
13
|
/*
|
|
14
14
|
* 配丝查询
|
|
15
15
|
*/
|
|
16
|
-
export function wireDetails(productionItemId) {
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
16
|
+
export function wireDetails(productionItemId,productionVersionId) {
|
|
17
|
+
return request({
|
|
18
|
+
url: `pd/flatbom/${productionItemId}/${productionVersionId}/wire-details`,
|
|
19
|
+
method: 'get'
|
|
20
|
+
})
|
|
21
21
|
}
|