gaoluyang
2025-02-13 edc00525eeb2dd3a92b321e116ad97620adafee4
src/components/Table/lims-table.vue
@@ -6,7 +6,7 @@
          v-loading="tableLoading"
          :border="border"
          :data="tableData"
          :header-cell-style="{ background: '#0e3372', color: '#cccccc' }"
          :header-cell-style="{ background: '#f8f8f9', color: '#515a6e' }"
          :height="height"
          :highlight-current-row="highlightCurrentRow"
          :row-class-name="rowClassName"
@@ -105,8 +105,8 @@
      <pagination
      v-show="page.total>0"
      :total="page.total"
      :page.sync="page.pageNum"
      :limit.sync="page.pageSize"
      :page.sync="page.current"
      :limit.sync="page.size"
      @pagination="pagination"
    />
    </div>
@@ -223,7 +223,7 @@
      },
      border: {
        type: Boolean,
        default: true
        default: false
      },
      highlightCurrentRow: {
        type: Boolean,
@@ -263,12 +263,12 @@
        default: undefined
      },
      page:{
        type:object,
        type:Object,
        default() {
          return {
            total:0,
            pageNum:0,
            pageSize:10
            current:0,
            size:10
          };
        }
      }
@@ -303,4 +303,3 @@
    text-align: center
  }
  </style>