<template>
|
<div class="container">
|
<div class="container-left">
|
<div class="left-card" v-for="(item, index) in menuArr" :key="index" @click="openMenu(item, index)">
|
<span class="icon iconfont"></span>
|
<span class="card-text">{{ item.name }}</span>
|
</div>
|
</div>
|
<systemClean v-if="activePage == '系统清理'" style="width: 100%"></systemClean>
|
<updateSettings v-if="activePage == '更新设置'" style="width: 100%"></updateSettings>
|
<back-up v-if="activePage == '备份还原'" style="width: 100%"></back-up>
|
<restartSettings v-if="activePage == '重启设置'" style="width: 100%"></restartSettings>
|
</div>
|
</template>
|
|
<script>
|
import systemClean from "../views/systemClean"
|
import updateSettings from "../views/updateSettings"
|
import BackUp from "../views/backUp"
|
import restartSettings from "../views/restartSettings"
|
export default {
|
name: "settings",
|
components: {
|
systemClean,
|
updateSettings,
|
BackUp,
|
restartSettings
|
},
|
data() {
|
return {
|
browserTimer: null,
|
menuArr: [{ name: "更新设置" }, { name: "备份还原" }, { name: "系统清理" }, { name: "重启设置" }],
|
jpgArr: [{}, {}, {}, {}, {}, {}, {}, {}, {}],
|
activePage: "更新设置",
|
activeIndex: 0,
|
clockTimer: null
|
}
|
},
|
beforeDestroy() {
|
clearTimeout(this.clockTimer)
|
clearInterval(this.browserTimer)
|
},
|
mounted() {
|
const s = document.getElementsByClassName("left-card")[0]
|
s.style.backgroundColor = "rgba(61, 104, 225, 1)"
|
s.style.color = "#fff"
|
},
|
methods: {
|
openMenu(item, i) {
|
const old = document.getElementsByClassName("left-card")[this.activeIndex]
|
old.style.backgroundColor = "initial"
|
old.style.color = "rgba(81, 81, 81, 1)"
|
|
this.activePage = item.name
|
this.activeIndex = i
|
const s = document.getElementsByClassName("left-card")[i]
|
s.style.backgroundColor = "rgba(61, 104, 225, 1)"
|
s.style.color = "#fff"
|
}
|
}
|
}
|
</script>
|
<style lang="scss">
|
.container {
|
height: 100%;
|
display: flex;
|
flex-direction: row;
|
flex: 1;
|
flex-basis: auto;
|
box-sizing: border-box;
|
.container-left {
|
height: 100%;
|
width: 210px;
|
overflow: auto;
|
box-sizing: border-box;
|
flex-shrink: 0;
|
padding: 10px;
|
border-right: 5px solid rgba(248, 248, 248, 1);
|
box-sizing: border-box;
|
.left-card {
|
height: 55px;
|
cursor: pointer;
|
border-radius: 12px;
|
margin-bottom: 10px;
|
display: flex;
|
align-items: center;
|
.iconfont {
|
margin-left: 25px;
|
margin-right: 10px;
|
font-size: 24px;
|
}
|
.card-text {
|
font-size: 16px;
|
}
|
}
|
.left-card:hover {
|
background-color: rgba(61, 104, 225, 1);
|
color: #fff;
|
}
|
}
|
.container-center {
|
height: 100%;
|
width: 280px;
|
overflow: auto;
|
flex-shrink: 0;
|
padding: 10px;
|
border-right: 5px solid rgba(248, 248, 248, 1);
|
box-sizing: border-box;
|
.account-left {
|
.add-account {
|
color: rgba(61, 104, 225, 1);
|
margin-top: 50px;
|
|
.iconfont {
|
cursor: pointer;
|
font-size: 32px;
|
}
|
}
|
.account-card {
|
height: 50px;
|
background-color: rgba(248, 248, 248, 1);
|
margin-bottom: 10px;
|
display: flex;
|
align-items: center;
|
padding: 0 20px;
|
box-sizing: border-box;
|
border-radius: 10px;
|
cursor: pointer;
|
.touxiang {
|
height: 35px;
|
width: 35px;
|
background-color: bisque;
|
border-radius: 17.5px;
|
}
|
.user-name {
|
margin-left: 10px;
|
font-size: 14px;
|
}
|
}
|
}
|
.datetime-left {
|
.time-card {
|
height: 105px;
|
background-color: rgba(248, 248, 248, 1);
|
margin-bottom: 30px;
|
border-radius: 10px;
|
.head {
|
height: 30px;
|
line-height: 30px;
|
text-align: left;
|
box-sizing: border-box;
|
padding: 0 10px;
|
font-size: 14px;
|
.icon {
|
margin-right: 5px;
|
color: rgba(61, 104, 225, 1);
|
}
|
}
|
.time-main {
|
height: 42px;
|
line-height: 42px;
|
font-family: Consolas;
|
font-size: 36px;
|
}
|
.date-bot {
|
height: 25px;
|
font-size: 14px;
|
line-height: 25px;
|
color: #868686;
|
display: flex;
|
justify-content: space-evenly;
|
}
|
}
|
.line {
|
display: flex;
|
align-items: center;
|
height: 50px;
|
padding: 0 25px;
|
background-color: rgba(248, 248, 248, 1);
|
justify-content: space-between;
|
border-radius: 12px;
|
margin-bottom: 10px;
|
.name {
|
font-size: 14px;
|
}
|
}
|
}
|
}
|
.container-right {
|
flex: 1;
|
flex-basis: auto;
|
overflow: auto;
|
box-sizing: border-box;
|
position: relative;
|
|
padding: 20px 40px;
|
.account-right {
|
.account-content {
|
.content-top {
|
height: 120px;
|
width: 350px;
|
margin: 0 auto;
|
display: flex;
|
align-items: center;
|
justify-content: center;
|
margin-bottom: 20px;
|
.touxiang-big {
|
width: 100px;
|
height: 100px;
|
background-color: bisque;
|
border-radius: 50px;
|
}
|
.user-desc {
|
height: 100px;
|
display: flex;
|
flex-direction: column;
|
align-items: baseline;
|
min-width: 200px;
|
.username {
|
margin: 5px 15px;
|
height: 30px;
|
line-height: 30px;
|
width: 90px;
|
text-align: left;
|
font-size: 15px;
|
display: flex;
|
align-items: center;
|
}
|
.nickname {
|
margin: 5px 15px;
|
font-size: 14px;
|
.input-nick {
|
width: 50px;
|
margin-right: 5px;
|
}
|
.iconfont {
|
font-size: 14px;
|
margin-left: 5px;
|
}
|
}
|
}
|
}
|
.list-btn {
|
display: flex;
|
|
flex-direction: column;
|
align-items: center;
|
.item-btn {
|
width: 500px;
|
height: 45px;
|
background-color: #f0f0f0;
|
margin-bottom: 15px;
|
border-radius: 10px;
|
line-height: 45px;
|
font-size: 15px;
|
cursor: pointer;
|
}
|
.item-btn:hover {
|
color: rgba(255, 153, 102, 1);
|
}
|
}
|
}
|
.title {
|
height: 30px;
|
line-height: 30px;
|
/* background-color: aliceblue; */
|
margin-bottom: 10px;
|
font-size: 16px;
|
font-weight: 600;
|
}
|
.change-pw {
|
.p-title {
|
text-align: left;
|
font-size: 15px;
|
margin-top: 5px;
|
}
|
}
|
.el-form-item {
|
margin-bottom: 0;
|
.el-input__inner {
|
background-color: rgba(240, 240, 240, 1);
|
border: none;
|
border-radius: 12px;
|
height: 45px;
|
padding: 0 20px;
|
font-size: 15px;
|
}
|
.el-input__clear {
|
color: dimgray;
|
font-size: 17px;
|
line-height: 45px;
|
}
|
.el-input__suffix {
|
right: 1px;
|
top: -0.5px;
|
width: 45px;
|
// background-color: rgba(61, 104, 225, 1);
|
/* color: white; */
|
border-radius: 12px;
|
}
|
}
|
.permission {
|
.line {
|
display: flex;
|
align-items: center;
|
height: 50px;
|
padding: 0 25px;
|
background-color: rgba(248, 248, 248, 1);
|
justify-content: space-between;
|
border-radius: 12px;
|
margin-bottom: 10px;
|
.name {
|
font-size: 14px;
|
}
|
}
|
}
|
|
.add-account-page {
|
// background-color: lightcyan;
|
// padding: 10px 50px;
|
.upload-group {
|
height: 120px;
|
width: 350px;
|
margin: 0 auto;
|
overflow: hidden;
|
.upload-jpg {
|
height: 50px;
|
width: 50px;
|
float: left;
|
margin: 0 10px;
|
background-color: antiquewhite;
|
margin-bottom: 20px;
|
border-radius: 25px;
|
}
|
}
|
.fill-group {
|
.p-title {
|
text-align: left;
|
}
|
}
|
}
|
}
|
.datetime-right {
|
.el-form-item.is-required:not(.is-no-asterisk) > .el-form-item__label:before,
|
.el-form-item.is-required:not(.is-no-asterisk) .el-form-item__label-wrap > .el-form-item__label:before {
|
display: none;
|
}
|
.el-form-item {
|
margin-bottom: 10px;
|
height: 50px;
|
background: #f8f8f8;
|
padding: 4px 20px;
|
-webkit-box-sizing: border-box;
|
box-sizing: border-box;
|
border-radius: 10px;
|
.el-form-item__label {
|
text-align: left;
|
line-height: 42px;
|
}
|
}
|
.el-form-item__content {
|
line-height: 40px;
|
position: relative;
|
font-size: 14px;
|
}
|
.ip-input-container {
|
max-width: none !important;
|
}
|
.ntp-time {
|
.right {
|
display: flex;
|
align-items: baseline;
|
.el-input-number--small {
|
width: 100%;
|
}
|
.el-button--text {
|
margin-left: 10px;
|
text-decoration: underline;
|
}
|
}
|
.ntp-bar {
|
height: 40px;
|
background-color: rgba(248, 248, 248, 1);
|
display: flex;
|
align-items: center;
|
justify-content: space-between;
|
padding: 0 10px;
|
border-radius: 10px;
|
margin-bottom: 10px;
|
.title {
|
min-width: 70px;
|
}
|
.input-area {
|
width: 450px;
|
height: 30px;
|
background-color: rgba(240, 240, 240, 1);
|
border-radius: 10px;
|
line-height: 30px;
|
font-size: 14px;
|
}
|
}
|
.int-bar {
|
height: 40px;
|
background-color: rgba(248, 248, 248, 1);
|
display: flex;
|
align-items: center;
|
justify-content: space-between;
|
padding: 0 10px;
|
border-radius: 10px;
|
margin-bottom: 10px;
|
.title {
|
min-width: 130px;
|
}
|
.right {
|
width: 450px;
|
display: flex;
|
align-items: center;
|
height: 30px;
|
|
.input-area {
|
// width: 410px;
|
background-color: rgba(240, 240, 240, 1);
|
border-radius: 10px;
|
line-height: 30px;
|
width: -webkit-fill-available;
|
|
font-size: 14px;
|
}
|
.test {
|
width: 40px;
|
}
|
}
|
}
|
}
|
.manual-time {
|
.clock-wrap {
|
height: 75px;
|
|
background-color: #f8f8f8;
|
display: flex;
|
justify-content: center;
|
align-items: center;
|
margin-bottom: 10px;
|
border-radius: 10px;
|
.clock {
|
display: flex;
|
align-items: center;
|
height: 90px;
|
justify-content: space-evenly;
|
.iconfont {
|
cursor: pointer;
|
color: rgba(134, 134, 134, 1);
|
}
|
.iconfont:hover {
|
background-color: gainsboro;
|
}
|
.hour {
|
background-color: rgba(240, 240, 240, 1);
|
display: flex;
|
align-items: center;
|
width: 100px;
|
height: 50px;
|
justify-content: space-evenly;
|
border-radius: 10px;
|
}
|
.dnum {
|
width: 40px;
|
height: 40px;
|
line-height: 40px;
|
font-size: 34px;
|
font-family: Consolas;
|
display: flex;
|
align-items: center;
|
.input-box {
|
width: inherit;
|
border: none;
|
border-radius: 5px;
|
height: 35px;
|
font-size: 28px;
|
text-align: center;
|
}
|
|
.input-box:focus {
|
outline: none;
|
}
|
}
|
.control {
|
width: 20px;
|
.fanzhuan {
|
display: inline-block;
|
-moz-transform: scaleY(-1);
|
-webkit-transform: scaleY(-1);
|
-o-transform: scaleY(-1);
|
transform: scaleY(-1);
|
}
|
}
|
.sep {
|
font-family: Consolas;
|
width: 40px;
|
font-size: 34px;
|
height: 40px;
|
line-height: 40px;
|
}
|
.mins {
|
background-color: #f0f0f0;
|
display: flex;
|
align-items: center;
|
width: 110px;
|
height: 50px;
|
justify-content: space-evenly;
|
border-radius: 10px;
|
}
|
}
|
}
|
.adjust-bar {
|
display: flex;
|
justify-content: space-between;
|
align-items: center;
|
margin-bottom: 10px;
|
border-radius: 10px;
|
height: 50px;
|
background-color: rgba(248, 248, 248, 1);
|
.middle {
|
font-size: 14px;
|
}
|
.input-box {
|
width: 80px;
|
border: none;
|
border-radius: 5px;
|
height: 25px;
|
font-size: 18px;
|
text-align: center;
|
}
|
|
.input-box:focus {
|
outline: none;
|
}
|
.minus {
|
width: 50px;
|
height: 50px;
|
background-color: #f0f0f0;
|
font-size: 35px;
|
border-radius: 10px;
|
cursor: pointer;
|
line-height: 50px;
|
color: rgba(134, 134, 134, 1);
|
}
|
.plus {
|
width: 50px;
|
height: 50px;
|
cursor: pointer;
|
background-color: #f0f0f0;
|
font-size: 35px;
|
border-radius: 10px;
|
line-height: 50px;
|
color: rgba(134, 134, 134, 1);
|
}
|
}
|
}
|
}
|
.btns {
|
display: flex;
|
justify-content: space-between;
|
margin-top: 20px;
|
|
.cancel {
|
height: 40px;
|
width: 48%;
|
cursor: pointer;
|
border-radius: 8px;
|
background-color: rgba(240, 240, 240, 1);
|
line-height: 40px;
|
font-size: 14px;
|
}
|
.ok {
|
height: 40px;
|
width: 48%;
|
cursor: pointer;
|
border-radius: 8px;
|
background-color: rgba(61, 104, 225, 1);
|
color: #fff;
|
line-height: 40px;
|
font-size: 14px;
|
}
|
}
|
}
|
}
|
</style>
|