RegistrationDetails.vue
1.3 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
<template>
<view class="content">
<view style="padding-top: 16px;">
<view class="bo">
<view class="title"><text class="left">培训名称:</text><text class="right">培训培训培训</text></view>
<view class="money"><text class="left">培训金额(元):</text><text class="right">0.01元</text></view>
<view class="time"><text class="left">报名时间:</text><text class="right">2024-04-04 17:22:29</text></view>
<view class="zhiBox">
<text class="zhifu">支付</text>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style>
.time {
margin-bottom: 52px;
}
.money {
margin-bottom: 49px;
}
.title {
margin-bottom: 72px;
}
.bo {
background-color: #FFFFFF;
margin: 16px 16px 0 16px;
padding: 16px;
}
.content {
background-color: #F2F3F5;
height: 100vh;
}
.right {
color: #323233;
font-size: 30rpx;
font-weight: bold;
margin-left: 15px;
}
.left {
color: #646566;
font-size: 32rpx;
}
.zhiBox {
display: flex;
align-items: center;
justify-content: center;
height: 100rpx;
background: #67d96a;
border-radius: 16rpx;
margin: 0 72px;
}
.zhifu {
color: #FFFFFF;
font-size: 36rpx;
}
</style>