houyaf 3 лет назад
Родитель
Сommit
c60754e74b

+ 3 - 0
src/assets/styles/globals.scss

@@ -126,3 +126,6 @@ textarea {
 .el-description_label{
   width: 150px!important;
 }
+.el-drawer__title {
+  font-size: 18px;
+}

+ 4 - 3
src/views/api/api/index.vue

@@ -136,8 +136,7 @@ async function onChangeStatus(row: { apiId: number; status: number }) {
 <template>
   <div class="absolute-container">
     <tool-header title="API管理">
-      <template #right>
-      </template>
+      <template #right />
     </tool-header>
 
     <div class="page-main">
@@ -219,7 +218,9 @@ async function onChangeStatus(row: { apiId: number; status: number }) {
 
             <el-table-column label="操作" header-align="center" align="center" width="120">
               <template #default="scope">
-                <el-button type="primary" size="small" plain @click="onApiDebug(scope.row)">在线调试</el-button>
+                <el-button type="primary" size="small" plain @click="onApiDebug(scope.row)">
+                  在线调试
+                </el-button>
               </template>
             </el-table-column>
           </el-table>

+ 1 - 1
src/views/app_center/app_store/index.vue

@@ -89,7 +89,7 @@ onMounted(() => {
       </el-button-group>
     </page-header>
 
-    <el-row :gutter="20" style="margin: 0 10px;">
+    <el-row :gutter="20" style="margin: 20px 10px;">
       <el-col v-for="(item, index) in state.dataList" :key="index" :lg="6" :md="8" :sm="12">
         <el-card shadow="hover" class="action-card">
           <div class="content">

+ 2 - 4
src/views/system/group/index.vue

@@ -170,6 +170,7 @@ const getGroupList = () => {}
 <template>
   <div class="absolute-container">
     <page-header title="帐号管理" content="维护组织部门及账号信息" />
+
     <div class="page-main">
       <LayoutContainer left-side-width="300px" hide-left-side-toggle>
         <template #leftSide>
@@ -358,10 +359,6 @@ const getGroupList = () => {}
   display: flex;
   flex-direction: column;
 
-  .page-header {
-    margin-bottom: 0;
-  }
-
   .page-main {
     flex: 1;
     overflow: auto;
@@ -370,6 +367,7 @@ const getGroupList = () => {}
 
     .flex-container {
       position: static;
+      padding: 0px;
     }
   }
 }

+ 4 - 0
src/views/system/setting/oc_cat/index.vue

@@ -203,6 +203,10 @@ const onOcCatDelete = (row: any) => {
 }
 
 .absolute-container {
+  .flex-container {
+    padding: 0px;
+  }
+
   :deep(.left-side) {
     display: flex;
     flex-direction: column;