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
| <template>
| <view class="u-cell-box">
| <view class="u-cell-title" v-if="title" :style="[titleStyle]">
| {{title}}
| </view>
| <view class="u-cell-item-box" :class="{'u-border-bottom u-border-top': border}">
| <slot />
| </view>
| </view>
| </template>
|
| <script>
| /**
| * cellGroup 单元格父组件Group
| * @description cell单元格一般用于一组列表的情况,比如个人中心页,设置页等。搭配u-cell-item
| * @tutorial https://www.uviewui.com/components/cell.html
| * @property {String} title 分组标题
| * @property {Boolean} border 是否显示外边框(默认true)
| * @property {Object} title-style 分组标题的的样式,对象形式,如{'font-size': '24rpx'} 或 {'fontSize': '24rpx'}
| * @example <u-cell-group title="设置喜好">
| */
| export default {
| name: "u-cell-group",
| props: {
| // 分组标题
| title: {
| type: String,
| default: ''
| },
| // 是否显示分组list上下边框
| border: {
| type: Boolean,
| default: true
| },
| // 分组标题的样式,对象形式,注意驼峰属性写法
| // 类似 {'font-size': '24rpx'} 和 {'fontSize': '24rpx'}
| titleStyle: {
| type: Object,
| default () {
| return {};
| }
| }
| },
| data() {
| return {
| index: 0,
| }
| },
| }
| </script>
|
| <style lang="scss" scoped>
| @import "../../libs/css/style.components.scss";
|
| .u-cell-box {
| width: 100%;
| }
|
| .u-cell-title {
| padding: 30rpx 32rpx 10rpx 32rpx;
| font-size: 30rpx;
| text-align: left;
| color: $u-tips-color;
| }
|
| .u-cell-item-box {
| background-color: #FFFFFF;
| }
| </style>
|
|