From ffb1bd190e9d4263c8c7d6c0096e0ec844cb3b52 Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期四, 19 六月 2025 17:30:55 +0800
Subject: [PATCH] 1.系统管理样式修改

---
 src/views/system/dept/index.vue |   87 ++++++++++++++++++++++---------------------
 1 files changed, 44 insertions(+), 43 deletions(-)

diff --git a/src/views/system/dept/index.vue b/src/views/system/dept/index.vue
index c82e24d..d55d725 100644
--- a/src/views/system/dept/index.vue
+++ b/src/views/system/dept/index.vue
@@ -1,81 +1,82 @@
 <template>
    <div class="app-container">
-      <el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch">
+     <div style="background: #ffffff;padding: 20px 16px">
+       <el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch">
          <el-form-item label="閮ㄩ棬鍚嶇О" prop="deptName">
-            <el-input
+           <el-input
                v-model="queryParams.deptName"
                placeholder="璇疯緭鍏ラ儴闂ㄥ悕绉�"
                clearable
                style="width: 200px"
                @keyup.enter="handleQuery"
-            />
+           />
          </el-form-item>
          <el-form-item label="鐘舵��" prop="status">
-            <el-select v-model="queryParams.status" placeholder="閮ㄩ棬鐘舵��" clearable style="width: 200px">
-               <el-option
-                  v-for="dict in sys_normal_disable"
-                  :key="dict.value"
-                  :label="dict.label"
-                  :value="dict.value"
-               />
-            </el-select>
+           <el-select v-model="queryParams.status" placeholder="閮ㄩ棬鐘舵��" clearable style="width: 200px">
+             <el-option
+                 v-for="dict in sys_normal_disable"
+                 :key="dict.value"
+                 :label="dict.label"
+                 :value="dict.value"
+             />
+           </el-select>
          </el-form-item>
          <el-form-item>
-            <el-button type="primary" icon="Search" @click="handleQuery">鎼滅储</el-button>
-            <el-button icon="Refresh" @click="resetQuery">閲嶇疆</el-button>
+           <el-button type="primary" icon="Search" @click="handleQuery">鎼滅储</el-button>
+           <el-button icon="Refresh" @click="resetQuery">閲嶇疆</el-button>
          </el-form-item>
-      </el-form>
-
-      <el-row :gutter="10" class="mb8">
+       </el-form>
+       
+       <el-row :gutter="10" class="mb8">
          <el-col :span="1.5">
-            <el-button
+           <el-button
                type="primary"
                plain
                icon="Plus"
                @click="handleAdd"
                v-hasPermi="['system:dept:add']"
-            >鏂板</el-button>
+           >鏂板</el-button>
          </el-col>
          <el-col :span="1.5">
-            <el-button
+           <el-button
                type="info"
                plain
                icon="Sort"
                @click="toggleExpandAll"
-            >灞曞紑/鎶樺彔</el-button>
+           >灞曞紑/鎶樺彔</el-button>
          </el-col>
          <right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
-      </el-row>
-
-      <el-table
-         v-if="refreshTable"
-         v-loading="loading"
-         :data="deptList"
-         row-key="deptId"
-         :default-expand-all="isExpandAll"
-         :tree-props="{ children: 'children', hasChildren: 'hasChildren' }"
-      >
+       </el-row>
+       
+       <el-table
+           v-if="refreshTable"
+           v-loading="loading"
+           :data="deptList"
+           row-key="deptId"
+           :default-expand-all="isExpandAll"
+           :tree-props="{ children: 'children', hasChildren: 'hasChildren' }"
+       >
          <el-table-column prop="deptName" label="閮ㄩ棬鍚嶇О" width="260"></el-table-column>
          <el-table-column prop="orderNum" label="鎺掑簭" width="200"></el-table-column>
          <el-table-column prop="status" label="鐘舵��" width="100">
-            <template #default="scope">
-               <dict-tag :options="sys_normal_disable" :value="scope.row.status" />
-            </template>
+           <template #default="scope">
+             <dict-tag :options="sys_normal_disable" :value="scope.row.status" />
+           </template>
          </el-table-column>
          <el-table-column label="鍒涘缓鏃堕棿" align="center" prop="createTime" width="200">
-            <template #default="scope">
-               <span>{{ parseTime(scope.row.createTime) }}</span>
-            </template>
+           <template #default="scope">
+             <span>{{ parseTime(scope.row.createTime) }}</span>
+           </template>
          </el-table-column>
          <el-table-column label="鎿嶄綔" align="center" class-name="small-padding fixed-width">
-            <template #default="scope">
-               <el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)" v-hasPermi="['system:dept:edit']">淇敼</el-button>
-               <el-button link type="primary" icon="Plus" @click="handleAdd(scope.row)" v-hasPermi="['system:dept:add']">鏂板</el-button>
-               <el-button v-if="scope.row.parentId != 0" link type="primary" icon="Delete" @click="handleDelete(scope.row)" v-hasPermi="['system:dept:remove']">鍒犻櫎</el-button>
-            </template>
+           <template #default="scope">
+             <el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)" v-hasPermi="['system:dept:edit']">淇敼</el-button>
+             <el-button link type="primary" icon="Plus" @click="handleAdd(scope.row)" v-hasPermi="['system:dept:add']">鏂板</el-button>
+             <el-button v-if="scope.row.parentId != 0" link type="primary" icon="Delete" @click="handleDelete(scope.row)" v-hasPermi="['system:dept:remove']">鍒犻櫎</el-button>
+           </template>
          </el-table-column>
-      </el-table>
-
+       </el-table>
+     </div>
       <!-- 娣诲姞鎴栦慨鏀归儴闂ㄥ璇濇 -->
       <el-dialog :title="title" v-model="open" width="600px" append-to-body>
          <el-form ref="deptRef" :model="form" :rules="rules" label-width="80px">

--
Gitblit v1.9.3