Merge branch 'feature-requirement' of http://222.76.244.118:3000/CPICXIM/it-console into feature-requirement

This commit is contained in:
2023-02-08 00:50:29 +08:00
5 changed files with 25 additions and 16 deletions

View File

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

View File

@@ -2,7 +2,7 @@
* @Author: Kane
* @Date: 2023-02-02 22:19:12
* @LastEditors: Kane
* @LastEditTime: 2023-02-08 00:49:55
* @LastEditTime: 2023-02-07 10:48:53
* @FilePath: /IT/src/views/requirement/RequirementManager.vue
* @Description:
*
@@ -308,7 +308,7 @@ export default {
});
};
/*****************************************************
* 响应显示需求详情的点击事件
* @param serial_no 需求编号
@@ -414,7 +414,7 @@ export default {
<style scoped>
/* 整个页面的外壳 ******************************/
.requirement_wrapper {
padding: 15px 10px;
padding: 10px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0px 0px 20px -10px rgb(14 18 22 / 25%);
@@ -425,7 +425,7 @@ export default {
}
.requirement_wrapper>*+* {
margin-top: 15px;
margin-top: 10px;
}