cuijian
2025-05-28 7e2d31c20b816309cb222c2159c3875623f74385
src/views/tms/modules/toolsClassify/ToolsClassifyListRight.vue
@@ -167,6 +167,18 @@
    data () {
      return {
        description: '工具分类管理页面',
         /* 分页参数 */
      ipagination:{
        current: 1,
        pageSize: 10,
        pageSizeOptions: ['10', '20', '50'],
        showTotal: (total, range) => {
          return range[0] + "-" + range[1] + " 共" + total + "条"
        },
        showQuickJumper: true,
        showSizeChanger: true,
        total: 0
      },
        // 表头
        columns: [
          {
@@ -366,8 +378,10 @@
          .then((res) => {
            if (res.success) {
              this.dataSource = res.result.records; // 更新表格数据
              this.ipagination.total = res.result.total
            } else {
              this.$message.warning(res.message);
              this.ipagination.total = 0
            }
          })
          .finally(() => {