gaoluyang
2025-02-17 b7adcaff77a5028458380ab1e86a1087f35e7b60
1.分页查询修改
已修改4个文件
13 ■■■■■ 文件已修改
src/components/Table/lims-table.vue 4 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/capability/bindPartDialog.vue 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/capability/bindSupplierDensityDialog.vue 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/structural/capabilityAndLaboratory/capability/index.vue 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/Table/lims-table.vue
@@ -107,6 +107,7 @@
      <pagination
      v-show="page.total>0"
      :total="page.total"
      :layout="page.layout"
      :page.sync="page.current"
      :limit.sync="page.size"
      @pagination="pagination"
@@ -265,7 +266,8 @@
          return {
            total:0,
            current:0,
            size:10
            size:10,
            layout: 'total, sizes, prev, pager, next, jumper'
          };
        }
      }
src/components/capability/bindPartDialog.vue
@@ -99,7 +99,8 @@
      page: {
        total:0,
        size:10,
        current:1
        current:1,
        layout: 'total, prev, pager, next'
      },
      bindPartComponent: {
        entity: {
src/components/capability/bindSupplierDensityDialog.vue
@@ -89,7 +89,8 @@
      page: {
        total:0,
        size:10,
        current:1
        current:1,
        layout: 'total, prev, pager, next'
      },
      tableLoading: false,
      searchUrl: '', // 查询
src/views/structural/capabilityAndLaboratory/capability/index.vue
@@ -336,7 +336,8 @@
      productPage: {
        total:0,
        size:10,
        current:0
        current:0,
        layout: 'total, prev, pager, next'
      },
      productableLoading: false,
      productEditDia: false,