2022-08-02 10:16:07 +08:00
|
|
|
<template>
|
2022-08-02 20:19:15 +08:00
|
|
|
<div class="backimg">
|
|
|
|
|
<div class="sign">
|
|
|
|
|
<span class="title">Hi 欢迎使用</span>
|
|
|
|
|
<p class="manage">
|
|
|
|
|
<img src="../css/img/养花人2_画板 1 副本 15.png" alt="" /><span
|
|
|
|
|
>ERP管理系统</span
|
|
|
|
|
>
|
|
|
|
|
</p>
|
|
|
|
|
<p class="title-1">登录</p>
|
|
|
|
|
<input type="text" placeholder="请输入用户名" />
|
|
|
|
|
<br />
|
|
|
|
|
<input type="text" placeholder="请输入密码" />
|
|
|
|
|
<br />
|
|
|
|
|
<el-checkbox v-model="checked">记住密码</el-checkbox>
|
|
|
|
|
<br />
|
|
|
|
|
<el-button type="primary">登录</el-button>
|
|
|
|
|
</div>
|
2022-08-02 10:16:07 +08:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
2022-08-02 20:19:15 +08:00
|
|
|
checked: true, //记住密码变量
|
2022-08-02 10:16:07 +08:00
|
|
|
form: {
|
2022-08-02 20:19:15 +08:00
|
|
|
add: "",
|
|
|
|
|
app: "",
|
2022-08-02 10:16:07 +08:00
|
|
|
},
|
2022-08-02 20:19:15 +08:00
|
|
|
};
|
2022-08-02 10:16:07 +08:00
|
|
|
},
|
|
|
|
|
computed: {}, // 计算机属性 类似与data概念
|
|
|
|
|
watch: {}, // 监控data中数据变化
|
|
|
|
|
created() {}, // 生命周期-创建完成(可以访问当前this实例)
|
|
|
|
|
mounted() {}, // 生命周期-挂载完成(可以访问DOM元素)
|
2022-08-02 20:19:15 +08:00
|
|
|
methods: {},
|
|
|
|
|
};
|
|
|
|
|
</script>
|
2022-08-02 10:16:07 +08:00
|
|
|
|
2022-08-02 20:19:15 +08:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.backimg {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 1080px;
|
|
|
|
|
background-image: url("./../css/img/组 32.png");
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-size: 100%;
|
|
|
|
|
position: relative;
|
2022-08-02 10:16:07 +08:00
|
|
|
}
|
|
|
|
|
|
2022-08-02 20:19:15 +08:00
|
|
|
.sign {
|
|
|
|
|
width: 400px;
|
|
|
|
|
height: 500px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 270px;
|
|
|
|
|
right: 300px;
|
|
|
|
|
input {
|
|
|
|
|
width: 400px;
|
|
|
|
|
height: 51px;
|
|
|
|
|
border: 2px solid #bcbcbc;
|
|
|
|
|
opacity: 1;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
margin-bottom: 25px;
|
|
|
|
|
}
|
|
|
|
|
.title {
|
|
|
|
|
width: 125px;
|
|
|
|
|
height: 23px;
|
|
|
|
|
font-size: 22px;
|
|
|
|
|
font-family: "BigruixianBlackGBV1.0";
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
line-height: 23px;
|
|
|
|
|
color: #2b53ec;
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
.manage {
|
|
|
|
|
margin-top: 19px;
|
|
|
|
|
margin-bottom: 50px;
|
|
|
|
|
img {
|
|
|
|
|
margin-right: 20px;
|
|
|
|
|
}
|
|
|
|
|
span {
|
|
|
|
|
width: 340px;
|
|
|
|
|
height: 57px;
|
|
|
|
|
font-size: 54px;
|
|
|
|
|
font-family: "BigruixianBlackGBV1.0";
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
line-height: 57px;
|
|
|
|
|
color: #2b53ec;
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.title-1 {
|
|
|
|
|
width: 70px;
|
|
|
|
|
height: 35px;
|
|
|
|
|
font-size: 35px;
|
|
|
|
|
font-family: Source Han Sans CN;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
line-height: 60px;
|
|
|
|
|
color: #393939;
|
|
|
|
|
opacity: 1;
|
|
|
|
|
margin-bottom: 35px;
|
|
|
|
|
}
|
|
|
|
|
.el-button {
|
|
|
|
|
width: 400px;
|
|
|
|
|
height: 58px;
|
|
|
|
|
background: rgba(43, 83, 236);
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
margin-top: 40px;
|
|
|
|
|
}
|
|
|
|
|
.el-checkbox {
|
|
|
|
|
color: rgba(43, 83, 236);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|