mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
build: compile 1.0.0-beta.6
This commit is contained in:
parent
40286a21d5
commit
d87c4a7c29
94
dist/dropdown-item/index.js
vendored
94
dist/dropdown-item/index.js
vendored
@ -6,19 +6,30 @@ VantComponent({
|
|||||||
type: 'ancestor',
|
type: 'ancestor',
|
||||||
linked(target) {
|
linked(target) {
|
||||||
this.parent = target;
|
this.parent = target;
|
||||||
|
this.updateDataFromParent();
|
||||||
},
|
},
|
||||||
unlinked() {
|
unlinked() {
|
||||||
this.parent = null;
|
this.parent = null;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
value: null,
|
value: {
|
||||||
title: String,
|
type: null,
|
||||||
|
observer: 'rerender'
|
||||||
|
},
|
||||||
|
title: {
|
||||||
|
type: String,
|
||||||
|
observer: 'rerender'
|
||||||
|
},
|
||||||
disabled: Boolean,
|
disabled: Boolean,
|
||||||
titleClass: String,
|
titleClass: {
|
||||||
|
type: String,
|
||||||
|
observer: 'rerender'
|
||||||
|
},
|
||||||
options: {
|
options: {
|
||||||
type: Array,
|
type: Array,
|
||||||
value: []
|
value: [],
|
||||||
|
observer: 'rerender'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
data: {
|
data: {
|
||||||
@ -27,44 +38,67 @@ VantComponent({
|
|||||||
showWrapper: false,
|
showWrapper: false,
|
||||||
displayTitle: ''
|
displayTitle: ''
|
||||||
},
|
},
|
||||||
created() {
|
|
||||||
this.setData({ displayTitle: this.computedDisplayTitle(this.data.value) });
|
|
||||||
},
|
|
||||||
methods: {
|
methods: {
|
||||||
computedDisplayTitle(curValue) {
|
rerender() {
|
||||||
const { title, options } = this.data;
|
wx.nextTick(() => {
|
||||||
if (title) {
|
this.parent && this.parent.updateItemListData();
|
||||||
return title;
|
});
|
||||||
|
},
|
||||||
|
updateDataFromParent() {
|
||||||
|
if (this.parent) {
|
||||||
|
const { overlay, duration, activeColor, closeOnClickOverlay, direction } = this.parent.data;
|
||||||
|
this.setData({
|
||||||
|
overlay,
|
||||||
|
duration,
|
||||||
|
activeColor,
|
||||||
|
closeOnClickOverlay,
|
||||||
|
direction
|
||||||
|
});
|
||||||
}
|
}
|
||||||
const match = options.filter(option => option.value === curValue);
|
|
||||||
const displayTitle = match.length ? match[0].text : '';
|
|
||||||
return displayTitle;
|
|
||||||
},
|
},
|
||||||
onClickOverlay() {
|
onClickOverlay() {
|
||||||
this.toggle();
|
this.toggle();
|
||||||
this.$emit('close');
|
this.$emit('close');
|
||||||
},
|
},
|
||||||
onOptionTap(event) {
|
onOptionTap(event) {
|
||||||
let { value, displayTitle } = this.data;
|
|
||||||
const { option } = event.currentTarget.dataset;
|
const { option } = event.currentTarget.dataset;
|
||||||
const { value: optionValue } = option;
|
const { value } = option;
|
||||||
if (optionValue !== value) {
|
const shouldEmitChange = this.data.value !== value;
|
||||||
value = optionValue;
|
this.setData({ showPopup: false, value });
|
||||||
displayTitle = this.computedDisplayTitle(optionValue);
|
|
||||||
this.$emit('change', optionValue);
|
|
||||||
}
|
|
||||||
this.setData({ showPopup: false, value, displayTitle });
|
|
||||||
const time = this.data.duration || 0;
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
this.setData({ showWrapper: false });
|
this.setData({ showWrapper: false });
|
||||||
}, time);
|
}, this.data.duration || 0);
|
||||||
// parent 中的 itemListData 是 children 上的数据的集合
|
this.rerender();
|
||||||
// 数据的更新由 children 各自维护,但是模板的更新需要额外触发 parent 的 setData
|
if (shouldEmitChange) {
|
||||||
this.parent.setData({ itemListData: this.parent.data.itemListData });
|
this.$emit('change', value);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
toggle() {
|
toggle(show, options = {}) {
|
||||||
const { childIndex } = this.data;
|
const { showPopup, duration } = this.data;
|
||||||
this.parent.toggleItem(childIndex);
|
if (show == null) {
|
||||||
|
show = !showPopup;
|
||||||
|
}
|
||||||
|
if (show === showPopup) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!show) {
|
||||||
|
const time = options.immediate ? 0 : duration;
|
||||||
|
this.setData({ transition: !options.immediate, showPopup: show });
|
||||||
|
setTimeout(() => {
|
||||||
|
this.setData({ showWrapper: false });
|
||||||
|
}, time);
|
||||||
|
this.rerender();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.parent.getChildWrapperStyle().then((wrapperStyle = '') => {
|
||||||
|
this.setData({
|
||||||
|
transition: !options.immediate,
|
||||||
|
showPopup: show,
|
||||||
|
wrapperStyle,
|
||||||
|
showWrapper: true
|
||||||
|
});
|
||||||
|
this.rerender();
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
107
dist/dropdown-menu/index.js
vendored
107
dist/dropdown-menu/index.js
vendored
@ -7,33 +7,23 @@ VantComponent({
|
|||||||
name: 'dropdown-item',
|
name: 'dropdown-item',
|
||||||
type: 'descendant',
|
type: 'descendant',
|
||||||
linked(target) {
|
linked(target) {
|
||||||
this.children = this.children || [];
|
|
||||||
// 透传 props 给 dropdown-item
|
|
||||||
const { overlay, duration, activeColor, closeOnClickOverlay, direction } = this.data;
|
|
||||||
this.updateChildData(target, {
|
|
||||||
overlay,
|
|
||||||
duration,
|
|
||||||
activeColor,
|
|
||||||
closeOnClickOverlay,
|
|
||||||
direction,
|
|
||||||
childIndex: this.children.length
|
|
||||||
});
|
|
||||||
this.children.push(target);
|
this.children.push(target);
|
||||||
// 收集 dorpdown-item 的 data 挂在 data 上
|
this.updateItemListData();
|
||||||
target &&
|
|
||||||
this.setData({
|
|
||||||
itemListData: this.data.itemListData.concat([target.data])
|
|
||||||
});
|
|
||||||
},
|
},
|
||||||
unlinked(target) {
|
unlinked(target) {
|
||||||
this.children = this.children.filter((child) => child !== target);
|
this.children = this.children.filter((child) => child !== target);
|
||||||
|
this.updateItemListData();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
activeColor: String,
|
activeColor: {
|
||||||
|
type: String,
|
||||||
|
observer: 'updateChildrenData'
|
||||||
|
},
|
||||||
overlay: {
|
overlay: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
value: true
|
value: true,
|
||||||
|
observer: 'updateChildrenData'
|
||||||
},
|
},
|
||||||
zIndex: {
|
zIndex: {
|
||||||
type: Number,
|
type: Number,
|
||||||
@ -41,15 +31,18 @@ VantComponent({
|
|||||||
},
|
},
|
||||||
duration: {
|
duration: {
|
||||||
type: Number,
|
type: Number,
|
||||||
value: 200
|
value: 200,
|
||||||
|
observer: 'updateChildrenData'
|
||||||
},
|
},
|
||||||
direction: {
|
direction: {
|
||||||
type: String,
|
type: String,
|
||||||
value: 'down'
|
value: 'down',
|
||||||
|
observer: 'updateChildrenData'
|
||||||
},
|
},
|
||||||
closeOnClickOverlay: {
|
closeOnClickOverlay: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
value: true
|
value: true,
|
||||||
|
observer: 'updateChildrenData'
|
||||||
},
|
},
|
||||||
closeOnClickOutside: {
|
closeOnClickOutside: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
@ -59,68 +52,47 @@ VantComponent({
|
|||||||
data: {
|
data: {
|
||||||
itemListData: []
|
itemListData: []
|
||||||
},
|
},
|
||||||
created() {
|
beforeCreate() {
|
||||||
|
const { windowHeight } = wx.getSystemInfoSync();
|
||||||
|
this.windowHeight = windowHeight;
|
||||||
|
this.children = [];
|
||||||
ARRAY.push(this);
|
ARRAY.push(this);
|
||||||
},
|
},
|
||||||
destroyed() {
|
destroyed() {
|
||||||
ARRAY = ARRAY.filter(item => item !== this);
|
ARRAY = ARRAY.filter(item => item !== this);
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
updateChildData(childItem, newData, needRefreshList = false) {
|
updateItemListData() {
|
||||||
childItem.setData(newData);
|
this.setData({
|
||||||
if (needRefreshList) {
|
itemListData: this.children.map((child) => child.data)
|
||||||
// dropdown-item data 更新,涉及到 title 的展示,触发模板更新
|
});
|
||||||
this.setData({ itemListData: this.data.itemListData });
|
},
|
||||||
}
|
updateChildrenData() {
|
||||||
|
this.children.forEach((child) => {
|
||||||
|
child.updateDataFromParent();
|
||||||
|
});
|
||||||
},
|
},
|
||||||
toggleItem(active) {
|
toggleItem(active) {
|
||||||
this.children.forEach((item, index) => {
|
this.children.forEach((item, index) => {
|
||||||
const { showPopup } = item.data;
|
const { showPopup } = item.data;
|
||||||
if (index === active) {
|
if (index === active) {
|
||||||
this.toggleChildItem(item);
|
item.toggle();
|
||||||
}
|
}
|
||||||
else if (showPopup) {
|
else if (showPopup) {
|
||||||
this.toggleChildItem(item, false, { immediate: true });
|
item.toggle(false, { immediate: true });
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
toggleChildItem(childItem, show, options = {}) {
|
|
||||||
const { showPopup, duration } = childItem.data;
|
|
||||||
if (show === undefined)
|
|
||||||
show = !showPopup;
|
|
||||||
if (show === showPopup) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
const newChildData = { transition: !options.immediate, showPopup: show };
|
|
||||||
if (!show) {
|
|
||||||
const time = options.immediate ? 0 : duration;
|
|
||||||
this.updateChildData(childItem, Object.assign({}, newChildData), true);
|
|
||||||
setTimeout(() => {
|
|
||||||
this.updateChildData(childItem, { showWrapper: false }, true);
|
|
||||||
}, time);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
this.getChildWrapperStyle().then((wrapperStyle = '') => {
|
|
||||||
this.updateChildData(childItem, Object.assign(Object.assign({}, newChildData), { wrapperStyle, showWrapper: true }), true);
|
|
||||||
});
|
|
||||||
},
|
|
||||||
close() {
|
close() {
|
||||||
this.children.forEach((item) => {
|
this.children.forEach((child) => {
|
||||||
this.toggleChildItem(item, false, { immediate: true });
|
child.toggle(false, { immediate: true });
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
getChildWrapperStyle() {
|
getChildWrapperStyle() {
|
||||||
const { windowHeight } = wx.getSystemInfoSync();
|
|
||||||
const { zIndex, direction } = this.data;
|
const { zIndex, direction } = this.data;
|
||||||
let offset = 0;
|
return this.getRect('.van-dropdown-menu').then((rect) => {
|
||||||
return this.getRect('.van-dropdown-menu').then(rect => {
|
|
||||||
const { top = 0, bottom = 0 } = rect;
|
const { top = 0, bottom = 0 } = rect;
|
||||||
if (direction === 'down') {
|
const offset = direction === 'down' ? bottom : this.windowHeight - top;
|
||||||
offset = bottom;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
offset = windowHeight - top;
|
|
||||||
}
|
|
||||||
let wrapperStyle = `z-index: ${zIndex};`;
|
let wrapperStyle = `z-index: ${zIndex};`;
|
||||||
if (direction === 'down') {
|
if (direction === 'down') {
|
||||||
wrapperStyle += `top: ${addUnit(offset)};`;
|
wrapperStyle += `top: ${addUnit(offset)};`;
|
||||||
@ -128,16 +100,17 @@ VantComponent({
|
|||||||
else {
|
else {
|
||||||
wrapperStyle += `bottom: ${addUnit(offset)};`;
|
wrapperStyle += `bottom: ${addUnit(offset)};`;
|
||||||
}
|
}
|
||||||
return Promise.resolve(wrapperStyle);
|
return wrapperStyle;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
onTitleTap(event) {
|
onTitleTap(event) {
|
||||||
// item ---> dropdown-item
|
const { index } = event.currentTarget.dataset;
|
||||||
const { item, index } = event.currentTarget.dataset;
|
const child = this.children[index];
|
||||||
if (!item.disabled) {
|
if (!child.data.disabled) {
|
||||||
// menuItem ---> dropdown-menu
|
|
||||||
ARRAY.forEach(menuItem => {
|
ARRAY.forEach(menuItem => {
|
||||||
if (menuItem && menuItem.data.closeOnClickOutside && menuItem !== this) {
|
if (menuItem &&
|
||||||
|
menuItem.data.closeOnClickOutside &&
|
||||||
|
menuItem !== this) {
|
||||||
menuItem.close();
|
menuItem.close();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
4
dist/dropdown-menu/index.wxml
vendored
4
dist/dropdown-menu/index.wxml
vendored
@ -1,10 +1,10 @@
|
|||||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
<wxs src="./index.wxs" module="computed" />
|
||||||
|
|
||||||
<view class="van-dropdown-menu van-dropdown-menu--top-bottom">
|
<view class="van-dropdown-menu van-dropdown-menu--top-bottom">
|
||||||
<view
|
<view
|
||||||
wx:for="{{ itemListData }}"
|
wx:for="{{ itemListData }}"
|
||||||
wx:key="index"
|
wx:key="index"
|
||||||
data-item="{{ item }}"
|
|
||||||
data-index="{{ index }}"
|
data-index="{{ index }}"
|
||||||
class="{{ utils.bem('dropdown-menu__item', { disabled: item.disabled }) }}"
|
class="{{ utils.bem('dropdown-menu__item', { disabled: item.disabled }) }}"
|
||||||
bind:tap="onTitleTap"
|
bind:tap="onTitleTap"
|
||||||
@ -14,7 +14,7 @@
|
|||||||
style="{{ item.showPopup ? 'color:' + activeColor : '' }}"
|
style="{{ item.showPopup ? 'color:' + activeColor : '' }}"
|
||||||
>
|
>
|
||||||
<view class="van-ellipsis">
|
<view class="van-ellipsis">
|
||||||
{{item.displayTitle}}
|
{{ computed.displayTitle(item) }}
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
16
dist/dropdown-menu/index.wxs
vendored
Normal file
16
dist/dropdown-menu/index.wxs
vendored
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
/* eslint-disable */
|
||||||
|
function displayTitle(item) {
|
||||||
|
if (item.title) {
|
||||||
|
return item.title;
|
||||||
|
}
|
||||||
|
|
||||||
|
var match = item.options.filter(function(option) {
|
||||||
|
return option.value === item.value;
|
||||||
|
});
|
||||||
|
var displayTitle = match.length ? match[0].text : '';
|
||||||
|
return displayTitle;
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
displayTitle: displayTitle
|
||||||
|
};
|
1
dist/image/index.wxml
vendored
1
dist/image/index.wxml
vendored
@ -8,7 +8,6 @@
|
|||||||
<image
|
<image
|
||||||
wx:if="{{ !error }}"
|
wx:if="{{ !error }}"
|
||||||
src="{{ src }}"
|
src="{{ src }}"
|
||||||
webp
|
|
||||||
mode="{{ mode }}"
|
mode="{{ mode }}"
|
||||||
lazy-load="{{ lazyLoad }}"
|
lazy-load="{{ lazyLoad }}"
|
||||||
class="image-class van-image__img"
|
class="image-class van-image__img"
|
||||||
|
4
dist/overlay/index.wxml
vendored
4
dist/overlay/index.wxml
vendored
@ -5,4 +5,6 @@
|
|||||||
duration="{{ duration }}"
|
duration="{{ duration }}"
|
||||||
bind:tap="onClick"
|
bind:tap="onClick"
|
||||||
catch:touchmove="noop"
|
catch:touchmove="noop"
|
||||||
/>
|
>
|
||||||
|
<slot></slot>
|
||||||
|
</van-transition>
|
||||||
|
13
dist/rate/index.js
vendored
13
dist/rate/index.js
vendored
@ -8,7 +8,10 @@ VantComponent({
|
|||||||
readonly: Boolean,
|
readonly: Boolean,
|
||||||
disabled: Boolean,
|
disabled: Boolean,
|
||||||
allowHalf: Boolean,
|
allowHalf: Boolean,
|
||||||
size: null,
|
size: {
|
||||||
|
type: null,
|
||||||
|
observer: 'setSizeWithUnit'
|
||||||
|
},
|
||||||
icon: {
|
icon: {
|
||||||
type: String,
|
type: String,
|
||||||
value: 'star'
|
value: 'star'
|
||||||
@ -44,7 +47,8 @@ VantComponent({
|
|||||||
},
|
},
|
||||||
data: {
|
data: {
|
||||||
innerValue: 0,
|
innerValue: 0,
|
||||||
gutterWithUnit: undefined
|
gutterWithUnit: undefined,
|
||||||
|
sizeWithUnit: null
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
value(value) {
|
value(value) {
|
||||||
@ -59,6 +63,11 @@ VantComponent({
|
|||||||
gutterWithUnit: addUnit(val)
|
gutterWithUnit: addUnit(val)
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
setSizeWithUnit(size) {
|
||||||
|
this.setData({
|
||||||
|
sizeWithUnit: addUnit(size)
|
||||||
|
});
|
||||||
|
},
|
||||||
onSelect(event) {
|
onSelect(event) {
|
||||||
const { data } = this;
|
const { data } = this;
|
||||||
const { score } = event.currentTarget.dataset;
|
const { score } = event.currentTarget.dataset;
|
||||||
|
4
dist/rate/index.wxml
vendored
4
dist/rate/index.wxml
vendored
@ -12,8 +12,8 @@
|
|||||||
>
|
>
|
||||||
<van-icon
|
<van-icon
|
||||||
name="{{ index + 1 <= innerValue ? icon : voidIcon }}"
|
name="{{ index + 1 <= innerValue ? icon : voidIcon }}"
|
||||||
size="{{ size }}"
|
|
||||||
class="van-rate__icon"
|
class="van-rate__icon"
|
||||||
|
style="font-size :{{ size? sizeWithUnit : ''}}"
|
||||||
custom-class="icon-class"
|
custom-class="icon-class"
|
||||||
data-score="{{ index }}"
|
data-score="{{ index }}"
|
||||||
color="{{ disabled ? disabledColor : index + 1 <= innerValue ? color : voidColor }}"
|
color="{{ disabled ? disabledColor : index + 1 <= innerValue ? color : voidColor }}"
|
||||||
@ -22,9 +22,9 @@
|
|||||||
|
|
||||||
<van-icon
|
<van-icon
|
||||||
wx:if="{{ allowHalf }}"
|
wx:if="{{ allowHalf }}"
|
||||||
size="{{ size }}"
|
|
||||||
name="{{ index + 0.5 <= innerValue ? icon : voidIcon }}"
|
name="{{ index + 0.5 <= innerValue ? icon : voidIcon }}"
|
||||||
class="{{ utils.bem('rate__icon', ['half']) }}"
|
class="{{ utils.bem('rate__icon', ['half']) }}"
|
||||||
|
style="font-size :{{ size? sizeWithUnit : ''}}"
|
||||||
custom-class="icon-class"
|
custom-class="icon-class"
|
||||||
data-score="{{ index - 0.5 }}"
|
data-score="{{ index - 0.5 }}"
|
||||||
color="{{ disabled ? disabledColor : index + 0.5 <= innerValue ? color : voidColor }}"
|
color="{{ disabled ? disabledColor : index + 0.5 <= innerValue ? color : voidColor }}"
|
||||||
|
2
dist/sidebar/index.js
vendored
2
dist/sidebar/index.js
vendored
@ -8,7 +8,7 @@ VantComponent({
|
|||||||
this.setActive(this.data.activeKey);
|
this.setActive(this.data.activeKey);
|
||||||
},
|
},
|
||||||
unlinked(target) {
|
unlinked(target) {
|
||||||
this.items = this.children.filter((item) => item !== target);
|
this.children = this.children.filter((item) => item !== target);
|
||||||
this.setActive(this.data.activeKey);
|
this.setActive(this.data.activeKey);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
8
dist/stepper/index.js
vendored
8
dist/stepper/index.js
vendored
@ -41,7 +41,9 @@ VantComponent({
|
|||||||
showMinus: {
|
showMinus: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
value: true
|
value: true
|
||||||
}
|
},
|
||||||
|
disablePlus: Boolean,
|
||||||
|
disableMinus: Boolean
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
value(value) {
|
value(value) {
|
||||||
@ -78,9 +80,9 @@ VantComponent({
|
|||||||
methods: {
|
methods: {
|
||||||
isDisabled(type) {
|
isDisabled(type) {
|
||||||
if (type === 'plus') {
|
if (type === 'plus') {
|
||||||
return this.data.disabled || this.data.value >= this.data.max;
|
return this.data.disabled || this.data.disablePlus || this.data.value >= this.data.max;
|
||||||
}
|
}
|
||||||
return this.data.disabled || this.data.value <= this.data.min;
|
return this.data.disabled || this.data.disableMinus || this.data.value <= this.data.min;
|
||||||
},
|
},
|
||||||
onFocus(event) {
|
onFocus(event) {
|
||||||
this.$emit('focus', event.detail);
|
this.$emit('focus', event.detail);
|
||||||
|
4
dist/stepper/index.wxml
vendored
4
dist/stepper/index.wxml
vendored
@ -5,7 +5,7 @@
|
|||||||
wx:if="{{ showMinus }}"
|
wx:if="{{ showMinus }}"
|
||||||
data-type="minus"
|
data-type="minus"
|
||||||
style="{{ buttonStyle }}"
|
style="{{ buttonStyle }}"
|
||||||
class="minus-class {{ utils.bem('stepper__minus', { disabled: disabled || value <= min }) }}"
|
class="minus-class {{ utils.bem('stepper__minus', { disabled: disabled || disableMinus || value <= min }) }}"
|
||||||
hover-class="van-stepper__minus--hover"
|
hover-class="van-stepper__minus--hover"
|
||||||
hover-stay-time="70"
|
hover-stay-time="70"
|
||||||
bind:tap="onTap"
|
bind:tap="onTap"
|
||||||
@ -27,7 +27,7 @@
|
|||||||
wx:if="{{ showPlus }}"
|
wx:if="{{ showPlus }}"
|
||||||
data-type="plus"
|
data-type="plus"
|
||||||
style="{{ buttonStyle }}"
|
style="{{ buttonStyle }}"
|
||||||
class="plus-class {{ utils.bem('stepper__plus', { disabled: disabled || value >= max }) }}"
|
class="plus-class {{ utils.bem('stepper__plus', { disabled: disabled || disablePlus || value >= max }) }}"
|
||||||
hover-class="van-stepper__plus--hover"
|
hover-class="van-stepper__plus--hover"
|
||||||
hover-stay-time="70"
|
hover-stay-time="70"
|
||||||
bind:tap="onTap"
|
bind:tap="onTap"
|
||||||
|
2
dist/tree-select/index.wxml
vendored
2
dist/tree-select/index.wxml
vendored
@ -6,7 +6,7 @@
|
|||||||
style="height: {{ innerHeight }}"
|
style="height: {{ innerHeight }}"
|
||||||
>
|
>
|
||||||
<scroll-view scroll-y class="van-tree-select__nav">
|
<scroll-view scroll-y class="van-tree-select__nav">
|
||||||
<van-sidebar bind:change="onClickNav" custom-class="van-tree-select__nav__inner">
|
<van-sidebar active-key="{{ mainActiveIndex }}" bind:change="onClickNav" custom-class="van-tree-select__nav__inner">
|
||||||
<van-sidebar-item
|
<van-sidebar-item
|
||||||
wx:for="{{ items }}"
|
wx:for="{{ items }}"
|
||||||
wx:key="index"
|
wx:key="index"
|
||||||
|
@ -8,19 +8,30 @@ component_1.VantComponent({
|
|||||||
type: 'ancestor',
|
type: 'ancestor',
|
||||||
linked: function (target) {
|
linked: function (target) {
|
||||||
this.parent = target;
|
this.parent = target;
|
||||||
|
this.updateDataFromParent();
|
||||||
},
|
},
|
||||||
unlinked: function () {
|
unlinked: function () {
|
||||||
this.parent = null;
|
this.parent = null;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
value: null,
|
value: {
|
||||||
title: String,
|
type: null,
|
||||||
|
observer: 'rerender'
|
||||||
|
},
|
||||||
|
title: {
|
||||||
|
type: String,
|
||||||
|
observer: 'rerender'
|
||||||
|
},
|
||||||
disabled: Boolean,
|
disabled: Boolean,
|
||||||
titleClass: String,
|
titleClass: {
|
||||||
|
type: String,
|
||||||
|
observer: 'rerender'
|
||||||
|
},
|
||||||
options: {
|
options: {
|
||||||
type: Array,
|
type: Array,
|
||||||
value: []
|
value: [],
|
||||||
|
observer: 'rerender'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
data: {
|
data: {
|
||||||
@ -29,18 +40,24 @@ component_1.VantComponent({
|
|||||||
showWrapper: false,
|
showWrapper: false,
|
||||||
displayTitle: ''
|
displayTitle: ''
|
||||||
},
|
},
|
||||||
created: function () {
|
|
||||||
this.setData({ displayTitle: this.computedDisplayTitle(this.data.value) });
|
|
||||||
},
|
|
||||||
methods: {
|
methods: {
|
||||||
computedDisplayTitle: function (curValue) {
|
rerender: function () {
|
||||||
var _a = this.data, title = _a.title, options = _a.options;
|
var _this = this;
|
||||||
if (title) {
|
wx.nextTick(function () {
|
||||||
return title;
|
_this.parent && _this.parent.updateItemListData();
|
||||||
|
});
|
||||||
|
},
|
||||||
|
updateDataFromParent: function () {
|
||||||
|
if (this.parent) {
|
||||||
|
var _a = this.parent.data, overlay = _a.overlay, duration = _a.duration, activeColor = _a.activeColor, closeOnClickOverlay = _a.closeOnClickOverlay, direction = _a.direction;
|
||||||
|
this.setData({
|
||||||
|
overlay: overlay,
|
||||||
|
duration: duration,
|
||||||
|
activeColor: activeColor,
|
||||||
|
closeOnClickOverlay: closeOnClickOverlay,
|
||||||
|
direction: direction
|
||||||
|
});
|
||||||
}
|
}
|
||||||
var match = options.filter(function (option) { return option.value === curValue; });
|
|
||||||
var displayTitle = match.length ? match[0].text : '';
|
|
||||||
return displayTitle;
|
|
||||||
},
|
},
|
||||||
onClickOverlay: function () {
|
onClickOverlay: function () {
|
||||||
this.toggle();
|
this.toggle();
|
||||||
@ -48,26 +65,47 @@ component_1.VantComponent({
|
|||||||
},
|
},
|
||||||
onOptionTap: function (event) {
|
onOptionTap: function (event) {
|
||||||
var _this = this;
|
var _this = this;
|
||||||
var _a = this.data, value = _a.value, displayTitle = _a.displayTitle;
|
|
||||||
var option = event.currentTarget.dataset.option;
|
var option = event.currentTarget.dataset.option;
|
||||||
var optionValue = option.value;
|
var value = option.value;
|
||||||
if (optionValue !== value) {
|
var shouldEmitChange = this.data.value !== value;
|
||||||
value = optionValue;
|
this.setData({ showPopup: false, value: value });
|
||||||
displayTitle = this.computedDisplayTitle(optionValue);
|
|
||||||
this.$emit('change', optionValue);
|
|
||||||
}
|
|
||||||
this.setData({ showPopup: false, value: value, displayTitle: displayTitle });
|
|
||||||
var time = this.data.duration || 0;
|
|
||||||
setTimeout(function () {
|
setTimeout(function () {
|
||||||
_this.setData({ showWrapper: false });
|
_this.setData({ showWrapper: false });
|
||||||
}, time);
|
}, this.data.duration || 0);
|
||||||
// parent 中的 itemListData 是 children 上的数据的集合
|
this.rerender();
|
||||||
// 数据的更新由 children 各自维护,但是模板的更新需要额外触发 parent 的 setData
|
if (shouldEmitChange) {
|
||||||
this.parent.setData({ itemListData: this.parent.data.itemListData });
|
this.$emit('change', value);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
toggle: function () {
|
toggle: function (show, options) {
|
||||||
var childIndex = this.data.childIndex;
|
var _this = this;
|
||||||
this.parent.toggleItem(childIndex);
|
if (options === void 0) { options = {}; }
|
||||||
|
var _a = this.data, showPopup = _a.showPopup, duration = _a.duration;
|
||||||
|
if (show == null) {
|
||||||
|
show = !showPopup;
|
||||||
|
}
|
||||||
|
if (show === showPopup) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!show) {
|
||||||
|
var time = options.immediate ? 0 : duration;
|
||||||
|
this.setData({ transition: !options.immediate, showPopup: show });
|
||||||
|
setTimeout(function () {
|
||||||
|
_this.setData({ showWrapper: false });
|
||||||
|
}, time);
|
||||||
|
this.rerender();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.parent.getChildWrapperStyle().then(function (wrapperStyle) {
|
||||||
|
if (wrapperStyle === void 0) { wrapperStyle = ''; }
|
||||||
|
_this.setData({
|
||||||
|
transition: !options.immediate,
|
||||||
|
showPopup: show,
|
||||||
|
wrapperStyle: wrapperStyle,
|
||||||
|
showWrapper: true
|
||||||
|
});
|
||||||
|
_this.rerender();
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -1,15 +1,4 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
var __assign = (this && this.__assign) || function () {
|
|
||||||
__assign = Object.assign || function(t) {
|
|
||||||
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
||||||
s = arguments[i];
|
|
||||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
||||||
t[p] = s[p];
|
|
||||||
}
|
|
||||||
return t;
|
|
||||||
};
|
|
||||||
return __assign.apply(this, arguments);
|
|
||||||
};
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
var component_1 = require("../common/component");
|
var component_1 = require("../common/component");
|
||||||
var utils_1 = require("../common/utils");
|
var utils_1 = require("../common/utils");
|
||||||
@ -20,33 +9,23 @@ component_1.VantComponent({
|
|||||||
name: 'dropdown-item',
|
name: 'dropdown-item',
|
||||||
type: 'descendant',
|
type: 'descendant',
|
||||||
linked: function (target) {
|
linked: function (target) {
|
||||||
this.children = this.children || [];
|
|
||||||
// 透传 props 给 dropdown-item
|
|
||||||
var _a = this.data, overlay = _a.overlay, duration = _a.duration, activeColor = _a.activeColor, closeOnClickOverlay = _a.closeOnClickOverlay, direction = _a.direction;
|
|
||||||
this.updateChildData(target, {
|
|
||||||
overlay: overlay,
|
|
||||||
duration: duration,
|
|
||||||
activeColor: activeColor,
|
|
||||||
closeOnClickOverlay: closeOnClickOverlay,
|
|
||||||
direction: direction,
|
|
||||||
childIndex: this.children.length
|
|
||||||
});
|
|
||||||
this.children.push(target);
|
this.children.push(target);
|
||||||
// 收集 dorpdown-item 的 data 挂在 data 上
|
this.updateItemListData();
|
||||||
target &&
|
|
||||||
this.setData({
|
|
||||||
itemListData: this.data.itemListData.concat([target.data])
|
|
||||||
});
|
|
||||||
},
|
},
|
||||||
unlinked: function (target) {
|
unlinked: function (target) {
|
||||||
this.children = this.children.filter(function (child) { return child !== target; });
|
this.children = this.children.filter(function (child) { return child !== target; });
|
||||||
|
this.updateItemListData();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
activeColor: String,
|
activeColor: {
|
||||||
|
type: String,
|
||||||
|
observer: 'updateChildrenData'
|
||||||
|
},
|
||||||
overlay: {
|
overlay: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
value: true
|
value: true,
|
||||||
|
observer: 'updateChildrenData'
|
||||||
},
|
},
|
||||||
zIndex: {
|
zIndex: {
|
||||||
type: Number,
|
type: Number,
|
||||||
@ -54,15 +33,18 @@ component_1.VantComponent({
|
|||||||
},
|
},
|
||||||
duration: {
|
duration: {
|
||||||
type: Number,
|
type: Number,
|
||||||
value: 200
|
value: 200,
|
||||||
|
observer: 'updateChildrenData'
|
||||||
},
|
},
|
||||||
direction: {
|
direction: {
|
||||||
type: String,
|
type: String,
|
||||||
value: 'down'
|
value: 'down',
|
||||||
|
observer: 'updateChildrenData'
|
||||||
},
|
},
|
||||||
closeOnClickOverlay: {
|
closeOnClickOverlay: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
value: true
|
value: true,
|
||||||
|
observer: 'updateChildrenData'
|
||||||
},
|
},
|
||||||
closeOnClickOutside: {
|
closeOnClickOutside: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
@ -72,7 +54,10 @@ component_1.VantComponent({
|
|||||||
data: {
|
data: {
|
||||||
itemListData: []
|
itemListData: []
|
||||||
},
|
},
|
||||||
created: function () {
|
beforeCreate: function () {
|
||||||
|
var windowHeight = wx.getSystemInfoSync().windowHeight;
|
||||||
|
this.windowHeight = windowHeight;
|
||||||
|
this.children = [];
|
||||||
ARRAY.push(this);
|
ARRAY.push(this);
|
||||||
},
|
},
|
||||||
destroyed: function () {
|
destroyed: function () {
|
||||||
@ -80,67 +65,38 @@ component_1.VantComponent({
|
|||||||
ARRAY = ARRAY.filter(function (item) { return item !== _this; });
|
ARRAY = ARRAY.filter(function (item) { return item !== _this; });
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
updateChildData: function (childItem, newData, needRefreshList) {
|
updateItemListData: function () {
|
||||||
if (needRefreshList === void 0) { needRefreshList = false; }
|
this.setData({
|
||||||
childItem.setData(newData);
|
itemListData: this.children.map(function (child) { return child.data; })
|
||||||
if (needRefreshList) {
|
});
|
||||||
// dropdown-item data 更新,涉及到 title 的展示,触发模板更新
|
},
|
||||||
this.setData({ itemListData: this.data.itemListData });
|
updateChildrenData: function () {
|
||||||
}
|
this.children.forEach(function (child) {
|
||||||
|
child.updateDataFromParent();
|
||||||
|
});
|
||||||
},
|
},
|
||||||
toggleItem: function (active) {
|
toggleItem: function (active) {
|
||||||
var _this = this;
|
|
||||||
this.children.forEach(function (item, index) {
|
this.children.forEach(function (item, index) {
|
||||||
var showPopup = item.data.showPopup;
|
var showPopup = item.data.showPopup;
|
||||||
if (index === active) {
|
if (index === active) {
|
||||||
_this.toggleChildItem(item);
|
item.toggle();
|
||||||
}
|
}
|
||||||
else if (showPopup) {
|
else if (showPopup) {
|
||||||
_this.toggleChildItem(item, false, { immediate: true });
|
item.toggle(false, { immediate: true });
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
toggleChildItem: function (childItem, show, options) {
|
|
||||||
var _this = this;
|
|
||||||
if (options === void 0) { options = {}; }
|
|
||||||
var _a = childItem.data, showPopup = _a.showPopup, duration = _a.duration;
|
|
||||||
if (show === undefined)
|
|
||||||
show = !showPopup;
|
|
||||||
if (show === showPopup) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
var newChildData = { transition: !options.immediate, showPopup: show };
|
|
||||||
if (!show) {
|
|
||||||
var time = options.immediate ? 0 : duration;
|
|
||||||
this.updateChildData(childItem, __assign({}, newChildData), true);
|
|
||||||
setTimeout(function () {
|
|
||||||
_this.updateChildData(childItem, { showWrapper: false }, true);
|
|
||||||
}, time);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
this.getChildWrapperStyle().then(function (wrapperStyle) {
|
|
||||||
if (wrapperStyle === void 0) { wrapperStyle = ''; }
|
|
||||||
_this.updateChildData(childItem, __assign(__assign({}, newChildData), { wrapperStyle: wrapperStyle, showWrapper: true }), true);
|
|
||||||
});
|
|
||||||
},
|
|
||||||
close: function () {
|
close: function () {
|
||||||
var _this = this;
|
this.children.forEach(function (child) {
|
||||||
this.children.forEach(function (item) {
|
child.toggle(false, { immediate: true });
|
||||||
_this.toggleChildItem(item, false, { immediate: true });
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
getChildWrapperStyle: function () {
|
getChildWrapperStyle: function () {
|
||||||
var windowHeight = wx.getSystemInfoSync().windowHeight;
|
var _this = this;
|
||||||
var _a = this.data, zIndex = _a.zIndex, direction = _a.direction;
|
var _a = this.data, zIndex = _a.zIndex, direction = _a.direction;
|
||||||
var offset = 0;
|
|
||||||
return this.getRect('.van-dropdown-menu').then(function (rect) {
|
return this.getRect('.van-dropdown-menu').then(function (rect) {
|
||||||
var _a = rect.top, top = _a === void 0 ? 0 : _a, _b = rect.bottom, bottom = _b === void 0 ? 0 : _b;
|
var _a = rect.top, top = _a === void 0 ? 0 : _a, _b = rect.bottom, bottom = _b === void 0 ? 0 : _b;
|
||||||
if (direction === 'down') {
|
var offset = direction === 'down' ? bottom : _this.windowHeight - top;
|
||||||
offset = bottom;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
offset = windowHeight - top;
|
|
||||||
}
|
|
||||||
var wrapperStyle = "z-index: " + zIndex + ";";
|
var wrapperStyle = "z-index: " + zIndex + ";";
|
||||||
if (direction === 'down') {
|
if (direction === 'down') {
|
||||||
wrapperStyle += "top: " + utils_1.addUnit(offset) + ";";
|
wrapperStyle += "top: " + utils_1.addUnit(offset) + ";";
|
||||||
@ -148,17 +104,18 @@ component_1.VantComponent({
|
|||||||
else {
|
else {
|
||||||
wrapperStyle += "bottom: " + utils_1.addUnit(offset) + ";";
|
wrapperStyle += "bottom: " + utils_1.addUnit(offset) + ";";
|
||||||
}
|
}
|
||||||
return Promise.resolve(wrapperStyle);
|
return wrapperStyle;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
onTitleTap: function (event) {
|
onTitleTap: function (event) {
|
||||||
var _this = this;
|
var _this = this;
|
||||||
// item ---> dropdown-item
|
var index = event.currentTarget.dataset.index;
|
||||||
var _a = event.currentTarget.dataset, item = _a.item, index = _a.index;
|
var child = this.children[index];
|
||||||
if (!item.disabled) {
|
if (!child.data.disabled) {
|
||||||
// menuItem ---> dropdown-menu
|
|
||||||
ARRAY.forEach(function (menuItem) {
|
ARRAY.forEach(function (menuItem) {
|
||||||
if (menuItem && menuItem.data.closeOnClickOutside && menuItem !== _this) {
|
if (menuItem &&
|
||||||
|
menuItem.data.closeOnClickOutside &&
|
||||||
|
menuItem !== _this) {
|
||||||
menuItem.close();
|
menuItem.close();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
<wxs src="./index.wxs" module="computed" />
|
||||||
|
|
||||||
<view class="van-dropdown-menu van-dropdown-menu--top-bottom">
|
<view class="van-dropdown-menu van-dropdown-menu--top-bottom">
|
||||||
<view
|
<view
|
||||||
wx:for="{{ itemListData }}"
|
wx:for="{{ itemListData }}"
|
||||||
wx:key="index"
|
wx:key="index"
|
||||||
data-item="{{ item }}"
|
|
||||||
data-index="{{ index }}"
|
data-index="{{ index }}"
|
||||||
class="{{ utils.bem('dropdown-menu__item', { disabled: item.disabled }) }}"
|
class="{{ utils.bem('dropdown-menu__item', { disabled: item.disabled }) }}"
|
||||||
bind:tap="onTitleTap"
|
bind:tap="onTitleTap"
|
||||||
@ -14,7 +14,7 @@
|
|||||||
style="{{ item.showPopup ? 'color:' + activeColor : '' }}"
|
style="{{ item.showPopup ? 'color:' + activeColor : '' }}"
|
||||||
>
|
>
|
||||||
<view class="van-ellipsis">
|
<view class="van-ellipsis">
|
||||||
{{item.displayTitle}}
|
{{ computed.displayTitle(item) }}
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
16
lib/dropdown-menu/index.wxs
Normal file
16
lib/dropdown-menu/index.wxs
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
/* eslint-disable */
|
||||||
|
function displayTitle(item) {
|
||||||
|
if (item.title) {
|
||||||
|
return item.title;
|
||||||
|
}
|
||||||
|
|
||||||
|
var match = item.options.filter(function(option) {
|
||||||
|
return option.value === item.value;
|
||||||
|
});
|
||||||
|
var displayTitle = match.length ? match[0].text : '';
|
||||||
|
return displayTitle;
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
displayTitle: displayTitle
|
||||||
|
};
|
@ -8,7 +8,6 @@
|
|||||||
<image
|
<image
|
||||||
wx:if="{{ !error }}"
|
wx:if="{{ !error }}"
|
||||||
src="{{ src }}"
|
src="{{ src }}"
|
||||||
webp
|
|
||||||
mode="{{ mode }}"
|
mode="{{ mode }}"
|
||||||
lazy-load="{{ lazyLoad }}"
|
lazy-load="{{ lazyLoad }}"
|
||||||
class="image-class van-image__img"
|
class="image-class van-image__img"
|
||||||
|
@ -5,4 +5,6 @@
|
|||||||
duration="{{ duration }}"
|
duration="{{ duration }}"
|
||||||
bind:tap="onClick"
|
bind:tap="onClick"
|
||||||
catch:touchmove="noop"
|
catch:touchmove="noop"
|
||||||
/>
|
>
|
||||||
|
<slot></slot>
|
||||||
|
</van-transition>
|
||||||
|
@ -21,7 +21,10 @@ component_1.VantComponent({
|
|||||||
readonly: Boolean,
|
readonly: Boolean,
|
||||||
disabled: Boolean,
|
disabled: Boolean,
|
||||||
allowHalf: Boolean,
|
allowHalf: Boolean,
|
||||||
size: null,
|
size: {
|
||||||
|
type: null,
|
||||||
|
observer: 'setSizeWithUnit'
|
||||||
|
},
|
||||||
icon: {
|
icon: {
|
||||||
type: String,
|
type: String,
|
||||||
value: 'star'
|
value: 'star'
|
||||||
@ -57,7 +60,8 @@ component_1.VantComponent({
|
|||||||
},
|
},
|
||||||
data: {
|
data: {
|
||||||
innerValue: 0,
|
innerValue: 0,
|
||||||
gutterWithUnit: undefined
|
gutterWithUnit: undefined,
|
||||||
|
sizeWithUnit: null
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
value: function (value) {
|
value: function (value) {
|
||||||
@ -72,6 +76,11 @@ component_1.VantComponent({
|
|||||||
gutterWithUnit: utils_1.addUnit(val)
|
gutterWithUnit: utils_1.addUnit(val)
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
setSizeWithUnit: function (size) {
|
||||||
|
this.setData({
|
||||||
|
sizeWithUnit: utils_1.addUnit(size)
|
||||||
|
});
|
||||||
|
},
|
||||||
onSelect: function (event) {
|
onSelect: function (event) {
|
||||||
var data = this.data;
|
var data = this.data;
|
||||||
var score = event.currentTarget.dataset.score;
|
var score = event.currentTarget.dataset.score;
|
||||||
|
@ -12,8 +12,8 @@
|
|||||||
>
|
>
|
||||||
<van-icon
|
<van-icon
|
||||||
name="{{ index + 1 <= innerValue ? icon : voidIcon }}"
|
name="{{ index + 1 <= innerValue ? icon : voidIcon }}"
|
||||||
size="{{ size }}"
|
|
||||||
class="van-rate__icon"
|
class="van-rate__icon"
|
||||||
|
style="font-size :{{ size? sizeWithUnit : ''}}"
|
||||||
custom-class="icon-class"
|
custom-class="icon-class"
|
||||||
data-score="{{ index }}"
|
data-score="{{ index }}"
|
||||||
color="{{ disabled ? disabledColor : index + 1 <= innerValue ? color : voidColor }}"
|
color="{{ disabled ? disabledColor : index + 1 <= innerValue ? color : voidColor }}"
|
||||||
@ -22,9 +22,9 @@
|
|||||||
|
|
||||||
<van-icon
|
<van-icon
|
||||||
wx:if="{{ allowHalf }}"
|
wx:if="{{ allowHalf }}"
|
||||||
size="{{ size }}"
|
|
||||||
name="{{ index + 0.5 <= innerValue ? icon : voidIcon }}"
|
name="{{ index + 0.5 <= innerValue ? icon : voidIcon }}"
|
||||||
class="{{ utils.bem('rate__icon', ['half']) }}"
|
class="{{ utils.bem('rate__icon', ['half']) }}"
|
||||||
|
style="font-size :{{ size? sizeWithUnit : ''}}"
|
||||||
custom-class="icon-class"
|
custom-class="icon-class"
|
||||||
data-score="{{ index - 0.5 }}"
|
data-score="{{ index - 0.5 }}"
|
||||||
color="{{ disabled ? disabledColor : index + 0.5 <= innerValue ? color : voidColor }}"
|
color="{{ disabled ? disabledColor : index + 0.5 <= innerValue ? color : voidColor }}"
|
||||||
|
@ -10,7 +10,7 @@ component_1.VantComponent({
|
|||||||
this.setActive(this.data.activeKey);
|
this.setActive(this.data.activeKey);
|
||||||
},
|
},
|
||||||
unlinked: function (target) {
|
unlinked: function (target) {
|
||||||
this.items = this.children.filter(function (item) { return item !== target; });
|
this.children = this.children.filter(function (item) { return item !== target; });
|
||||||
this.setActive(this.data.activeKey);
|
this.setActive(this.data.activeKey);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -43,7 +43,9 @@ component_1.VantComponent({
|
|||||||
showMinus: {
|
showMinus: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
value: true
|
value: true
|
||||||
}
|
},
|
||||||
|
disablePlus: Boolean,
|
||||||
|
disableMinus: Boolean
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
value: function (value) {
|
value: function (value) {
|
||||||
@ -80,9 +82,9 @@ component_1.VantComponent({
|
|||||||
methods: {
|
methods: {
|
||||||
isDisabled: function (type) {
|
isDisabled: function (type) {
|
||||||
if (type === 'plus') {
|
if (type === 'plus') {
|
||||||
return this.data.disabled || this.data.value >= this.data.max;
|
return this.data.disabled || this.data.disablePlus || this.data.value >= this.data.max;
|
||||||
}
|
}
|
||||||
return this.data.disabled || this.data.value <= this.data.min;
|
return this.data.disabled || this.data.disableMinus || this.data.value <= this.data.min;
|
||||||
},
|
},
|
||||||
onFocus: function (event) {
|
onFocus: function (event) {
|
||||||
this.$emit('focus', event.detail);
|
this.$emit('focus', event.detail);
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
wx:if="{{ showMinus }}"
|
wx:if="{{ showMinus }}"
|
||||||
data-type="minus"
|
data-type="minus"
|
||||||
style="{{ buttonStyle }}"
|
style="{{ buttonStyle }}"
|
||||||
class="minus-class {{ utils.bem('stepper__minus', { disabled: disabled || value <= min }) }}"
|
class="minus-class {{ utils.bem('stepper__minus', { disabled: disabled || disableMinus || value <= min }) }}"
|
||||||
hover-class="van-stepper__minus--hover"
|
hover-class="van-stepper__minus--hover"
|
||||||
hover-stay-time="70"
|
hover-stay-time="70"
|
||||||
bind:tap="onTap"
|
bind:tap="onTap"
|
||||||
@ -27,7 +27,7 @@
|
|||||||
wx:if="{{ showPlus }}"
|
wx:if="{{ showPlus }}"
|
||||||
data-type="plus"
|
data-type="plus"
|
||||||
style="{{ buttonStyle }}"
|
style="{{ buttonStyle }}"
|
||||||
class="plus-class {{ utils.bem('stepper__plus', { disabled: disabled || value >= max }) }}"
|
class="plus-class {{ utils.bem('stepper__plus', { disabled: disabled || disablePlus || value >= max }) }}"
|
||||||
hover-class="van-stepper__plus--hover"
|
hover-class="van-stepper__plus--hover"
|
||||||
hover-stay-time="70"
|
hover-stay-time="70"
|
||||||
bind:tap="onTap"
|
bind:tap="onTap"
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
style="height: {{ innerHeight }}"
|
style="height: {{ innerHeight }}"
|
||||||
>
|
>
|
||||||
<scroll-view scroll-y class="van-tree-select__nav">
|
<scroll-view scroll-y class="van-tree-select__nav">
|
||||||
<van-sidebar bind:change="onClickNav" custom-class="van-tree-select__nav__inner">
|
<van-sidebar active-key="{{ mainActiveIndex }}" bind:change="onClickNav" custom-class="van-tree-select__nav__inner">
|
||||||
<van-sidebar-item
|
<van-sidebar-item
|
||||||
wx:for="{{ items }}"
|
wx:for="{{ items }}"
|
||||||
wx:key="index"
|
wx:key="index"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user