|
@@ -1,13 +1,20 @@
|
|
|
<template>
|
|
<template>
|
|
|
<div class="dashboard-container">
|
|
<div class="dashboard-container">
|
|
|
- 123
|
|
|
|
|
|
|
+ <div class="header"></div>
|
|
|
|
|
+ <div class="content-wrap">
|
|
|
|
|
+ <div class="coner left">
|
|
|
|
|
+ <div></div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="coner right"></div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
|
|
|
|
|
export default {
|
|
export default {
|
|
|
- name: 'Login',
|
|
|
|
|
|
|
+ name: 'Dashboard',
|
|
|
data() {
|
|
data() {
|
|
|
return {}
|
|
return {}
|
|
|
},
|
|
},
|
|
@@ -25,64 +32,45 @@ export default {
|
|
|
}
|
|
}
|
|
|
</script>
|
|
</script>
|
|
|
|
|
|
|
|
-<style lang="scss">
|
|
|
|
|
|
|
+<style lang="scss" scoped>
|
|
|
.dashboard-container {
|
|
.dashboard-container {
|
|
|
- background-image: url('../../assets/login/bg.png');
|
|
|
|
|
- background-size: 100% 100%;
|
|
|
|
|
-
|
|
|
|
|
- .el-form {
|
|
|
|
|
- width: 70%;
|
|
|
|
|
- margin: 0 auto;
|
|
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ height: 100%;
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ flex-direction: column;
|
|
|
|
|
+ align-items: flex-start;
|
|
|
|
|
+ justify-content: flex-start;
|
|
|
|
|
+ background-image: url("/static/images/bg.png");
|
|
|
|
|
+ background-repeat: no-repeat;
|
|
|
|
|
+ background-size: cover;
|
|
|
|
|
|
|
|
- .el-input__inner {
|
|
|
|
|
- height: 40px;
|
|
|
|
|
- }
|
|
|
|
|
|
|
+ .header {
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ height: 88px;
|
|
|
|
|
+ flex-shrink: 0;
|
|
|
|
|
+ background-image: url("/static/images/header@2x.png");
|
|
|
|
|
+ background-repeat: no-repeat;
|
|
|
|
|
+ background-size: cover;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-}
|
|
|
|
|
-</style>
|
|
|
|
|
-
|
|
|
|
|
-<style lang="css" scoped>
|
|
|
|
|
-.title-container {
|
|
|
|
|
- color: #547BD4;
|
|
|
|
|
- font-family: Noto Sans Malayalam UI;
|
|
|
|
|
- font-size: 28px;
|
|
|
|
|
- line-height: 26px;
|
|
|
|
|
- letter-spacing: 0px;
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-/deep/ .el-input__inner {
|
|
|
|
|
- border: 0;
|
|
|
|
|
- border-bottom: 1px solid #DCDFE6;
|
|
|
|
|
- border-radius: 0;
|
|
|
|
|
- padding: 0;
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-/deep/ .el-form-item__label {
|
|
|
|
|
- padding: 0;
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-.login-container {
|
|
|
|
|
- min-height: 100%;
|
|
|
|
|
- width: 100%;
|
|
|
|
|
- overflow: hidden;
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-/deep/ .el-form-item {
|
|
|
|
|
- margin-bottom: 4px;
|
|
|
|
|
-}
|
|
|
|
|
|
|
+ .content-wrap {
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ height: 100%;
|
|
|
|
|
+ flex-grow: 1;
|
|
|
|
|
+ display: grid;
|
|
|
|
|
+ grid-template-columns: 4fr 1fr;
|
|
|
|
|
+ grid-template-rows: 100%;
|
|
|
|
|
+ grid-auto-flow: row;
|
|
|
|
|
|
|
|
-.window-login {
|
|
|
|
|
- overflow: hidden;
|
|
|
|
|
- border-radius: 15px;
|
|
|
|
|
- margin: 0 auto;
|
|
|
|
|
- margin-top: 3%;
|
|
|
|
|
- width: 800px;
|
|
|
|
|
- box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1)
|
|
|
|
|
-}
|
|
|
|
|
|
|
+ .coner {
|
|
|
|
|
+ &.left {
|
|
|
|
|
+ //background: teal;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
-.picColor {
|
|
|
|
|
- background: linear-gradient(166.06deg, #2782DF 0%, #003DAE 100%);
|
|
|
|
|
- box-shadow: 0px 4px 8px 0px #46BBFD5B;
|
|
|
|
|
|
|
+ &.right {
|
|
|
|
|
+ //background: snow;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
</style>
|
|
</style>
|