zhangwei
2024-09-05 0c9b00f333f9baaffa9140fd1808a26e0af8416b
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
// 本文件由FirstUI授权予四川政采招投标咨询有限公司(会员ID:1  63,营业执照号:9 1    51 0 131 33 20 06 1 93     K)专用,请尊重知识产权,勿私下传播,违者追究法律责任。
// #ifdef APP-NVUE
//BindingX实现滑动比较流畅(已实现),缺点不好实时更新数据,暂时废弃
// const BindingX = uni.requireNativePlugin('bindingx');
const animation = uni.requireNativePlugin('animation');
export default {
    data() {
        return {
            isRight: false,
            isAndroid: false
        }
    },
    watch: {
        value(val) {
            this.initData(val)
        },
        endValue(val) {
            if (this.section) {
                this.initEndData(val)
            }
        },
        isRight(val) {
            if (!val) {
                this.$nextTick(() => {
                    setTimeout(() => {
                        this.handleRight = this.getEl(this.$refs['handleRight'])
                    }, 50)
                })
            }
        }
    },
    created() {
        const res = uni.getSystemInfoSync();
        this.isAndroid = res.platform.toLocaleLowerCase() == "android"
        this.startX = 0
        this.endX = 0
        this.lastLeft = 0
        this.onceLeft = 0
        this.lastRight = 0
        this.onceRight = 0
    },
    mounted() {
        this.$nextTick(() => {
            setTimeout(() => {
                this.handleLeft = this.getEl(this.$refs['handleLeft'])
                this.poleLeft = this.getEl(this.$refs['poleLeft']);
                this.handleRight = null;
                this.poleRight = null;
                this.initData(this.value)
                if (this.section) {
                    this.handleRight = this.getEl(this.$refs['handleRight'])
                    this.poleRight = this.getEl(this.$refs['poleRight']);
                    this.initEndData(this.endValue)
                }
            }, 50)
        })
    },
    methods: {
        getEl(el) {
            return el.ref;
        },
        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;
        },
        _animation(move, trans, isRight) {
            animation.transition(
                isRight ? this.handleRight : this.handleLeft, {
                    styles: {
                        transform: move
                    },
                    duration: 0,
                    timingFunction: 'linear',
                    needLayout: false,
                    delay: 0
                });
            animation.transition(
                isRight ? this.poleRight : this.poleLeft, {
                    styles: {
                        transform: trans
                    },
                    duration: 0,
                    timingFunction: 'linear',
                    needLayout: false,
                    delay: 0
                });
        },
        touchstart(e) {
            if (this.disabled) return;
            let touch = e.touches[0] || e.changedTouches[0];
            this.startX = touch.screenX
        },
        endTouchstart(e) {
            if (this.disabled) return;
            let touch = e.touches[0] || e.changedTouches[0];
            this.endX = touch.screenX
        },
        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);
            const min = Number(this.min)
            const max = Number(this.max)
            if (this.section) {
                value = value > this.end ? this.end : value;
            }
            this.changeValue(value, true, isEnd)
            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._animation(`translateX(${width}px)`, `translateX(-${Number(this.width)-width}px)`, false)
            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._animation(`translateX(-${width}px)`, `translateX(${Number(this.width)-width}px)`, true)
        },
        touchmove(e) {
            if (this.disabled) return;
            let touch = e.changedTouches[0];
            let pageX = touch.screenX;
            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.changedTouches[0];
            let pageX = touch.screenX;
            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)
            }
        },
        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)
            }
        }
    }
}
 
// #endif
 
// #ifndef APP-NVUE
export default {}
// #endif