addCard.vue
1.5 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
<template>
<view class="page">
<view class="title">请绑定持卡人本人的银行卡</view>
<view class="box">
<view class="item">
<text class="name">持卡人</text>
<input type="text" value="" placeholder="mingzi" class="fill"/>
</view>
<view class="item">
<text class="name">卡号</text>
<input type="text" value="" placeholder="mingzi" class="fill"/>
</view>
<view class="item">
<text class="name">开户行</text>
<input type="text" value="" placeholder="mingzi" class="fill"/>
</view>
<view class="item">
<text class="name">手机号</text>
<input type="text" value="" placeholder="mingzi" class="fill"/>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style>
.title{
font-size:28rpx;
font-family:PingFangHK-Regular,PingFangHK;
font-weight:400;
color:rgba(61,69,76,1);
line-height: 104rpx;
padding: 0 40rpx;
box-sizing: border-box;
}
.box{
background: #fff;
padding: 0 40rpx;
box-sizing: border-box;
}
.item{
height: 108rpx;
display: flex;
align-items: center;
border-bottom: 1px solid #EEEEEE;
}
.name{
width: 84rpx;
font-size:28rpx;
font-family:PingFangHK-Medium,PingFangHK;
font-weight:600;
color:rgba(8,18,31,1);
margin-right: 16rpx;
}
.fill{
width:232rpx;
font-size:28rpx;
font-family:PingFangHK-Regular,PingFangHK;
font-weight:400;
color:rgba(91,94,100,1);
}
</style>