Information.vue
1.2 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
<template>
<view>
<view class="top">
<view class="topText">
<text class="title">2021年第二期液化石油气库站工配信</text>
<view class="payBox">
<text class="yiPay">已付款</text>
</view>
</view>
<view class="BtnText">
<view><text class="pei">培训价格:0.01</text></view>
<view>
<view><text class="on">2021-04-01</text></view>
<view><text class="on">15:25:24 报名</text></view>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style>
.topText {
display: flex;
align-items: center;
justify-content: space-between;
}
.BtnText {
display: flex;
justify-content: space-between;
margin-top: 12px;
}
.on {
color: #323233;
font-size: 24rpx;
}
.pei {
color: #323233;
font-size: 26rpx;
}
.title {
color: #323233;
font-size: 26rpx;
}
.payBox {
background: #199460;
border-radius: 120rpx;
display: flex;
align-items: center;
justify-content: center;
}
.yiPay {
color: #FFFFFF;
font-size: 24rpx;
padding: 2px 8px;
}
.top {
background-color: #FFFFFF;
padding: 16px;
border-bottom: 1px solid #EBEDF0;
}
</style>