-
zhangwei
2025-03-06 02ad32582e3a3b0e6f4b2d1b50593eff1d0558e3
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
168
169
170
// 本文件由FirstUI授权予四川政采招投标咨询有限公司(会员ID: 1 63,营业执照号:  91   5   1013 13 320061  9     3K)专用,请尊重知识产权,勿私下传播,违者追究法律责任。
// #ifndef APP-PLUS || MP-WEIXIN || H5
 
export default {
    watch: {
        value(val) {
            this.initData(val)
        },
        endValue(val) {
            if (this.section) {
                this.initEndData(val)
            }
        }
    },
    data() {
        return {
            drag: false,
            startX: 0,
            endX: 0,
            lastLeft: 0,
            onceLeft: 0,
            lastRight: 0,
            onceRight: 0,
            moveLeft: 'translate3d(0,0,0)',
            transLeft: 'translate3d(-100%, 0, 0)',
            moveRight: 'translate3d(0,0,0)',
            transRight: 'translate3d(100%, 0, 0)',
            isRight: false
        }
    },
    mounted() {
        this.$nextTick(()=>{
            this.initData(this.value)
            if (this.section) {
                this.initEndData(this.endValue)
            }
        })
    },
    methods: {
        initData(value) {
            this.startX = 0;
            this.lastLeft = 0;
            this.styleChange(Number(value), true)
        },
        initEndData(value) {
            this.endX = 0;
            this.lastRight = 0;
            value = Number(this.max) - Number(value) + Number(this.min)
            this.styleSectionChange(value, true)
        },
        format(value) {
            value = Number(value)
            let step = Number(this.step)
            return Math.round(Math.max(Number(this.min), Math.min(value, Number(this.max))) / step) * step;
        },
        touchstart(e) {
            let touch = e.touches[0] || e.changedTouches[0];
            this.startX = touch.clientX
        },
        endTouchstart(e) {
            let touch = e.touches[0] || e.changedTouches[0];
            this.endX = touch.clientX
        },
        changeValue(value, isStart, isEnd) {
            var params = {
                value: value,
                isStart: isStart
            }
            if (isEnd) {
                this.change(params)
            } else {
                this.changing(params)
            }
        },
        styleChange(value, isEnd) {
            value = this.format(value);
            if (this.section) {
                value = value > this.end ? this.end : value;
            }
            this.changeValue(value, true, isEnd)
            const min = Number(this.min)
            const max = Number(this.max)
            var dvalue = max - min;
            var maxWidth = Number(this.width) - Number(this.blockWidth);
            var width = (value - min) / dvalue * maxWidth;
            this.lastLeft = width
            if (isEnd) {
                this.onceLeft = width
            }
            this.transLeft = `translate3d(-${Number(this.width)-width}px,0,0)`
            this.moveLeft = `translate3d(${width}px,0,0)`
            this.isRight = value === max
        },
        styleSectionChange(value, isEnd) {
            value = this.format(value);
            const min = Number(this.min)
            const max = Number(this.max)
            var total = max + min;
            var val = total - value;
            val = val < this.start ? this.start : val;
            value = total - val;
            this.changeValue(val, false, isEnd)
            var dvalue = max - min;
            var maxWidth = Number(this.width) - Number(this.blockWidth);
            var width = (value - min) / dvalue * maxWidth;
            this.lastRight = width
            if (isEnd) {
                this.onceRight = width
            }
            this.transRight = `translate3d(${Number(this.width)-width}px,0,0)`
            this.moveRight = `translate3d(-${width}px,0,0)`
        },
        touchmove(e) {
            if (this.disabled) return;
            let touch = e.touches[0] || e.changedTouches[0];
            let pageX = touch.clientX;
            this.drag = true
            let left = pageX - this.startX + (this.onceLeft || 0);
            left = left < 0 ? 0 : left;
            let maxWidth = Number(this.width) - Number(this.blockWidth);
            left = left >= maxWidth ? maxWidth : left;
            let dvalue = Number(this.max) - Number(this.min);
            let value = (left / maxWidth) * dvalue + Number(this.min);
            // this.startX = pageX
            this.lastLeft = left
            this.styleChange(value, false)
        },
        endTouchmove(e) {
            if (this.disabled) return;
            let touch = e.touches[0] || e.changedTouches[0];
            let pageX = touch.clientX;
            this.drag = true
            let left = this.endX - pageX + (this.onceRight || 0);
            left = left < 0 ? 0 : left;
            let maxWidth = Number(this.width) - Number(this.blockWidth);
            left = left >= maxWidth ? maxWidth : left;
            let dvalue = Number(this.max) - Number(this.min);
            let value = (left / maxWidth) * dvalue + Number(this.min);
            // this.endX = pageX
            this.lastRight = left
            this.styleSectionChange(value, false)
        },
        touchend(e) {
            if (this.disabled) return;
            if (this.drag) {
                let maxWidth = Number(this.width) - Number(this.blockWidth);
                let dvalue = Number(this.max) - Number(this.min);
                let value = (this.lastLeft / maxWidth) * dvalue + Number(this.min);
                this.styleChange(value, true)
                this.drag = false
            }
        },
        endTouchend(e) {
            if (this.disabled) return;
            if (this.drag) {
                let maxWidth = Number(this.width) - Number(this.blockWidth);
                let dvalue = Number(this.max) - Number(this.min);
                let value = (this.lastRight / maxWidth) * dvalue + Number(this.min);
                this.styleSectionChange(value, true)
                this.drag = false
            }
        }
    }
}
 
// #endif
 
// #ifdef APP-PLUS|| MP-WEIXIN || H5
export default {}
// #endif