Browse Source

perf: 系统管理中表格均改为自适应内容区高度,需将`@pureadmin/table`升级到最新版

xiaoxian521 1 year ago
parent
commit
39833ce917

+ 1 - 1
package.json

@@ -34,7 +34,7 @@
     "@logicflow/core": "^1.2.7",
     "@logicflow/extension": "^1.2.7",
     "@pureadmin/descriptions": "^1.1.1",
-    "@pureadmin/table": "^2.2.0",
+    "@pureadmin/table": "^2.3.0",
     "@pureadmin/utils": "^1.9.2",
     "@vueuse/core": "^10.1.2",
     "@vueuse/motion": "^2.0.0",

File diff suppressed because it is too large
+ 300 - 458
pnpm-lock.yaml


+ 2 - 0
src/views/system/dept/index.vue

@@ -90,6 +90,8 @@ const {
         <pure-table
           ref="tableRef"
           border
+          adaptive
+          :adaptiveConfig="{ offsetBottom: 32 }"
           align-whole="center"
           row-key="id"
           showOverflowTooltip

+ 1 - 0
src/views/system/role/index.vue

@@ -109,6 +109,7 @@ const {
           table-layout="auto"
           :loading="loading"
           :size="size"
+          adaptive
           :data="dataList"
           :columns="dynamicColumns"
           :pagination="pagination"

+ 2 - 1
src/views/system/user/index.vue

@@ -39,7 +39,7 @@ const {
 <template>
   <div class="main">
     <tree class="w-[17%] float-left" />
-    <div class="float-right w-[81%]">
+    <div class="float-right w-[82%]">
       <el-form
         ref="formRef"
         :inline="true"
@@ -97,6 +97,7 @@ const {
         <template v-slot="{ size, dynamicColumns }">
           <pure-table
             border
+            adaptive
             align-whole="center"
             table-layout="auto"
             :loading="loading"

+ 4 - 1
src/views/system/user/tree.vue

@@ -87,7 +87,10 @@ onMounted(async () => {
 </script>
 
 <template>
-  <div class="h-full min-h-[780px] bg-bg_color overflow-auto">
+  <div
+    class="h-full bg-bg_color overflow-auto"
+    :style="{ minHeight: `calc(100vh - 133px)` }"
+  >
     <div class="flex items-center h-[34px]">
       <p class="flex-1 ml-2 font-bold text-base truncate" title="部门列表">
         部门列表

Some files were not shown because too many files changed in this diff