popup.vue
2.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<template>
<div class="container" >
<div class="xiugais">
<div class="tanchuans">
<div class="liumima">旧密码</div>
<div class="shuru">
<img src="../assets/Icon_1.png" class="mimas" alt="">
<input type="text" placeholder="请输入旧密码" class="jiumima">
</div>
</div>
<div class="tanchuans">
<div class="liumima">新密码</div>
<div class="shuru">
<img src="../assets/Icon_1.png" class="mimas" alt="">
<input type="text" placeholder="请输入旧密码" class="jiumima">
</div>
</div>
<div class="tanchuans">
<div class="liumima">重复密码</div>
<div class="shuru">
<img src="../assets/Icon_1.png" class="mimas" alt="">
<input type="text" placeholder="请输入旧密码" class="jiumima">
</div>
</div>
<div class="denlu">
<div class="demhlu">登录</div>
<div class="quxiao" @click="close">取消</div>
</div>
</div>
</div>
</template>
<script>
export default {
name: "popup",
methods: {
close() {
this.$emit("close");
},
},
};
</script>
<style>
.container {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: rgba(0, 0, 0, 0.3);
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
}
.xiugais{
width: 600px;
height: 454px;
background: #FFF;
border-radius: 24px;
padding-top: 20px;
box-sizing: border-box;
}
.tanchuans{
width: 70%;
display: flex;
align-items: left;
justify-content: flex-end;
flex-direction: column;
margin: 30px auto 0;
}
.shuru{
color: #606266;
width: 100%;
height: 40px;
border: solid 1px #E4EAED;
border-radius: 5px;
margin-top: 10px;
display: flex;
align-items: center;
padding-left: 10px;
box-sizing: border-box;
}
.liumima{
font-size: 19px;
color: #606266;
}
.mimas{
width: 24px;
height: 24px;
}
.jiumima{
width: 80%;
height: 100%;
border: none;
outline: none;
font-size: 15px;
margin-left: 11px;
}
.denlu{
width: 70%;
margin: 20px auto 0;
display: flex;
align-items: center;
justify-content: space-between;
}
.demhlu{
width: 40%;
height: 50px;
background: #2f54eb;
font-size: 18px;
color: #FFF;
text-align: center;
line-height: 50px;
border-radius: 12px;
}
.quxiao{
width: 40%;
height: 50px;
border: solid 1px #E4EAED;
font-size: 18px;
color: #606266;
text-align: center;
line-height: 50px;
border-radius: 12px;
}
</style>