吉福庄APP,基于若依原版开发
zhangmeng
2024-04-19 99af75c6c0bbc04e73fb71fd39ac41cabb89447c
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<template>
    <view class="uni-section">
        <view class="uni-section-header" @click="onClick">
                <view class="uni-section-header__decoration" v-if="type" :class="type" />
        <slot v-else name="decoration"></slot>
 
        <view class="uni-section-header__content">
          <text :style="{'font-size':titleFontSize,'color':titleColor}" class="uni-section__content-title" :class="{'distraction':!subTitle}">{{ title }}</text>
          <text v-if="subTitle" :style="{'font-size':subTitleFontSize,'color':subTitleColor}" class="uni-section-header__content-sub">{{ subTitle }}</text>
        </view>
 
        <view class="uni-section-header__slot-right">
          <slot name="right"></slot>
        </view>
        </view>
 
        <view class="uni-section-content" :style="{padding: _padding}">
            <slot />
        </view>
    </view>
</template>
 
<script>
 
    /**
     * Section 标题栏
     * @description 标题栏
     * @property {String} type = [line|circle|square] 标题装饰类型
     *     @value line 竖线
     *     @value circle 圆形
     *     @value square 正方形
     * @property {String} title 主标题
     * @property {String} titleFontSize 主标题字体大小
     * @property {String} titleColor 主标题字体颜色
     * @property {String} subTitle 副标题
     * @property {String} subTitleFontSize 副标题字体大小
     * @property {String} subTitleColor 副标题字体颜色
     * @property {String} padding 默认插槽 padding
     */
 
    export default {
        name: 'UniSection',
    emits:['click'],
        props: {
            type: {
                type: String,
                default: ''
            },
            title: {
                type: String,
                required: true,
                default: ''
            },
      titleFontSize: {
        type: String,
        default: '14px'
      },
            titleColor:{
                type: String,
                default: '#333'
            },
            subTitle: {
                type: String,
                default: ''
            },
      subTitleFontSize: {
        type: String,
        default: '12px'
      },
      subTitleColor: {
        type: String,
        default: '#999'
      },
            padding: {
                type: [Boolean, String],
                default: false
            }
        },
    computed:{
      _padding(){
        if(typeof this.padding === 'string'){
          return this.padding
        }
 
        return this.padding?'10px':''
      }
    },
        watch: {
            title(newVal) {
                if (uni.report && newVal !== '') {
                    uni.report('title', newVal)
                }
            }
        },
    methods: {
            onClick() {
                this.$emit('click')
            }
        }
    }
</script>
<style lang="scss" >
    $uni-primary: #2979ff !default;
 
    .uni-section {
        background-color: #fff;
    .uni-section-header {
      position: relative;
      /* #ifndef APP-NVUE */
      display: flex;
      /* #endif */
      flex-direction: row;
      align-items: center;
      padding: 12px 10px;
      font-weight: normal;
 
      &__decoration{
        margin-right: 6px;
        background-color: $uni-primary;
        &.line {
          width: 4px;
          height: 12px;
          border-radius: 10px;
        }
 
        &.circle {
          width: 8px;
          height: 8px;
          border-top-right-radius: 50px;
          border-top-left-radius: 50px;
          border-bottom-left-radius: 50px;
          border-bottom-right-radius: 50px;
        }
 
        &.square {
          width: 8px;
          height: 8px;
        }
      }
 
      &__content {
        /* #ifndef APP-NVUE */
        display: flex;
        /* #endif */
        flex-direction: column;
        flex: 1;
        color: #333;
 
        .distraction {
          flex-direction: row;
          align-items: center;
        }
        &-sub {
          margin-top: 2px;
        }
      }
 
      &__slot-right{
        font-size: 14px;
      }
    }
 
    .uni-section-content{
      font-size: 14px;
    }
    }
</style>