xuxiaoming 2 years ago
parent
commit
4aff0e37ff
5 changed files with 7 additions and 7 deletions
  1. +2
    -2
      src/components/Pagination/index.vue
  2. +1
    -1
      src/mixins/ListMixin.js
  3. +1
    -1
      src/mixins/newListMixin.js
  4. +2
    -2
      src/views/factoryModel/part/BOMConfiguration/index.vue
  5. +1
    -1
      src/views/factoryModel/part/material/BOMConfigure.vue

+ 2
- 2
src/components/Pagination/index.vue View File

@ -23,9 +23,9 @@ export default {
// eslint-disable-next-line vue/require-valid-default-prop
default: {
pageNumber: 1,
pageSize: 10,
pageSize: 100,
total: 0,
pageSizes:[10, 20, 30, 50]
pageSizes:[10, 20, 30, 50, 100]
},
},
},


+ 1
- 1
src/mixins/ListMixin.js View File

@ -7,7 +7,7 @@ export const ListMixin = {
pagination: {
// 分页参数
pageNumber: 1,
pageSize: 10,
pageSize: 100,
total: 0,
},
queryParams: {},


+ 1
- 1
src/mixins/newListMixin.js View File

@ -7,7 +7,7 @@ export const ListMixin = {
pagination: {
// 分页参数
pageNumber: 1,
pageSize: 10,
pageSize: 100,
total: 0,
},
queryParams: {},


+ 2
- 2
src/views/factoryModel/part/BOMConfiguration/index.vue View File

@ -9,8 +9,8 @@
size="mini"
style="width: 100%"
:height="bomHeight"
row-key="ArtCheckRule-AttriCode"
:tree-props="{ children: 'children', hasChildren: 'hasChildren' }"
row-key="ME_BomLst-CmatNr"
:tree-props="{ children: 'ME_BomLst-ItemLi', hasChildren: 'hasChildren' }"
>
<el-table-column
v-for="(item, index) in headers"


+ 1
- 1
src/views/factoryModel/part/material/BOMConfigure.vue View File

@ -257,7 +257,7 @@ export default {
}, //
treeData: [],
defaultProps: {
children: "children",
children: "ME_BomLst-ItemLi",
label: arg => `${arg['ME_BomLst-CmatNr']}/${arg['ME_BomLst-CmatName']}`
},
uomArray: [], // uom


Loading…
Cancel
Save