mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
build: compile 1.8.4
This commit is contained in:
parent
8be5c5694f
commit
6f85ec453e
21
dist/field/index.js
vendored
21
dist/field/index.js
vendored
@ -36,6 +36,10 @@ VantComponent({
|
|||||||
type: Boolean,
|
type: Boolean,
|
||||||
observer: 'setShowClear',
|
observer: 'setShowClear',
|
||||||
},
|
},
|
||||||
|
clearTrigger: {
|
||||||
|
type: String,
|
||||||
|
value: 'focus',
|
||||||
|
},
|
||||||
border: {
|
border: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
value: true,
|
value: true,
|
||||||
@ -44,6 +48,10 @@ VantComponent({
|
|||||||
type: String,
|
type: String,
|
||||||
value: '6.2em',
|
value: '6.2em',
|
||||||
},
|
},
|
||||||
|
clearIcon: {
|
||||||
|
type: String,
|
||||||
|
value: 'clear',
|
||||||
|
},
|
||||||
}
|
}
|
||||||
),
|
),
|
||||||
data: {
|
data: {
|
||||||
@ -115,11 +123,16 @@ VantComponent({
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
setShowClear() {
|
setShowClear() {
|
||||||
const { clearable, readonly } = this.data;
|
const { clearable, readonly, clearTrigger } = this.data;
|
||||||
const { focused, value } = this;
|
const { focused, value } = this;
|
||||||
this.setData({
|
let showClear = false;
|
||||||
showClear: !!clearable && !!focused && !!value && !readonly,
|
if (clearable && !readonly) {
|
||||||
});
|
const hasValue = !!value;
|
||||||
|
const trigger =
|
||||||
|
clearTrigger === 'always' || (clearTrigger === 'focus' && focused);
|
||||||
|
showClear = hasValue && trigger;
|
||||||
|
}
|
||||||
|
this.setData({ showClear });
|
||||||
},
|
},
|
||||||
noop() {},
|
noop() {},
|
||||||
},
|
},
|
||||||
|
2
dist/field/index.wxml
vendored
2
dist/field/index.wxml
vendored
@ -29,7 +29,7 @@
|
|||||||
|
|
||||||
<van-icon
|
<van-icon
|
||||||
wx:if="{{ showClear }}"
|
wx:if="{{ showClear }}"
|
||||||
name="clear"
|
name="{{ clearIcon }}"
|
||||||
class="van-field__clear-root van-field__icon-root"
|
class="van-field__clear-root van-field__icon-root"
|
||||||
catch:touchstart="onClear"
|
catch:touchstart="onClear"
|
||||||
/>
|
/>
|
||||||
|
4
dist/mixins/page-scroll.js
vendored
4
dist/mixins/page-scroll.js
vendored
@ -1,4 +1,4 @@
|
|||||||
import { getCurrentPage } from '../common/utils';
|
import { getCurrentPage, isDef } from '../common/utils';
|
||||||
function onPageScroll(event) {
|
function onPageScroll(event) {
|
||||||
const { vanPageScroller = [] } = getCurrentPage();
|
const { vanPageScroller = [] } = getCurrentPage();
|
||||||
vanPageScroller.forEach((scroller) => {
|
vanPageScroller.forEach((scroller) => {
|
||||||
@ -25,9 +25,11 @@ export const pageScrollMixin = (scroller) =>
|
|||||||
detached() {
|
detached() {
|
||||||
var _a;
|
var _a;
|
||||||
const page = getCurrentPage();
|
const page = getCurrentPage();
|
||||||
|
if (!isDef(page)) {
|
||||||
page.vanPageScroller =
|
page.vanPageScroller =
|
||||||
((_a = page.vanPageScroller) === null || _a === void 0
|
((_a = page.vanPageScroller) === null || _a === void 0
|
||||||
? void 0
|
? void 0
|
||||||
: _a.filter((item) => item !== scroller)) || [];
|
: _a.filter((item) => item !== scroller)) || [];
|
||||||
|
}
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
8
dist/search/index.js
vendored
8
dist/search/index.js
vendored
@ -41,6 +41,14 @@ VantComponent({
|
|||||||
type: Boolean,
|
type: Boolean,
|
||||||
value: true,
|
value: true,
|
||||||
},
|
},
|
||||||
|
clearTrigger: {
|
||||||
|
type: String,
|
||||||
|
value: 'focus',
|
||||||
|
},
|
||||||
|
clearIcon: {
|
||||||
|
type: String,
|
||||||
|
value: 'clear',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
onChange(event) {
|
onChange(event) {
|
||||||
|
2
dist/search/index.wxml
vendored
2
dist/search/index.wxml
vendored
@ -21,6 +21,8 @@
|
|||||||
disabled="{{ disabled }}"
|
disabled="{{ disabled }}"
|
||||||
readonly="{{ readonly }}"
|
readonly="{{ readonly }}"
|
||||||
clearable="{{ clearable }}"
|
clearable="{{ clearable }}"
|
||||||
|
clear-trigger="{{ clearTrigger }}"
|
||||||
|
clear-icon="{{ clearIcon }}"
|
||||||
maxlength="{{ maxlength }}"
|
maxlength="{{ maxlength }}"
|
||||||
input-align="{{ inputAlign }}"
|
input-align="{{ inputAlign }}"
|
||||||
input-class="input-class"
|
input-class="input-class"
|
||||||
|
59
dist/slider/index.js
vendored
59
dist/slider/index.js
vendored
@ -5,6 +5,7 @@ import { getRect } from '../common/utils';
|
|||||||
VantComponent({
|
VantComponent({
|
||||||
mixins: [touch],
|
mixins: [touch],
|
||||||
props: {
|
props: {
|
||||||
|
range: Boolean,
|
||||||
disabled: Boolean,
|
disabled: Boolean,
|
||||||
useButtonSlot: Boolean,
|
useButtonSlot: Boolean,
|
||||||
activeColor: String,
|
activeColor: String,
|
||||||
@ -24,6 +25,7 @@ VantComponent({
|
|||||||
value: {
|
value: {
|
||||||
type: Number,
|
type: Number,
|
||||||
value: 0,
|
value: 0,
|
||||||
|
optionalTypes: [Array],
|
||||||
observer(val) {
|
observer(val) {
|
||||||
if (val !== this.value) {
|
if (val !== this.value) {
|
||||||
this.updateValue(val);
|
this.updateValue(val);
|
||||||
@ -38,8 +40,18 @@ VantComponent({
|
|||||||
methods: {
|
methods: {
|
||||||
onTouchStart(event) {
|
onTouchStart(event) {
|
||||||
if (this.data.disabled) return;
|
if (this.data.disabled) return;
|
||||||
|
const { index } = event.currentTarget.dataset;
|
||||||
|
if (typeof index === 'number') {
|
||||||
|
this.buttonIndex = index;
|
||||||
|
}
|
||||||
this.touchStart(event);
|
this.touchStart(event);
|
||||||
this.startValue = this.format(this.value);
|
this.startValue = this.format(this.value);
|
||||||
|
this.newValue = this.value;
|
||||||
|
if (this.isRange(this.newValue)) {
|
||||||
|
this.startValue = this.newValue.map((val) => this.format(val));
|
||||||
|
} else {
|
||||||
|
this.startValue = this.format(this.newValue);
|
||||||
|
}
|
||||||
this.dragStatus = 'start';
|
this.dragStatus = 'start';
|
||||||
},
|
},
|
||||||
onTouchMove(event) {
|
onTouchMove(event) {
|
||||||
@ -51,7 +63,12 @@ VantComponent({
|
|||||||
this.dragStatus = 'draging';
|
this.dragStatus = 'draging';
|
||||||
getRect(this, '.van-slider').then((rect) => {
|
getRect(this, '.van-slider').then((rect) => {
|
||||||
const diff = (this.deltaX / rect.width) * this.getRange();
|
const diff = (this.deltaX / rect.width) * this.getRange();
|
||||||
|
if (this.isRange(this.startValue)) {
|
||||||
|
this.newValue[this.buttonIndex] =
|
||||||
|
this.startValue[this.buttonIndex] + diff;
|
||||||
|
} else {
|
||||||
this.newValue = this.startValue + diff;
|
this.newValue = this.startValue + diff;
|
||||||
|
}
|
||||||
this.updateValue(this.newValue, false, true);
|
this.updateValue(this.newValue, false, true);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
@ -68,17 +85,40 @@ VantComponent({
|
|||||||
getRect(this, '.van-slider').then((rect) => {
|
getRect(this, '.van-slider').then((rect) => {
|
||||||
const value =
|
const value =
|
||||||
((event.detail.x - rect.left) / rect.width) * this.getRange() + min;
|
((event.detail.x - rect.left) / rect.width) * this.getRange() + min;
|
||||||
|
if (this.isRange(this.value)) {
|
||||||
|
const [left, right] = this.value;
|
||||||
|
const middle = (left + right) / 2;
|
||||||
|
if (value <= middle) {
|
||||||
|
this.updateValue([value, right], true);
|
||||||
|
} else {
|
||||||
|
this.updateValue([left, value], true);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
this.updateValue(value, true);
|
this.updateValue(value, true);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
isRange(val) {
|
||||||
|
const { range } = this.data;
|
||||||
|
return range && Array.isArray(val);
|
||||||
|
},
|
||||||
|
handleOverlap(value) {
|
||||||
|
if (value[0] > value[1]) {
|
||||||
|
return value.slice(0).reverse();
|
||||||
|
}
|
||||||
|
return value;
|
||||||
|
},
|
||||||
updateValue(value, end, drag) {
|
updateValue(value, end, drag) {
|
||||||
|
if (this.isRange(value)) {
|
||||||
|
value = this.handleOverlap(value).map((val) => this.format(val));
|
||||||
|
} else {
|
||||||
value = this.format(value);
|
value = this.format(value);
|
||||||
const { min } = this.data;
|
}
|
||||||
const width = `${((value - min) * 100) / this.getRange()}%`;
|
|
||||||
this.value = value;
|
this.value = value;
|
||||||
this.setData({
|
this.setData({
|
||||||
barStyle: `
|
barStyle: `
|
||||||
width: ${width};
|
width: ${this.calcMainAxis()};
|
||||||
|
left: ${this.isRange(value) ? `${value[0]}%` : 0};
|
||||||
${drag ? 'transition: none;' : ''}
|
${drag ? 'transition: none;' : ''}
|
||||||
`,
|
`,
|
||||||
});
|
});
|
||||||
@ -92,10 +132,23 @@ VantComponent({
|
|||||||
this.setData({ value });
|
this.setData({ value });
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
getScope() {
|
||||||
|
return Number(this.data.max) - Number(this.data.min);
|
||||||
|
},
|
||||||
getRange() {
|
getRange() {
|
||||||
const { max, min } = this.data;
|
const { max, min } = this.data;
|
||||||
return max - min;
|
return max - min;
|
||||||
},
|
},
|
||||||
|
// 计算选中条的长度百分比
|
||||||
|
calcMainAxis() {
|
||||||
|
const { value } = this;
|
||||||
|
const { min } = this.data;
|
||||||
|
const scope = this.getScope();
|
||||||
|
if (this.isRange(value)) {
|
||||||
|
return `${((value[1] - value[0]) * 100) / scope}%`;
|
||||||
|
}
|
||||||
|
return `${((value - Number(min)) * 100) / scope}%`;
|
||||||
|
},
|
||||||
format(value) {
|
format(value) {
|
||||||
const { max, min, step } = this.data;
|
const { max, min, step } = this.data;
|
||||||
return Math.round(Math.max(min, Math.min(value, max)) / step) * step;
|
return Math.round(Math.max(min, Math.min(value, max)) / step) * step;
|
||||||
|
38
dist/slider/index.wxml
vendored
38
dist/slider/index.wxml
vendored
@ -11,6 +11,44 @@
|
|||||||
style="{{ barStyle }}; {{ style({ backgroundColor: activeColor }) }}"
|
style="{{ barStyle }}; {{ style({ backgroundColor: activeColor }) }}"
|
||||||
>
|
>
|
||||||
<view
|
<view
|
||||||
|
wx:if="{{ range }}"
|
||||||
|
class="{{ utils.bem('slider__button-wrapper-left') }}"
|
||||||
|
data-index="{{ 0 }}"
|
||||||
|
bind:touchstart="onTouchStart"
|
||||||
|
catch:touchmove="onTouchMove"
|
||||||
|
bind:touchend="onTouchEnd"
|
||||||
|
bind:touchcancel="onTouchEnd"
|
||||||
|
>
|
||||||
|
<slot
|
||||||
|
wx:if="{{ useButtonSlot }}"
|
||||||
|
name="left-button"
|
||||||
|
/>
|
||||||
|
<view
|
||||||
|
wx:else
|
||||||
|
class="{{ utils.bem('slider__button') }}"
|
||||||
|
/>
|
||||||
|
</view>
|
||||||
|
<view
|
||||||
|
wx:if="{{ range }}"
|
||||||
|
class="{{ utils.bem('slider__button-wrapper-right') }}"
|
||||||
|
data-index="{{ 1 }}"
|
||||||
|
bind:touchstart="onTouchStart"
|
||||||
|
catch:touchmove="onTouchMove"
|
||||||
|
bind:touchend="onTouchEnd"
|
||||||
|
bind:touchcancel="onTouchEnd"
|
||||||
|
>
|
||||||
|
<slot
|
||||||
|
wx:if="{{ useButtonSlot }}"
|
||||||
|
name="right-button"
|
||||||
|
/>
|
||||||
|
<view
|
||||||
|
wx:else
|
||||||
|
class="{{ utils.bem('slider__button') }}"
|
||||||
|
/>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<view
|
||||||
|
wx:if="{{ !range }}"
|
||||||
class="{{ utils.bem('slider__button-wrapper') }}"
|
class="{{ utils.bem('slider__button-wrapper') }}"
|
||||||
bind:touchstart="onTouchStart"
|
bind:touchstart="onTouchStart"
|
||||||
catch:touchmove="onTouchMove"
|
catch:touchmove="onTouchMove"
|
||||||
|
2
dist/slider/index.wxss
vendored
2
dist/slider/index.wxss
vendored
@ -1 +1 @@
|
|||||||
@import '../common/index.wxss';.van-slider{position:relative;height:2px;height:var(--slider-bar-height,2px);border-radius:999px;border-radius:var(--border-radius-max,999px);background-color:#ebedf0;background-color:var(--slider-inactive-background-color,#ebedf0)}.van-slider:before{position:absolute;right:0;left:0;content:"";top:-8px;top:-var(--padding-xs,8px);bottom:-8px;bottom:-var(--padding-xs,8px)}.van-slider__bar{position:relative;width:100%;height:100%;background-color:#1989fa;background-color:var(--slider-active-background-color,#1989fa);border-radius:inherit;transition:all .2s;transition:all var(--animation-duration-fast,.2s)}.van-slider__button{width:24px;width:var(--slider-button-width,24px);height:24px;height:var(--slider-button-height,24px);border-radius:50%;border-radius:var(--slider-button-border-radius,50%);box-shadow:0 1px 2px rgba(0,0,0,.5);box-shadow:var(--slider-button-box-shadow,0 1px 2px rgba(0,0,0,.5));background-color:#fff;background-color:var(--slider-button-background-color,#fff)}.van-slider__button-wrapper{position:absolute;top:50%;right:0;transform:translate3d(50%,-50%,0)}.van-slider--disabled{opacity:.5;opacity:var(--slider-disabled-opacity,.5)}
|
@import '../common/index.wxss';.van-slider{position:relative;height:2px;height:var(--slider-bar-height,2px);border-radius:999px;border-radius:var(--border-radius-max,999px);background-color:#ebedf0;background-color:var(--slider-inactive-background-color,#ebedf0)}.van-slider:before{position:absolute;right:0;left:0;content:"";top:-8px;top:-var(--padding-xs,8px);bottom:-8px;bottom:-var(--padding-xs,8px)}.van-slider__bar{position:relative;width:100%;height:100%;background-color:#1989fa;background-color:var(--slider-active-background-color,#1989fa);border-radius:inherit;transition:all .2s;transition:all var(--animation-duration-fast,.2s)}.van-slider__button{width:24px;width:var(--slider-button-width,24px);height:24px;height:var(--slider-button-height,24px);border-radius:50%;border-radius:var(--slider-button-border-radius,50%);box-shadow:0 1px 2px rgba(0,0,0,.5);box-shadow:var(--slider-button-box-shadow,0 1px 2px rgba(0,0,0,.5));background-color:#fff;background-color:var(--slider-button-background-color,#fff)}.van-slider__button-wrapper,.van-slider__button-wrapper-right{position:absolute;top:50%;right:0;transform:translate3d(50%,-50%,0)}.van-slider__button-wrapper-left{position:absolute;top:50%;left:0;transform:translate3d(-50%,-50%,0)}.van-slider--disabled{opacity:.5;opacity:var(--slider-disabled-opacity,.5)}
|
@ -53,6 +53,10 @@ component_1.VantComponent({
|
|||||||
type: Boolean,
|
type: Boolean,
|
||||||
observer: 'setShowClear',
|
observer: 'setShowClear',
|
||||||
},
|
},
|
||||||
|
clearTrigger: {
|
||||||
|
type: String,
|
||||||
|
value: 'focus',
|
||||||
|
},
|
||||||
border: {
|
border: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
value: true,
|
value: true,
|
||||||
@ -61,6 +65,10 @@ component_1.VantComponent({
|
|||||||
type: String,
|
type: String,
|
||||||
value: '6.2em',
|
value: '6.2em',
|
||||||
},
|
},
|
||||||
|
clearIcon: {
|
||||||
|
type: String,
|
||||||
|
value: 'clear',
|
||||||
|
},
|
||||||
}
|
}
|
||||||
),
|
),
|
||||||
data: {
|
data: {
|
||||||
@ -138,13 +146,19 @@ component_1.VantComponent({
|
|||||||
setShowClear: function () {
|
setShowClear: function () {
|
||||||
var _a = this.data,
|
var _a = this.data,
|
||||||
clearable = _a.clearable,
|
clearable = _a.clearable,
|
||||||
readonly = _a.readonly;
|
readonly = _a.readonly,
|
||||||
|
clearTrigger = _a.clearTrigger;
|
||||||
var _b = this,
|
var _b = this,
|
||||||
focused = _b.focused,
|
focused = _b.focused,
|
||||||
value = _b.value;
|
value = _b.value;
|
||||||
this.setData({
|
var showClear = false;
|
||||||
showClear: !!clearable && !!focused && !!value && !readonly,
|
if (clearable && !readonly) {
|
||||||
});
|
var hasValue = !!value;
|
||||||
|
var trigger =
|
||||||
|
clearTrigger === 'always' || (clearTrigger === 'focus' && focused);
|
||||||
|
showClear = hasValue && trigger;
|
||||||
|
}
|
||||||
|
this.setData({ showClear: showClear });
|
||||||
},
|
},
|
||||||
noop: function () {},
|
noop: function () {},
|
||||||
},
|
},
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
|
|
||||||
<van-icon
|
<van-icon
|
||||||
wx:if="{{ showClear }}"
|
wx:if="{{ showClear }}"
|
||||||
name="clear"
|
name="{{ clearIcon }}"
|
||||||
class="van-field__clear-root van-field__icon-root"
|
class="van-field__clear-root van-field__icon-root"
|
||||||
catch:touchstart="onClear"
|
catch:touchstart="onClear"
|
||||||
/>
|
/>
|
||||||
|
@ -29,12 +29,14 @@ var pageScrollMixin = function (scroller) {
|
|||||||
detached: function () {
|
detached: function () {
|
||||||
var _a;
|
var _a;
|
||||||
var page = utils_1.getCurrentPage();
|
var page = utils_1.getCurrentPage();
|
||||||
|
if (!utils_1.isDef(page)) {
|
||||||
page.vanPageScroller =
|
page.vanPageScroller =
|
||||||
((_a = page.vanPageScroller) === null || _a === void 0
|
((_a = page.vanPageScroller) === null || _a === void 0
|
||||||
? void 0
|
? void 0
|
||||||
: _a.filter(function (item) {
|
: _a.filter(function (item) {
|
||||||
return item !== scroller;
|
return item !== scroller;
|
||||||
})) || [];
|
})) || [];
|
||||||
|
}
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
@ -43,6 +43,14 @@ component_1.VantComponent({
|
|||||||
type: Boolean,
|
type: Boolean,
|
||||||
value: true,
|
value: true,
|
||||||
},
|
},
|
||||||
|
clearTrigger: {
|
||||||
|
type: String,
|
||||||
|
value: 'focus',
|
||||||
|
},
|
||||||
|
clearIcon: {
|
||||||
|
type: String,
|
||||||
|
value: 'clear',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
onChange: function (event) {
|
onChange: function (event) {
|
||||||
|
@ -21,6 +21,8 @@
|
|||||||
disabled="{{ disabled }}"
|
disabled="{{ disabled }}"
|
||||||
readonly="{{ readonly }}"
|
readonly="{{ readonly }}"
|
||||||
clearable="{{ clearable }}"
|
clearable="{{ clearable }}"
|
||||||
|
clear-trigger="{{ clearTrigger }}"
|
||||||
|
clear-icon="{{ clearIcon }}"
|
||||||
maxlength="{{ maxlength }}"
|
maxlength="{{ maxlength }}"
|
||||||
input-align="{{ inputAlign }}"
|
input-align="{{ inputAlign }}"
|
||||||
input-class="input-class"
|
input-class="input-class"
|
||||||
|
@ -7,6 +7,7 @@ var utils_1 = require('../common/utils');
|
|||||||
component_1.VantComponent({
|
component_1.VantComponent({
|
||||||
mixins: [touch_1.touch],
|
mixins: [touch_1.touch],
|
||||||
props: {
|
props: {
|
||||||
|
range: Boolean,
|
||||||
disabled: Boolean,
|
disabled: Boolean,
|
||||||
useButtonSlot: Boolean,
|
useButtonSlot: Boolean,
|
||||||
activeColor: String,
|
activeColor: String,
|
||||||
@ -26,6 +27,7 @@ component_1.VantComponent({
|
|||||||
value: {
|
value: {
|
||||||
type: Number,
|
type: Number,
|
||||||
value: 0,
|
value: 0,
|
||||||
|
optionalTypes: [Array],
|
||||||
observer: function (val) {
|
observer: function (val) {
|
||||||
if (val !== this.value) {
|
if (val !== this.value) {
|
||||||
this.updateValue(val);
|
this.updateValue(val);
|
||||||
@ -39,9 +41,22 @@ component_1.VantComponent({
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
onTouchStart: function (event) {
|
onTouchStart: function (event) {
|
||||||
|
var _this = this;
|
||||||
if (this.data.disabled) return;
|
if (this.data.disabled) return;
|
||||||
|
var index = event.currentTarget.dataset.index;
|
||||||
|
if (typeof index === 'number') {
|
||||||
|
this.buttonIndex = index;
|
||||||
|
}
|
||||||
this.touchStart(event);
|
this.touchStart(event);
|
||||||
this.startValue = this.format(this.value);
|
this.startValue = this.format(this.value);
|
||||||
|
this.newValue = this.value;
|
||||||
|
if (this.isRange(this.newValue)) {
|
||||||
|
this.startValue = this.newValue.map(function (val) {
|
||||||
|
return _this.format(val);
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
this.startValue = this.format(this.newValue);
|
||||||
|
}
|
||||||
this.dragStatus = 'start';
|
this.dragStatus = 'start';
|
||||||
},
|
},
|
||||||
onTouchMove: function (event) {
|
onTouchMove: function (event) {
|
||||||
@ -54,7 +69,12 @@ component_1.VantComponent({
|
|||||||
this.dragStatus = 'draging';
|
this.dragStatus = 'draging';
|
||||||
utils_1.getRect(this, '.van-slider').then(function (rect) {
|
utils_1.getRect(this, '.van-slider').then(function (rect) {
|
||||||
var diff = (_this.deltaX / rect.width) * _this.getRange();
|
var diff = (_this.deltaX / rect.width) * _this.getRange();
|
||||||
|
if (_this.isRange(_this.startValue)) {
|
||||||
|
_this.newValue[_this.buttonIndex] =
|
||||||
|
_this.startValue[_this.buttonIndex] + diff;
|
||||||
|
} else {
|
||||||
_this.newValue = _this.startValue + diff;
|
_this.newValue = _this.startValue + diff;
|
||||||
|
}
|
||||||
_this.updateValue(_this.newValue, false, true);
|
_this.updateValue(_this.newValue, false, true);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
@ -72,18 +92,47 @@ component_1.VantComponent({
|
|||||||
utils_1.getRect(this, '.van-slider').then(function (rect) {
|
utils_1.getRect(this, '.van-slider').then(function (rect) {
|
||||||
var value =
|
var value =
|
||||||
((event.detail.x - rect.left) / rect.width) * _this.getRange() + min;
|
((event.detail.x - rect.left) / rect.width) * _this.getRange() + min;
|
||||||
|
if (_this.isRange(_this.value)) {
|
||||||
|
var _a = _this.value,
|
||||||
|
left = _a[0],
|
||||||
|
right = _a[1];
|
||||||
|
var middle = (left + right) / 2;
|
||||||
|
if (value <= middle) {
|
||||||
|
_this.updateValue([value, right], true);
|
||||||
|
} else {
|
||||||
|
_this.updateValue([left, value], true);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
_this.updateValue(value, true);
|
_this.updateValue(value, true);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
isRange: function (val) {
|
||||||
|
var range = this.data.range;
|
||||||
|
return range && Array.isArray(val);
|
||||||
|
},
|
||||||
|
handleOverlap: function (value) {
|
||||||
|
if (value[0] > value[1]) {
|
||||||
|
return value.slice(0).reverse();
|
||||||
|
}
|
||||||
|
return value;
|
||||||
|
},
|
||||||
updateValue: function (value, end, drag) {
|
updateValue: function (value, end, drag) {
|
||||||
|
var _this = this;
|
||||||
|
if (this.isRange(value)) {
|
||||||
|
value = this.handleOverlap(value).map(function (val) {
|
||||||
|
return _this.format(val);
|
||||||
|
});
|
||||||
|
} else {
|
||||||
value = this.format(value);
|
value = this.format(value);
|
||||||
var min = this.data.min;
|
}
|
||||||
var width = ((value - min) * 100) / this.getRange() + '%';
|
|
||||||
this.value = value;
|
this.value = value;
|
||||||
this.setData({
|
this.setData({
|
||||||
barStyle:
|
barStyle:
|
||||||
'\n width: ' +
|
'\n width: ' +
|
||||||
width +
|
this.calcMainAxis() +
|
||||||
|
';\n left: ' +
|
||||||
|
(this.isRange(value) ? value[0] + '%' : 0) +
|
||||||
';\n ' +
|
';\n ' +
|
||||||
(drag ? 'transition: none;' : '') +
|
(drag ? 'transition: none;' : '') +
|
||||||
'\n ',
|
'\n ',
|
||||||
@ -98,12 +147,25 @@ component_1.VantComponent({
|
|||||||
this.setData({ value: value });
|
this.setData({ value: value });
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
getScope: function () {
|
||||||
|
return Number(this.data.max) - Number(this.data.min);
|
||||||
|
},
|
||||||
getRange: function () {
|
getRange: function () {
|
||||||
var _a = this.data,
|
var _a = this.data,
|
||||||
max = _a.max,
|
max = _a.max,
|
||||||
min = _a.min;
|
min = _a.min;
|
||||||
return max - min;
|
return max - min;
|
||||||
},
|
},
|
||||||
|
// 计算选中条的长度百分比
|
||||||
|
calcMainAxis: function () {
|
||||||
|
var value = this.value;
|
||||||
|
var min = this.data.min;
|
||||||
|
var scope = this.getScope();
|
||||||
|
if (this.isRange(value)) {
|
||||||
|
return ((value[1] - value[0]) * 100) / scope + '%';
|
||||||
|
}
|
||||||
|
return ((value - Number(min)) * 100) / scope + '%';
|
||||||
|
},
|
||||||
format: function (value) {
|
format: function (value) {
|
||||||
var _a = this.data,
|
var _a = this.data,
|
||||||
max = _a.max,
|
max = _a.max,
|
||||||
|
@ -11,6 +11,44 @@
|
|||||||
style="{{ barStyle }}; {{ style({ backgroundColor: activeColor }) }}"
|
style="{{ barStyle }}; {{ style({ backgroundColor: activeColor }) }}"
|
||||||
>
|
>
|
||||||
<view
|
<view
|
||||||
|
wx:if="{{ range }}"
|
||||||
|
class="{{ utils.bem('slider__button-wrapper-left') }}"
|
||||||
|
data-index="{{ 0 }}"
|
||||||
|
bind:touchstart="onTouchStart"
|
||||||
|
catch:touchmove="onTouchMove"
|
||||||
|
bind:touchend="onTouchEnd"
|
||||||
|
bind:touchcancel="onTouchEnd"
|
||||||
|
>
|
||||||
|
<slot
|
||||||
|
wx:if="{{ useButtonSlot }}"
|
||||||
|
name="left-button"
|
||||||
|
/>
|
||||||
|
<view
|
||||||
|
wx:else
|
||||||
|
class="{{ utils.bem('slider__button') }}"
|
||||||
|
/>
|
||||||
|
</view>
|
||||||
|
<view
|
||||||
|
wx:if="{{ range }}"
|
||||||
|
class="{{ utils.bem('slider__button-wrapper-right') }}"
|
||||||
|
data-index="{{ 1 }}"
|
||||||
|
bind:touchstart="onTouchStart"
|
||||||
|
catch:touchmove="onTouchMove"
|
||||||
|
bind:touchend="onTouchEnd"
|
||||||
|
bind:touchcancel="onTouchEnd"
|
||||||
|
>
|
||||||
|
<slot
|
||||||
|
wx:if="{{ useButtonSlot }}"
|
||||||
|
name="right-button"
|
||||||
|
/>
|
||||||
|
<view
|
||||||
|
wx:else
|
||||||
|
class="{{ utils.bem('slider__button') }}"
|
||||||
|
/>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<view
|
||||||
|
wx:if="{{ !range }}"
|
||||||
class="{{ utils.bem('slider__button-wrapper') }}"
|
class="{{ utils.bem('slider__button-wrapper') }}"
|
||||||
bind:touchstart="onTouchStart"
|
bind:touchstart="onTouchStart"
|
||||||
catch:touchmove="onTouchMove"
|
catch:touchmove="onTouchMove"
|
||||||
|
@ -1 +1 @@
|
|||||||
@import '../common/index.wxss';.van-slider{position:relative;height:2px;height:var(--slider-bar-height,2px);border-radius:999px;border-radius:var(--border-radius-max,999px);background-color:#ebedf0;background-color:var(--slider-inactive-background-color,#ebedf0)}.van-slider:before{position:absolute;right:0;left:0;content:"";top:-8px;top:-var(--padding-xs,8px);bottom:-8px;bottom:-var(--padding-xs,8px)}.van-slider__bar{position:relative;width:100%;height:100%;background-color:#1989fa;background-color:var(--slider-active-background-color,#1989fa);border-radius:inherit;transition:all .2s;transition:all var(--animation-duration-fast,.2s)}.van-slider__button{width:24px;width:var(--slider-button-width,24px);height:24px;height:var(--slider-button-height,24px);border-radius:50%;border-radius:var(--slider-button-border-radius,50%);box-shadow:0 1px 2px rgba(0,0,0,.5);box-shadow:var(--slider-button-box-shadow,0 1px 2px rgba(0,0,0,.5));background-color:#fff;background-color:var(--slider-button-background-color,#fff)}.van-slider__button-wrapper{position:absolute;top:50%;right:0;transform:translate3d(50%,-50%,0)}.van-slider--disabled{opacity:.5;opacity:var(--slider-disabled-opacity,.5)}
|
@import '../common/index.wxss';.van-slider{position:relative;height:2px;height:var(--slider-bar-height,2px);border-radius:999px;border-radius:var(--border-radius-max,999px);background-color:#ebedf0;background-color:var(--slider-inactive-background-color,#ebedf0)}.van-slider:before{position:absolute;right:0;left:0;content:"";top:-8px;top:-var(--padding-xs,8px);bottom:-8px;bottom:-var(--padding-xs,8px)}.van-slider__bar{position:relative;width:100%;height:100%;background-color:#1989fa;background-color:var(--slider-active-background-color,#1989fa);border-radius:inherit;transition:all .2s;transition:all var(--animation-duration-fast,.2s)}.van-slider__button{width:24px;width:var(--slider-button-width,24px);height:24px;height:var(--slider-button-height,24px);border-radius:50%;border-radius:var(--slider-button-border-radius,50%);box-shadow:0 1px 2px rgba(0,0,0,.5);box-shadow:var(--slider-button-box-shadow,0 1px 2px rgba(0,0,0,.5));background-color:#fff;background-color:var(--slider-button-background-color,#fff)}.van-slider__button-wrapper,.van-slider__button-wrapper-right{position:absolute;top:50%;right:0;transform:translate3d(50%,-50%,0)}.van-slider__button-wrapper-left{position:absolute;top:50%;left:0;transform:translate3d(-50%,-50%,0)}.van-slider--disabled{opacity:.5;opacity:var(--slider-disabled-opacity,.5)}
|
Loading…
x
Reference in New Issue
Block a user