kz-ui-base 1.0.173 → 1.0.176

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 CHANGED
@@ -39,6 +39,13 @@ export function listItemAttribute(itemId) {
39
39
  method: 'get'
40
40
  })
41
41
  }
42
+ // 查询物料属性
43
+ export function listItemAttributeByItemNo(itemNo) {
44
+ return request({
45
+ url: '/bd/ItemAttribute/listItemAttributeByItemNo?itemNo=' + itemNo,
46
+ method: 'get'
47
+ })
48
+ }
42
49
 
43
50
  export function listMdcAttributes(itemId) {
44
51
  return request({
@@ -121,4 +128,12 @@ export function listItemByNos(itemNos) {
121
128
  url: '/bd/item/getItemByItemNos?itemNos=' + itemNos,
122
129
  method: 'get',
123
130
  })
124
- }
131
+ }
132
+
133
+ export function listSortMaxByItemClassNo(query) {
134
+ return request({
135
+ url: '/bd/item/listSortMaxByItemClassNo',
136
+ method: 'get',
137
+ params: query
138
+ })
139
+ }
@@ -78,3 +78,11 @@ export function pageProductionVersionVo(query) {
78
78
  params: query
79
79
  })
80
80
  }
81
+
82
+ export function generateProcessVersionByItem(data) {
83
+ return request({
84
+ url: 'pd/version/generateProcessVersionByItem',
85
+ method: 'post',
86
+ data: data
87
+ })
88
+ }
@@ -77,6 +77,7 @@
77
77
  >
78
78
  <el-scrollbar style="height: 100%; width: 100%">
79
79
  <el-tree
80
+
80
81
  class="treescroll"
81
82
  :data="treeShapeOptions"
82
83
  node-key="id"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kz-ui-base",
3
- "version": "1.0.173",
3
+ "version": "1.0.176",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {