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
| <template>
| <div id="payPwdInput" class="withdraw_verify">
| <assets-head :clickFunc="() => {
| $emit('close')
| }"/>
| <div class="content">
| <div class="title textColor">{{ $t('安全验证') }}</div>
| <p>{{ $t('请输入资金密码') }}</p>
| <div class="iptbox inputBackground">
| <input class="inputBackground textColor" type="text" :placeholder="$t('请输入密码')" v-model="password">
| </div>
| <div class="btn btnMain" @click="confirm">{{ $t('提交') }}</div>
| <div class="mt-22" style="color:#1D91FF;" @click="$router.push('/resetVerify?type=0')">{{ $t('资金密码不可用?') }}
| </div>
| </div>
| </div>
| </template>
|
| <script>
| import assetsHead from "@/components/assets-head";
| import {Form, Field, CellGroup} from 'vant';
|
| export default {
| name: "payPwdInput",
| props: ['type'],
| components: {
| assetsHead,
| [Form.name]: Form,
| [Field.name]: Field,
| [CellGroup.name]: CellGroup,
| },
| data() {
| return {
| password: '',
| data: null,
| }
| },
| created() {
| this.data = this.$route.query
| },
| methods: {
| onSubmit(values) {
| console.log('submit', values);
| },
| confirm() {
| if (!this.password) {
| this.$toast(this.$t('请输入资金密码'));
| return
| }
| this.$emit('submit', this.password)
| }
| }
| }
| </script>
|
| <style lang="scss" scoped>
|
|
| .payPwdInput {
| width: 100%;
| box-sizing: border-box;
| }
|
| .cl {
| color: dodgerblue;
| }
|
| .title {
| font-weight: 700;
| font-size: 52px;
| margin-top: 54px;
| margin-bottom: 56px;
| }
|
| .content {
| padding: 0 32px;
|
| p {
| color: #868D9A;
| font-size: 30px;
| margin-bottom: 18px;
| }
|
| .iptbox {
| height: 88px;
| margin-top: 16px;
| padding: 0 20px;
| display: flex;
| justify-content: space-between;
| align-items: center;
| border-radius: 8px;
|
| input {
| flex: 1;
| height: 100%;
| border: none;
| }
|
| span {
| color: #1D91FF;
| }
| }
| }
|
| .btn {
| color: #fff;
| height: 88px;
| line-height: 88px;
| text-align: center;
| font-size: 32px;
| margin-top: 178px;
| border-radius: 10px;
| }
| </style>
|
|