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
<template>
    <view class="segmented-control" :class="styleType" :style="wrapStyle">
        <view v-for="(item, index) in values" class="segmented-control-item" :class="styleType" :key="index" :style="index === currentIndex ? activeStyle : itemStyle" @click="onClick(index)">
            {{item}}
        </view>
    </view>
</template>
 
<script>
    export default {
        name: 'segmented-control',
        props: {
            current: {
                type: Number,
                default: 0
            },
            values: {
                type: Array,
                default () {
                    return [];
                }
            },
            activeColor: {
                type: String,
                default: '#007aff'
            },
            styleType: {
                type: String,
                default: 'button'
            }
        },
        data() {
            return {
                currentIndex: this.current
            }
        },
        watch: {
            current(val) {
                if (val !== this.currentIndex) {
                    this.currentIndex = val;
                }
            }
        },
        computed: {
            wrapStyle() {
                let styleString = '';
                switch (this.styleType) {
                    case 'text':
                        styleString = `border:0;`;
                        break;
                    default:
                        styleString = `border-color: ${this.activeColor}`;
                        break;
                }
                return styleString;
            },
            itemStyle() {
                let styleString = '';
                switch (this.styleType) {
                    case 'text':
                        styleString = `color:#000;border-left:0;`;
                        break;
                    default:
                        styleString = `color:${this.activeColor};border-color:${this.activeColor};`;
                        break;
                }
                return styleString;
            },
            activeStyle() {
                let styleString = '';
                switch (this.styleType) {
                    case 'text':
                        styleString = `color:${this.activeColor};border-left:0;border-bottom-style:solid;`;
                        break;
                    default:
                        styleString = `color:#fff;border-color:${this.activeColor};background-color:${this.activeColor}`;
                        break;
                }
                return styleString;
            }
        },
        methods: {
            onClick(index) {
                if (this.currentIndex !== index) {
                    this.currentIndex = index;
                    this.$emit('clickItem', index);
                }
            }
        },
    }
</script>
 
<style>
    .segmented-control {
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: 75%;
        font-size: 28upx;
        border-radius: 10upx;
        box-sizing: border-box;
        margin: 0 auto;
        overflow: hidden;
    }
 
    .segmented-control.button {
        border: 2upx solid;
    }
 
    .segmented-control.text {
        border: 0;
        border-radius: 0upx;
    }
 
 
    .segmented-control-item {
        flex: 1;
        text-align: center;
        line-height: 60upx;
        box-sizing: border-box;
    }
 
    .segmented-control-item.button {
        border-left: 1upx solid;
    }
 
    .segmented-control-item.text {
        border-left: 0;
    }
 
    .segmented-control-item:first-child {
        border-left-width: 0;
    }
</style>