tuijianren.vue
1.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
<template>
<view class="box">
<view class="bangdingbox">
<view class="bangtitle">绑定推荐人</view>
<view class="tuiphone">
<input placeholder='请输入推荐人手机号' placeholder-class='tuishouji' />
</view>
<view class="tuiwarn">该推荐人不存在,请重新输入</view>
<view class="tuifoot">
<view class="tuifootleft">取消</view>
<view class="tuifootright">确定</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style>
.bangdingbox {
width: 686rpx;
background: #fff;
margin: 200rpx auto 0;
padding: 58rpx 40rpx;
box-sizing: border-box;
border-radius: 10rpx;
}
.bangtitle {
color: #06121E;
font-size: 44rpx;
font-weight: bold;
}
.tuiphone {
width: 550rpx;
border-bottom: 1rpx solid #EBEBEB;
padding: 36rpx 0;
box-sizing: border-box;
margin-top: 80rpx;
}
.tuiphone input {
color: #D2D2D2;
font-size: 32rpx;
text-align: center
}
.tuishouji {
color: #D2D2D2;
font-size: 32rpx;
}
.tuiwarn {
color: #CE1500;
font-size: 26rpx;
margin-top: 20rpx;
}
.tuifoot {
margin-top: 110rpx;
display: flex;
justify-content: space-between;
align-items: center
}
.tuifootleft {
width: 254rpx;
height: 100rpx;
border: 2rpx solid rgba(243, 152, 0, 1);
opacity: 1;
border-radius: 10rpx;
color: #F39800;
font-size: 32rpx;
text-align: center;
line-height: 100rpx;
}
.tuifootright {
width: 254rpx;
height: 100rpx;
background: rgba(243, 152, 0, 1);
box-shadow: 0rpx 4rpx 18rpx rgba(0, 0, 0, 0.04);
opacity: 1;
border-radius: 10rpx;
color: #fff;
font-size: 32rpx;
text-align: center;
line-height: 100rpx;
}
</style>