Przeglądaj źródła

管理后台-样式

panyong 3 lat temu
rodzic
commit
b5857f3211

BIN
htmldev/manage/public/favicon.ico


+ 0 - 1
htmldev/manage/public/index.html

@@ -4,7 +4,6 @@
     <meta charset="utf-8">
     <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
     <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
-    <link rel="icon" href="<%= BASE_URL %>favicon.ico">
     <title><%= webpackConfig.name %></title>
   </head>
   <body>

+ 3 - 3
htmldev/manage/src/layout/index.vue

@@ -1,12 +1,12 @@
 <template>
   <div :class="classObj" class="app-wrapper">
     <div v-if="device==='mobile'&&sidebar.opened" class="drawer-bg" @click="handleClickOutside"/>
-    <sidebar class="sidebar-container"/>
+    <Sidebar class="sidebar-container"/>
     <div class="main-container">
       <div :class="{'fixed-header':fixedHeader}">
-        <navbar/>
+        <Navbar/>
       </div>
-      <app-main/>
+      <AppMain/>
     </div>
   </div>
 </template>

+ 0 - 1
htmldev/manage/src/router/index.js

@@ -60,7 +60,6 @@ export const asyncRoutes = [
     path: '/project',
     component: Layout,
     redirect: '/project/list',
-    hidden: true,
     meta: { title: '项目管理', icon: 'table', roleValue: 'project_list_show' },
     children: [{
       path: 'list',

+ 5 - 12
htmldev/manage/src/views/login/index.vue

@@ -22,7 +22,7 @@
               @click="handleSubmit"
               type="primary"
               class="button-login"
-              size="default">提交
+              size="default">登录
             </el-button>
           </el-form-item>
         </el-form>
@@ -57,16 +57,6 @@ export default {
     }
   },
   methods: {
-    showPwd () {
-      if (this.passwordType === 'password') {
-        this.passwordType = ''
-      } else {
-        this.passwordType = 'password'
-      }
-      this.$nextTick(() => {
-        this.$refs.password.focus()
-      })
-    },
     handleSubmit () {
       this.$refs.loginForm.validate(async valid => {
         if (valid) {
@@ -112,7 +102,10 @@ export default {
     bottom: 0;
 
     .page-login--content {
-      width: 360px;
+      width: 400px;
+      padding: 20px;
+      border-radius: 8px;
+      background: #fff;
 
       .button-login {
         display: block;