hyf 3 lat temu
rodzic
commit
687b447f1c

+ 1 - 1
src/components/Hamburger/index.vue

@@ -26,7 +26,7 @@ export default {
   display: inline-block;
   vertical-align: middle;
   padding-top: 3px;
-  width: 32px;
+  width: 20px;
   height: 32px;
   font-size: 18px;
   color: currentColor

+ 3 - 3
src/layout/components/Navbar.vue

@@ -3,10 +3,10 @@
     <div class="hos-name">
       <img :src="logo" alt="logo">
 
-      <span v-if="userData.ocName" class="tag">{{ userData.ocName }}</span>
-
       <hamburger id="hamburger-container" :is-active="sidebar.opened" class="hamburger-container" @toggleClick="toggleSideBar" />
 
+      <span v-if="userData.ocName" class="tag">{{ userData.ocName }}</span>
+
       <countdown v-if="userData.licExpiredTime" :end-time="userData.licExpiredTime">
         <div
           slot="process"
@@ -228,7 +228,7 @@ export default {
       font-size: 16px;
       line-height: 1;
       font-weight: 300;
-      padding-left: 15px;
+      padding-left: 5px;
       margin-top: 7px;
       &.authorization{
         font-size: 12px;

+ 7 - 22
src/router/modules/hos.js

@@ -12,7 +12,7 @@ const hosRouter = [
         path: 'overview',
         component: () => import('@/views/hos/overview'),
         name: 'hos_overview',
-        meta: { title: '数据总览', icon: 'icon-common_digitization', affix: true, permit: 'hos_overview' }
+        meta: { title: '数据总览', noCache: true, icon: 'icon-common_panorama1', permit: 'hos_overview' }
       }
     ]
   },
@@ -27,7 +27,7 @@ const hosRouter = [
         path: 'index',
         component: () => import('@/views/system/task/index'),
         name: 'hos_task',
-        meta: { title: '任务中心', noCache: true, icon: 'icon-common_satisfaction', permit: 'hos_task' }
+        meta: { title: '任务中心', noCache: true, icon: 'icon-common_ledger', permit: 'hos_task' }
       }
     ]
   },
@@ -42,22 +42,7 @@ const hosRouter = [
         path: 'index',
         component: () => import('@/views/system/leadingGroup/index'),
         name: 'hos_leading_group',
-        meta: { title: '领导小组', noCache: true, icon: 'icon-common_management', permit: 'hos_leading_group' }
-      }
-    ]
-  },
-  {
-    path: '/hos/regulation',
-    component: Layout,
-    name: 'HosRegulation',
-    redirect: '/hos/regulation/index',
-    groupId: [0],
-    children: [
-      {
-        path: 'index',
-        component: () => import('@/views/system/regulation/index'),
-        name: 'hos_regulation',
-        meta: { title: '管理制度', noCache: true, icon: 'icon-common_management', permit: 'hos_regulation' }
+        meta: { title: '领导小组', noCache: true, icon: 'icon-common_group1', permit: 'hos_leading_group' }
       }
     ]
   },
@@ -72,7 +57,7 @@ const hosRouter = [
         path: 'index',
         component: () => import('@/views/hos/story/index'),
         name: 'hos_story',
-        meta: { title: '建设规范', noCache: true, icon: 'icon-common_evaluate', permit: 'hos_story' }
+        meta: { title: '建设规范', noCache: true, icon: 'icon-common_industry', permit: 'hos_story' }
       }
     ]
   },
@@ -87,7 +72,7 @@ const hosRouter = [
         path: 'index',
         component: () => import('@/views/hos/instruction/index'),
         name: 'hos_instruction',
-        meta: { title: '实施方案', noCache: true, icon: 'icon-common_evaluate', permit: 'hos_instruction' }
+        meta: { title: '实施方案', noCache: true, icon: 'icon-common_performance', permit: 'hos_instruction' }
       }
     ]
   },
@@ -102,7 +87,7 @@ const hosRouter = [
         path: 'index',
         component: () => import('@/views/hos/plan/index'),
         name: 'hos_plan',
-        meta: { title: '工作计划', noCache: true, icon: 'icon-common_knowledge', permit: 'hos_plan' }
+        meta: { title: '工作计划', noCache: true, icon: 'icon-common_task', permit: 'hos_plan' }
       }
     ]
   },
@@ -147,7 +132,7 @@ const hosRouter = [
         path: 'index',
         component: () => import('@/views/hos/report/index'),
         name: 'hos_report',
-        meta: { title: '评价报告', noCache: true, icon: 'icon-common_knowledge', permit: 'hos_report' }
+        meta: { title: '评价报告', noCache: true, icon: 'icon-common_health', permit: 'hos_report' }
       }
     ]
   },

+ 1 - 1
src/views/system/art/components/LeftCat.vue

@@ -266,7 +266,7 @@ export default {
         .right-icon {
           position: absolute;
           right: 10px;
-          top: 14px;
+          top: 8px;
           background: #5181A2;
           color: #FFFFFF;
           width: 14px;

+ 1 - 1
src/views/system/doc/components/DirTree.vue

@@ -247,7 +247,7 @@ export default {
       .right-icon {
         position: absolute;
         right: 10px;
-        top: 14px;
+        top: 8px;
         background: #5181A2;
         color: #FFFFFF;
         width: 14px;

+ 7 - 6
src/views/system/doc/components/FileList.vue

@@ -6,9 +6,10 @@
           <i class="el-icon-folder" /> {{ title }}
         </div>
       </el-col>
+
       <el-col :span="12" class="right">
-        <el-input v-model="conditions.keywords" class="search-input m-right-15" placeholder="请输入内容">
-          <el-button slot="append" icon="el-icon-search" @click="getData()" />
+        <el-input v-model="conditions.keywords" class="search-input m-right-15" size="mini" placeholder="请输入内容">
+          <el-button slot="append" icon="el-icon-search" size="mini" @click="getData()" />
         </el-input>
         <el-upload
           action
@@ -17,13 +18,13 @@
           :before-upload="beforeFileUpload"
           :show-file-list="false"
         >
-          <el-button size="small" type="primary">上传</el-button>
+          <el-button size="mini" type="primary" icon="el-icon-upload2">上传</el-button>
         </el-upload>
       </el-col>
     </el-row>
 
     <el-row class="content-body">
-      <el-table v-loading="listLoading" class="page-table" border :data="dataList" height="calc(100vh - 260px)">
+      <el-table v-loading="listLoading" class="page-table" border :data="dataList" size="mini" height="calc(100vh - 260px)">
         <el-table-column type="index" label="序号" width="80" header-align="center" align="center" />
         <el-table-column prop="fileTitle" label="文件名称" header-align="left" align="left">
           <template v-slot="{row}">
@@ -46,14 +47,14 @@
           </template>
         </el-table-column>
 
-        <el-table-column label="操作" width="180" header-align="center" align="center">
+        <el-table-column label="操作" width="160" header-align="center" align="center">
           <template v-slot="{row}">
             <label style="display:inline-block;margin-right:5px">
               <el-button size="mini" type="primary" icon="el-icon-download">
                 <a target="_blank" :href="row.fileUrl" dowload>下载</a>
               </el-button>
             </label>
-            <el-button size="mini" type="danger" @click="handleDelete(row)">删除</el-button>
+            <el-button size="mini" type="danger" icon="el-icon-delete" @click="handleDelete(row)">删除</el-button>
           </template>
         </el-table-column>
 

+ 1 - 1
src/views/system/leadingGroup/member/memberList.vue

@@ -12,7 +12,7 @@
       </el-col>
     </el-row>
     <div class="content-body">
-      <el-table v-loading="listLoading" :data="dataList">
+      <el-table v-loading="listLoading" size="mini" :data="dataList">
         <el-table-column type="index" align="center" label="序号" width="70" />
 
         <el-table-column prop="lgpName" align="center" label="分工岗位" width="150" />