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
| <template>
| <view class="box-title">
| <view class="line">
|
| </view>
| <view class="text">
| {{ title }}
| </view>
| </view>
| </template>
|
| <script>
| export default {
| props: {
| title: {
| type: String,
| default: ''
| }
| },
|
| data() {
| return {
|
| }
| }
| }
| </script>
|
| <style lang="scss" scoped>
| .box-title {
| display: flex;
| align-items: center;
| color: #333;
| margin-bottom: 30rpx;
| .line {
| width: 6rpx;
| height: 30rpx;
| margin-right: 10rpx;
| background-color: #017BFC;
| }
| .text {
| // font-size: 32rpx;
| }
| }
| </style>
|
|