保存进度!

This commit is contained in:
Kane Wang 2023-02-07 20:01:15 +08:00
parent 76c8573527
commit 9d59c95768
5 changed files with 24 additions and 15 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 773 KiB

View File

@ -2,8 +2,8 @@
* @Author: Kane * @Author: Kane
* @Date: 2023-01-04 11:40:03 * @Date: 2023-01-04 11:40:03
* @LastEditors: Kane * @LastEditors: Kane
* @LastEditTime: 2023-01-26 12:34:20 * @LastEditTime: 2023-02-07 10:47:57
* @FilePath: \admin_system\src\layout\components\Main.vue * @FilePath: /IT/src/layout/components/Main.vue
* @Description: * @Description:
* *
* Copyright (c) ${2022} by Kane, All Rights Reserved. * Copyright (c) ${2022} by Kane, All Rights Reserved.
@ -31,6 +31,6 @@ export default {
} }
.view-wrapper { .view-wrapper {
padding: 15px; padding: 10px;
} }
</style> </style>

View File

@ -3,7 +3,7 @@
* @Author: Kane * @Author: Kane
* @Date: 2022-12-14 15:23:54 * @Date: 2022-12-14 15:23:54
* @LastEditors: Kane * @LastEditors: Kane
* @LastEditTime: 2023-02-06 14:32:18 * @LastEditTime: 2023-02-07 10:46:48
* @FilePath: /IT/src/views/account/Login.vue * @FilePath: /IT/src/views/account/Login.vue
* @Description: * @Description:
* *
@ -11,7 +11,7 @@
--> -->
<template> <template>
<div id="login"> <div id="login">
<div class="form-warp"> <div class="form-wrapper">
<ul class="menu-tab"> <ul class="menu-tab">
<li :class="{ 'current': ui.current_menu === item.type }" @click="onToggleMenu(item.type)" <li :class="{ 'current': ui.current_menu === item.type }" @click="onToggleMenu(item.type)"
v-for="item in tab_menu" :key="item.type">{{ item.label }} v-for="item in tab_menu" :key="item.type">{{ item.label }}
@ -230,13 +230,14 @@ export default {
height: 100vh; height: 100vh;
background-color: #344a5f; background-color: #344a5f;
padding-top: 50px; padding-top: 50px;
background-image: url("@/assets/img/cropped-1600-900-36302.jpg");
} }
.form-warp { .form-wrapper {
width: 320px; width: 320px;
padding: 30px; padding: 30px;
margin: auto; margin: auto;
background-color: #ffffff10; background-color: #ffffffaf;
border-radius: 5px; border-radius: 5px;
} }
@ -267,7 +268,7 @@ export default {
display: inline-block; display: inline-block;
padding: 10px 24px; padding: 10px 24px;
margin: 0 10px; margin: 0 10px;
color: #fff; color: #344a5fef;
font-size: 14px; font-size: 14px;
border-radius: 5px; border-radius: 5px;
cursor: pointer; cursor: pointer;
@ -279,10 +280,15 @@ export default {
.form-label { .form-label {
display: block; display: block;
color: #fff; /* color: #fff; */
color: #344a5fef;
font-size: 14px; font-size: 14px;
} }
.el-input {
color: #344a5fef;
}
.el-button-block { .el-button-block {
width: 100%; width: 100%;
} }

View File

@ -2,7 +2,7 @@
* @Author: Kane * @Author: Kane
* @Date: 2023-02-02 22:19:12 * @Date: 2023-02-02 22:19:12
* @LastEditors: Kane * @LastEditors: Kane
* @LastEditTime: 2023-02-06 22:19:15 * @LastEditTime: 2023-02-07 10:48:53
* @FilePath: /IT/src/views/requirement/RequirementManager.vue * @FilePath: /IT/src/views/requirement/RequirementManager.vue
* @Description: * @Description:
* *
@ -399,7 +399,7 @@ export default {
<style scoped> <style scoped>
/* 整个页面的外壳 ******************************/ /* 整个页面的外壳 ******************************/
.requirement_wrapper { .requirement_wrapper {
padding: 15px 10px; padding: 10px;
background-color: #fff; background-color: #fff;
border-radius: 5px; border-radius: 5px;
box-shadow: 0px 0px 20px -10px rgb(14 18 22 / 25%); box-shadow: 0px 0px 20px -10px rgb(14 18 22 / 25%);
@ -410,7 +410,7 @@ export default {
} }
.requirement_wrapper>*+* { .requirement_wrapper>*+* {
margin-top: 15px; margin-top: 10px;
} }

View File

@ -2,8 +2,8 @@
* @Author: Kane * @Author: Kane
* @Date: 2022-12-17 11:08:18 * @Date: 2022-12-17 11:08:18
* @LastEditors: Kane * @LastEditors: Kane
* @LastEditTime: 2023-01-07 12:08:14 * @LastEditTime: 2023-02-07 12:27:02
* @FilePath: \admin_system\vue.config.js * @FilePath: /IT/vue.config.js
* @Description: * @Description:
* *
* Copyright (c) ${2022} by Kane, All Rights Reserved. * Copyright (c) ${2022} by Kane, All Rights Reserved.
@ -36,7 +36,7 @@ module.exports = {
.loader("svg-sprite-loader") .loader("svg-sprite-loader")
.options({ .options({
symbolId: "icon-[name]", symbolId: "icon-[name]",
include: ["./src/components/svg/icons"] // 特别注意的目录路径 include: ["./src/components/svg/icons",], // 特别注意的目录路径
}); });
// 配置base64转换规则 // 配置base64转换规则
// config.module // config.module
@ -48,4 +48,7 @@ module.exports = {
// 载入项目分析工具 // 载入项目分析工具
// config.plugin('webpack-bundle-analyzer').use(require('webpack-bundle-analyzer').BundleAnalyzerPlugin) // config.plugin('webpack-bundle-analyzer').use(require('webpack-bundle-analyzer').BundleAnalyzerPlugin)
}, },
//打包输出目录
publicPath: "./",
outputDir: "dist",
}; };