safety.vue
1.44 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
<template>
<!-- 账号安全 -->
<el-row>
<el-col :span="24">
<br>
<el-form label-width="140px">
<el-form-item label="手机号:">
<el-input
v-model="account"
style="width: 400px"
placeholder="请输入账号"
/>
<el-button class="brn" type="primary" round>绑定</el-button>
<el-button v-if="false" class="brn" type="primary" round>解绑</el-button>
</el-form-item>
<el-form-item label="微信:">
<el-input
v-if="false"
v-model="password"
style="width: 400px"
type="password"
placeholder="请输入密码"
/>
<a style="width: 400px">去绑定</a>
<el-button class="brn" type="primary" round>去绑定</el-button>
<el-button v-if="false" class="brn" type="primary" round>去绑定</el-button>
</el-form-item>
<el-form-item label="登录密码:">
<el-input
v-model="confirmPassword"
style="width: 400px"
type="password"
placeholder="请再次输入密码"
/>
<el-button class="brn" type="primary" size="large" style="width: 180px;margin-left: 200px;">去修改</el-button>
</el-form-item>
</el-form>
</el-col>
</el-row>
</template>
<script setup></script>
<style scope lang="scss">
.brn {
margin-left: 20px;
}
</style>