mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
[build] 0.4.10
This commit is contained in:
parent
4c944ba03b
commit
de4f6a8ce9
6
dist/action-sheet/index.js
vendored
6
dist/action-sheet/index.js
vendored
@ -1,5 +1,7 @@
|
||||
import { VantComponent } from '../common/component';
|
||||
import { iphonex } from '../mixins/iphonex';
|
||||
VantComponent({
|
||||
mixins: [iphonex],
|
||||
props: {
|
||||
show: Boolean,
|
||||
title: String,
|
||||
@ -19,10 +21,6 @@ VantComponent({
|
||||
closeOnClickOverlay: {
|
||||
type: Boolean,
|
||||
value: true
|
||||
},
|
||||
safeAreaInsetBottom: {
|
||||
type: Boolean,
|
||||
value: true
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
31
dist/action-sheet/index.wxml
vendored
31
dist/action-sheet/index.wxml
vendored
@ -16,20 +16,23 @@
|
||||
bind:click="onClose"
|
||||
/>
|
||||
</view>
|
||||
<button
|
||||
wx:for="{{ actions }}"
|
||||
wx:key="index"
|
||||
open-type="{{ item.openType }}"
|
||||
class="van-action-sheet__item van-hairline--top {{ item.disabled || item.loading ? 'van-action-sheet__item--disabled' : '' }} {{ item.className || '' }}"
|
||||
data-index="{{ index }}"
|
||||
bind:tap="onSelect"
|
||||
>
|
||||
<block wx:if="{{ !item.loading }}">
|
||||
{{ item.name }}
|
||||
<text wx:if="{{ item.subname }}" class="van-action-sheet__subname" >{{ item.subname }}</text>
|
||||
</block>
|
||||
<van-loading wx:else size="20px" />
|
||||
</button>
|
||||
<view wx:if="{{ actions && actions.length }}">
|
||||
<!-- button外包一层view,防止actions动态变化,导致渲染时button被打散 -->
|
||||
<button
|
||||
wx:for="{{ actions }}"
|
||||
wx:key="index"
|
||||
open-type="{{ item.openType }}"
|
||||
class="van-action-sheet__item van-hairline--top {{ item.disabled || item.loading ? 'van-action-sheet__item--disabled' : '' }} {{ item.className || '' }}"
|
||||
data-index="{{ index }}"
|
||||
bind:tap="onSelect"
|
||||
>
|
||||
<block wx:if="{{ !item.loading }}">
|
||||
{{ item.name }}
|
||||
<text wx:if="{{ item.subname }}" class="van-action-sheet__subname" >{{ item.subname }}</text>
|
||||
</block>
|
||||
<van-loading wx:else size="20px" />
|
||||
</button>
|
||||
</view>
|
||||
<view
|
||||
wx:if="{{ cancelText }}"
|
||||
class="van-action-sheet__cancel"
|
||||
|
35
dist/area/index.js
vendored
35
dist/area/index.js
vendored
@ -25,15 +25,6 @@ VantComponent({
|
||||
pickerValue: [0, 0, 0],
|
||||
columns: []
|
||||
},
|
||||
computed: {
|
||||
displayColumns: function displayColumns() {
|
||||
var _this$data = this.data,
|
||||
_this$data$columns = _this$data.columns,
|
||||
columns = _this$data$columns === void 0 ? [] : _this$data$columns,
|
||||
columnsNum = _this$data.columnsNum;
|
||||
return columns.slice(0, +columnsNum);
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
value: function value(_value) {
|
||||
this.code = _value;
|
||||
@ -58,9 +49,8 @@ VantComponent({
|
||||
},
|
||||
onChange: function onChange(event) {
|
||||
var value = event.detail.value;
|
||||
var _this$data2 = this.data,
|
||||
pickerValue = _this$data2.pickerValue,
|
||||
displayColumns = _this$data2.displayColumns;
|
||||
var pickerValue = this.data.pickerValue;
|
||||
var displayColumns = this.getDisplayColumns();
|
||||
var index = pickerValue.findIndex(function (item, index) {
|
||||
return item !== value[index];
|
||||
});
|
||||
@ -143,11 +133,9 @@ VantComponent({
|
||||
});
|
||||
},
|
||||
getValues: function getValues() {
|
||||
var _this$data3 = this.data,
|
||||
_this$data3$displayCo = _this$data3.displayColumns,
|
||||
displayColumns = _this$data3$displayCo === void 0 ? [] : _this$data3$displayCo,
|
||||
_this$data3$pickerVal = _this$data3.pickerValue,
|
||||
pickerValue = _this$data3$pickerVal === void 0 ? [] : _this$data3$pickerVal;
|
||||
var _this$data$pickerValu = this.data.pickerValue,
|
||||
pickerValue = _this$data$pickerValu === void 0 ? [] : _this$data$pickerValu;
|
||||
var displayColumns = this.getDisplayColumns();
|
||||
return displayColumns.map(function (option, index) {
|
||||
return option[pickerValue[index]];
|
||||
}).filter(function (value) {
|
||||
@ -155,9 +143,9 @@ VantComponent({
|
||||
});
|
||||
},
|
||||
getIndexs: function getIndexs() {
|
||||
var _this$data4 = this.data,
|
||||
pickerValue = _this$data4.pickerValue,
|
||||
columnsNum = _this$data4.columnsNum;
|
||||
var _this$data = this.data,
|
||||
pickerValue = _this$data.pickerValue,
|
||||
columnsNum = _this$data.columnsNum;
|
||||
return pickerValue.slice(0, columnsNum);
|
||||
},
|
||||
getDetail: function getDetail() {
|
||||
@ -193,6 +181,13 @@ VantComponent({
|
||||
reset: function reset() {
|
||||
this.code = '';
|
||||
this.setValues();
|
||||
},
|
||||
getDisplayColumns: function getDisplayColumns() {
|
||||
var _this$data2 = this.data,
|
||||
_this$data2$columns = _this$data2.columns,
|
||||
columns = _this$data2$columns === void 0 ? [] : _this$data2$columns,
|
||||
columnsNum = _this$data2.columnsNum;
|
||||
return columns.slice(0, +columnsNum);
|
||||
}
|
||||
}
|
||||
});
|
3
dist/area/index.wxml
vendored
3
dist/area/index.wxml
vendored
@ -17,7 +17,8 @@
|
||||
class="van-picker__columns"
|
||||
>
|
||||
<picker-view-column
|
||||
wx:for="{{ displayColumns }}"
|
||||
wx:if="{{ rowIndex < columnsNum }}"
|
||||
wx:for="{{ columns }}"
|
||||
wx:for-item="row"
|
||||
wx:for-index="rowIndex"
|
||||
wx:key="rowIndex"
|
||||
|
2
dist/area/index.wxss
vendored
2
dist/area/index.wxss
vendored
@ -1 +1 @@
|
||||
@import '../common/index.wxss';.van-picker{-webkit-text-size-adjust:100%;position:relative;overflow:hidden;background-color:#fff;-webkit-user-select:none;user-select:none}.van-picker__toolbar{display:-webkit-flex;display:flex;-webkit-justify-content:space-between;justify-content:space-between;height:44px;line-height:44px}.van-picker__cancel,.van-picker__confirm{color:#1989fa;padding:0 15px;font-size:14px}.van-picker__cancel:active,.van-picker__confirm:active{background-color:#e8e8e8}.van-picker__title{max-width:50%;font-size:16px;font-weight:500;text-align:center}.van-picker__columns{position:relative}.van-picker__loading{display:-webkit-flex;display:flex;z-index:4;position:absolute;top:0;right:0;bottom:0;left:0;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;background-color:rgba(255,255,255,.9)}.van-picker-column{-webkit-flex:1;flex:1;overflow:hidden;font-size:16px;text-align:center}.van-picker-column__item{padding:0 5px;color:#999}.van-picker-column__item--selected{font-weight:500;color:#333}.van-picker-column__item--disabled{opacity:.3}
|
||||
@import '../common/index.wxss';.van-picker{-webkit-text-size-adjust:100%;position:relative;overflow:hidden;background-color:#fff;-webkit-user-select:none;user-select:none}.van-picker__toolbar{display:-webkit-flex;display:flex;-webkit-justify-content:space-between;justify-content:space-between;height:44px;line-height:44px}.van-picker__cancel,.van-picker__confirm{color:#1989fa;padding:0 15px;font-size:14px}.van-picker__cancel:active,.van-picker__confirm:active{background-color:#e8e8e8}.van-picker__title{max-width:50%;font-size:16px;font-weight:500;text-align:center}.van-picker__columns{position:relative}.van-picker__loading{display:-webkit-flex;display:flex;z-index:4;position:absolute;top:0;right:0;bottom:0;left:0;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;background-color:rgba(255,255,255,.9)}.van-picker-column{-webkit-flex:1;flex:1;overflow:hidden;font-size:16px;text-align:center}.van-picker-column__item{padding:0 5px;color:#333}.van-picker-column__item--selected{font-weight:500}.van-picker-column__item--disabled{opacity:.3}
|
2
dist/badge/index.js
vendored
2
dist/badge/index.js
vendored
@ -5,7 +5,7 @@ VantComponent({
|
||||
name: 'badge-group'
|
||||
},
|
||||
props: {
|
||||
info: Number,
|
||||
info: null,
|
||||
title: String
|
||||
},
|
||||
methods: {
|
||||
|
5
dist/badge/index.json
vendored
5
dist/badge/index.json
vendored
@ -1,3 +1,6 @@
|
||||
{
|
||||
"component": true
|
||||
"component": true,
|
||||
"usingComponents": {
|
||||
"van-info": "../info/index"
|
||||
}
|
||||
}
|
||||
|
10
dist/badge/index.wxml
vendored
10
dist/badge/index.wxml
vendored
@ -1,4 +1,10 @@
|
||||
<view class="van-badge van-hairline custom-class {{ active ? 'van-badge--active' : '' }}" bind:tap="onClick">
|
||||
<view wx:if="{{ info }}" class="van-badge__info">{{ info }}</view>
|
||||
{{ title }}
|
||||
<view class="van-badge__text">
|
||||
<van-info
|
||||
wx:if="{{ info !== null }}"
|
||||
info="{{ info }}"
|
||||
custom-style="right: 4px"
|
||||
/>
|
||||
{{ title }}
|
||||
</view>
|
||||
</view>
|
||||
|
2
dist/badge/index.wxss
vendored
2
dist/badge/index.wxss
vendored
@ -1 +1 @@
|
||||
@import '../common/index.wxss';.van-badge{display:block;overflow:hidden;font-size:14px;line-height:1.4;-webkit-user-select:none;user-select:none;color:#7d7e80;word-break:break-all;box-sizing:border-box;padding:20px 12px 20px 9px;background-color:#f8f8f8;border-left:3px solid transparent}.van-badge:active{background-color:#e8e8e8}.van-badge::after{border-bottom-width:1px}.van-badge--active{font-weight:700;color:#333;border-color:#f44}.van-badge--active::after{border-right-width:1px}.van-badge--active,.van-badge--active:active{background-color:#fff}.van-badge__info{position:absolute;top:4px;right:2px;color:#fff;font-size:12px;font-weight:500;-webkit-transform:scale(.8);transform:scale(.8);text-align:center;box-sizing:border-box;padding:0 6px;min-width:18px;line-height:18px;border-radius:9px;background-color:#f44}
|
||||
@import '../common/index.wxss';.van-badge{display:block;overflow:hidden;font-size:14px;line-height:1.4;-webkit-user-select:none;user-select:none;color:#7d7e80;word-break:break-all;box-sizing:border-box;padding:20px 12px 20px 9px;background-color:#f8f8f8;border-left:3px solid transparent}.van-badge:active{background-color:#e8e8e8}.van-badge::after{border-bottom-width:1px}.van-badge--active{font-weight:700;color:#333;border-color:#f44}.van-badge--active::after{border-right-width:1px}.van-badge--active,.van-badge--active:active{background-color:#fff}.van-badge__text{position:relative}
|
22
dist/button/index.js
vendored
22
dist/button/index.js
vendored
@ -20,28 +20,6 @@ VantComponent({
|
||||
value: 'normal'
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
classes: function classes() {
|
||||
var _this$data = this.data,
|
||||
type = _this$data.type,
|
||||
size = _this$data.size,
|
||||
block = _this$data.block,
|
||||
plain = _this$data.plain,
|
||||
round = _this$data.round,
|
||||
square = _this$data.square,
|
||||
loading = _this$data.loading,
|
||||
disabled = _this$data.disabled;
|
||||
return this.classNames('van-button', "van-button--" + type, "van-button--" + size, {
|
||||
'van-button--block': block,
|
||||
'van-button--round': round,
|
||||
'van-button--plain': plain,
|
||||
'van-button--square': square,
|
||||
'van-button--loading': loading,
|
||||
'van-button--disabled': disabled,
|
||||
'van-button--unclickable': disabled || loading
|
||||
});
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
onClick: function onClick() {
|
||||
if (!this.data.disabled && !this.data.loading) {
|
||||
|
4
dist/button/index.wxml
vendored
4
dist/button/index.wxml
vendored
@ -1,7 +1,9 @@
|
||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||
|
||||
<button
|
||||
id="{{ id }}"
|
||||
lang="{{ lang }}"
|
||||
class="custom-class {{ classes }}"
|
||||
class="custom-class {{ utils.bem('button', [type, size, { block, round, plain, square, loading, disabled, unclickable: disabled || loading }]) }}"
|
||||
open-type="{{ openType }}"
|
||||
session-from="{{ sessionFrom }}"
|
||||
app-parameter="{{ appParameter }}"
|
||||
|
2
dist/card/index.js
vendored
2
dist/card/index.js
vendored
@ -16,7 +16,7 @@ VantComponent({
|
||||
originPrice: String,
|
||||
thumbMode: {
|
||||
type: String,
|
||||
value: 'scaleToFill'
|
||||
value: 'aspectFit'
|
||||
},
|
||||
currency: {
|
||||
type: String,
|
||||
|
17
dist/card/index.wxml
vendored
17
dist/card/index.wxml
vendored
@ -7,7 +7,7 @@
|
||||
lazy-load="{{ lazyLoad }}"
|
||||
class="van-card__img thumb-class"
|
||||
/>
|
||||
<slot wx:else name="thumb" />
|
||||
<slot name="thumb" />
|
||||
<van-tag
|
||||
wx:if="{{ tag }}"
|
||||
mark
|
||||
@ -19,16 +19,15 @@
|
||||
</view>
|
||||
|
||||
<view class="van-card__content">
|
||||
<view class="van-card__left">
|
||||
<view wx:if="{{ title }}" class="van-card__title van-multi-ellipsis--l2 title-class">{{ title }}</view>
|
||||
<slot wx:else name="title" />
|
||||
<view wx:if="{{ title }}" class="van-card__title van-multi-ellipsis--l2 title-class">{{ title }}</view>
|
||||
<slot wx:else name="title" />
|
||||
|
||||
<view wx:if="{{ desc }}" class="van-card__desc van-ellipsis desc-class">{{ desc }}</view>
|
||||
<slot wx:else name="desc" />
|
||||
<view wx:if="{{ desc }}" class="van-card__desc van-ellipsis desc-class">{{ desc }}</view>
|
||||
<slot wx:else name="desc" />
|
||||
|
||||
<slot name="tags" />
|
||||
</view>
|
||||
<view class="van-card__right">
|
||||
<slot name="tags" />
|
||||
|
||||
<view class="van-card__bottom">
|
||||
<view wx:if="{{ price || price === 0 }}" class="van-card__price price-class">{{ currency }} {{ price }}</view>
|
||||
<view wx:if="{{ originPrice || originPrice === 0 }}" class="van-card__origin-price origin-price-class">{{ currency }} {{ originPrice }}</view>
|
||||
<view wx:if="{{ num }}" class="van-card__num num-class">x {{ num }}</view>
|
||||
|
2
dist/card/index.wxss
vendored
2
dist/card/index.wxss
vendored
@ -1 +1 @@
|
||||
@import '../common/index.wxss';.van-card{box-sizing:border-box;position:relative;height:100px;font-size:12px;color:#333;padding:5px 15px 5px 115px;background:#fafafa}.van-card--center{-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center}.van-card__thumb{position:absolute;top:5px;left:15px;width:90px;height:90px}.van-card__img{width:100%;height:100%}.van-card,.van-card__content{display:-webkit-flex;display:flex}.van-card__content{width:100%}.van-card__desc,.van-card__title{line-height:20px;word-break:break-all}.van-card__title{max-height:40px}.van-card__desc{max-height:20px;color:#7d7e80}.van-card__left{-webkit-flex:1;flex:1;min-width:0}.van-card__right{-webkit-flex:none;flex:none;padding-left:10px;line-height:20px;text-align:right}.van-card__origin-price{color:#7d7e80;text-decoration:line-through}.van-card__num{color:#7d7e80}.van-card__tag{position:absolute;top:2px;left:0}.van-card__footer{position:absolute;right:15px;bottom:5px}.van-card__footer .van-button{margin-left:5px}
|
||||
@import '../common/index.wxss';.van-card{position:relative;display:-webkit-flex;display:flex;padding:5px 15px;font-size:12px;color:#333;background:#fafafa;box-sizing:border-box;-webkit-flex-wrap:wrap;flex-wrap:wrap}.van-card--center{-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center}.van-card__thumb{position:relative;width:90px;height:90px;margin-right:10px;-webkit-flex:none;flex:none}.van-card__thumb:empty{display:none}.van-card__img{width:100%;height:100%}.van-card__content{position:relative;height:90px;-webkit-flex:1;flex:1}.van-card__desc,.van-card__title{line-height:17px;word-break:break-all}.van-card__title{max-height:34px;font-weight:700}.van-card__desc{max-height:17px;color:#7d7e80}.van-card__bottom{position:absolute;bottom:0;left:0;width:100%;line-height:17px}.van-card__price{display:inline-block;font-weight:700;color:#f44}.van-card__origin-price{display:inline-block;margin-left:5px;font-size:10px;color:#7d7e80;text-decoration:line-through}.van-card__num{float:right}.van-card__tag{position:absolute;top:2px;left:0}.van-card__footer{width:100%;text-align:right;-webkit-flex:none;flex:none}
|
16
dist/cell/index.js
vendored
16
dist/cell/index.js
vendored
@ -21,22 +21,6 @@ VantComponent({
|
||||
value: true
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
cellClass: function cellClass() {
|
||||
var data = this.data;
|
||||
return this.classNames('van-cell', {
|
||||
'van-cell--center': data.center,
|
||||
'van-cell--required': data.required,
|
||||
'van-cell--borderless': !data.border,
|
||||
'van-cell--clickable': data.isLink || data.clickable,
|
||||
["van-cell--" + data.size]: data.size
|
||||
});
|
||||
},
|
||||
titleStyle: function titleStyle() {
|
||||
var titleWidth = this.data.titleWidth;
|
||||
return titleWidth ? "max-width: " + titleWidth + ";min-width: " + titleWidth : '';
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
onClick: function onClick(event) {
|
||||
this.$emit('click', event.detail);
|
||||
|
6
dist/cell/index.wxml
vendored
6
dist/cell/index.wxml
vendored
@ -1,5 +1,7 @@
|
||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||
|
||||
<view
|
||||
class="custom-class {{ cellClass }}"
|
||||
class="custom-class {{ utils.bem('cell', [size, { center, required, borderless: !border, clickable: isLink || clickable }]) }}"
|
||||
style="{{ customStyle }}"
|
||||
bind:tap="onClick"
|
||||
>
|
||||
@ -12,7 +14,7 @@
|
||||
<slot wx:else name="icon" />
|
||||
|
||||
<view
|
||||
style="{{ titleStyle }}"
|
||||
style="{{ titleWidth ? 'max-width:' + titleWidth + ';min-width:' + titleWidth : '' }}"
|
||||
class="van-cell__title title-class"
|
||||
>
|
||||
<block wx:if="{{ title }}">
|
||||
|
4
dist/checkbox-group/index.js
vendored
4
dist/checkbox-group/index.js
vendored
@ -15,9 +15,9 @@ VantComponent({
|
||||
}
|
||||
},
|
||||
props: {
|
||||
max: Number,
|
||||
value: Array,
|
||||
disabled: Boolean,
|
||||
max: Number
|
||||
disabled: Boolean
|
||||
},
|
||||
watch: {
|
||||
value: function value(_value) {
|
||||
|
24
dist/checkbox/index.js
vendored
24
dist/checkbox/index.js
vendored
@ -18,30 +18,6 @@ VantComponent({
|
||||
value: 'round'
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
iconClass: function iconClass() {
|
||||
var _this$data = this.data,
|
||||
disabled = _this$data.disabled,
|
||||
value = _this$data.value,
|
||||
shape = _this$data.shape;
|
||||
return this.classNames('van-checkbox__icon', "van-checkbox__icon--" + shape, {
|
||||
'van-checkbox__icon--disabled': disabled,
|
||||
'van-checkbox__icon--checked': value
|
||||
});
|
||||
},
|
||||
iconStyle: function iconStyle() {
|
||||
var _this$data2 = this.data,
|
||||
value = _this$data2.value,
|
||||
disabled = _this$data2.disabled,
|
||||
checkedColor = _this$data2.checkedColor;
|
||||
|
||||
if (checkedColor && value && !disabled) {
|
||||
return "border-color: " + checkedColor + "; background-color: " + checkedColor;
|
||||
}
|
||||
|
||||
return '';
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
emitChange: function emitChange(value) {
|
||||
var parent = this.getRelationNodes('../checkbox-group/index')[0];
|
||||
|
8
dist/checkbox/index.wxml
vendored
8
dist/checkbox/index.wxml
vendored
@ -1,16 +1,18 @@
|
||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||
|
||||
<view class="van-checkbox custom-class">
|
||||
<view class="van-checkbox__icon-wrap" bindtap="toggle">
|
||||
<slot wx:if="{{ useIconSlot }}" name="icon" />
|
||||
<van-icon
|
||||
wx:else
|
||||
name="success"
|
||||
class="{{ iconClass }}"
|
||||
style="{{ iconStyle }}"
|
||||
class="{{ utils.bem('checkbox__icon', [shape, { disabled, checked: value }]) }}"
|
||||
style="{{ checkedColor && value && !disabled ? 'border-color:' + checkedColor + '; background-color:' + checkedColor : '' }}"
|
||||
custom-class="icon-class"
|
||||
custom-style="line-height: 20px;"
|
||||
/>
|
||||
</view>
|
||||
<view class="van-checkbox__label van-checkbox__label--{{ labelPosition }} label-class" bindtap="onClickLabel">
|
||||
<view class="label-class {{ utils.bem('checkbox__label', [labelPosition, { disabled }]) }}" bindtap="onClickLabel">
|
||||
<slot />
|
||||
</view>
|
||||
</view>
|
||||
|
2
dist/checkbox/index.wxss
vendored
2
dist/checkbox/index.wxss
vendored
@ -1 +1 @@
|
||||
@import '../common/index.wxss';.van-checkbox{overflow:hidden;-webkit-user-select:none;user-select:none}.van-checkbox__icon-wrap,.van-checkbox__label{display:inline-block;line-height:20px;vertical-align:middle}.van-checkbox__icon{box-sizing:border-box;display:block;width:20px;height:20px;border:1px solid #e5e5e5;color:transparent;font-size:14px;text-align:center;transition:.2s}.van-checkbox__icon--round{border-radius:100%}.van-checkbox__icon--checked{color:#fff;border-color:#1989fa;background-color:#1989fa}.van-checkbox__icon--disabled{border-color:#eee;background-color:currentColor;color:#f8f8f8}.van-checkbox__icon--disabled.van-checkbox__icon--checked{border-color:#eee;background-color:#eee}.van-checkbox__label{margin-left:10px}.van-checkbox__label--left{margin:0 10px 0 0;float:left}.van-checkbox__label:empty{margin:0}
|
||||
@import '../common/index.wxss';.van-checkbox{overflow:hidden;-webkit-user-select:none;user-select:none}.van-checkbox__icon-wrap,.van-checkbox__label{display:inline-block;line-height:20px;vertical-align:middle}.van-checkbox__icon{display:block;font-size:14px;width:20px;height:20px;color:transparent;text-align:center;box-sizing:border-box;border:1px solid #e5e5e5;transition:.2s}.van-checkbox__icon--round{border-radius:100%}.van-checkbox__icon--checked{color:#fff;border-color:#1989fa;background-color:#1989fa}.van-checkbox__icon--disabled{border-color:#c9c9c9;background-color:#eee}.van-checkbox__icon--disabled.van-checkbox__icon--checked{color:#c9c9c9}.van-checkbox__label{color:#333;margin-left:10px}.van-checkbox__label--left{float:left;margin:0 10px 0 0}.van-checkbox__label--disabled{color:#c9c9c9}.van-checkbox__label:empty{margin:0}
|
11
dist/col/index.js
vendored
11
dist/col/index.js
vendored
@ -11,17 +11,6 @@ VantComponent({
|
||||
data: {
|
||||
style: ''
|
||||
},
|
||||
computed: {
|
||||
classes: function classes() {
|
||||
var _this$data = this.data,
|
||||
span = _this$data.span,
|
||||
offset = _this$data.offset;
|
||||
return this.classNames('van-col', {
|
||||
["van-col--" + span]: span,
|
||||
["van-col--offset-" + offset]: offset
|
||||
});
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
setGutter: function setGutter(gutter) {
|
||||
var padding = gutter / 2 + "px";
|
||||
|
4
dist/col/index.wxml
vendored
4
dist/col/index.wxml
vendored
@ -1,5 +1,7 @@
|
||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||
|
||||
<view
|
||||
class="custom-class {{ classes }}"
|
||||
class="custom-class {{ utils.bem('col', [span]) }} {{ offset ? 'van-col--offset-' + offset : '' }}"
|
||||
style="{{ style }}"
|
||||
>
|
||||
<slot />
|
||||
|
31
dist/collapse-item/index.js
vendored
31
dist/collapse-item/index.js
vendored
@ -9,11 +9,11 @@ VantComponent({
|
||||
}
|
||||
},
|
||||
props: {
|
||||
name: [String, Number],
|
||||
name: null,
|
||||
title: null,
|
||||
value: null,
|
||||
icon: String,
|
||||
label: String,
|
||||
title: [String, Number],
|
||||
value: [String, Number],
|
||||
disabled: Boolean,
|
||||
border: {
|
||||
type: Boolean,
|
||||
@ -28,17 +28,6 @@ VantComponent({
|
||||
contentHeight: 0,
|
||||
expanded: false
|
||||
},
|
||||
computed: {
|
||||
titleClass: function titleClass() {
|
||||
var _this$data = this.data,
|
||||
disabled = _this$data.disabled,
|
||||
expanded = _this$data.expanded;
|
||||
return this.classNames('van-collapse-item__title', {
|
||||
'van-collapse-item__title--disabled': disabled,
|
||||
'van-collapse-item__title--expanded': expanded
|
||||
});
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
updateExpanded: function updateExpanded() {
|
||||
if (!this.parent) {
|
||||
@ -65,13 +54,9 @@ VantComponent({
|
||||
});
|
||||
},
|
||||
updateStyle: function updateStyle(expanded) {
|
||||
var _this = this;
|
||||
|
||||
if (expanded) {
|
||||
this.getRect('.van-collapse-item__content').then(function (res) {
|
||||
_this.set({
|
||||
contentHeight: res.height ? res.height + 'px' : null
|
||||
});
|
||||
this.set({
|
||||
contentHeight: 'auto'
|
||||
});
|
||||
} else {
|
||||
this.set({
|
||||
@ -84,9 +69,9 @@ VantComponent({
|
||||
return;
|
||||
}
|
||||
|
||||
var _this$data2 = this.data,
|
||||
name = _this$data2.name,
|
||||
expanded = _this$data2.expanded;
|
||||
var _this$data = this.data,
|
||||
name = _this$data.name,
|
||||
expanded = _this$data.expanded;
|
||||
var index = this.parent.data.items.indexOf(this);
|
||||
var currentName = name == null ? index : name;
|
||||
this.parent.switch(currentName, !expanded);
|
||||
|
4
dist/collapse-item/index.wxml
vendored
4
dist/collapse-item/index.wxml
vendored
@ -1,3 +1,5 @@
|
||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||
|
||||
<view class="van-collapse-item van-hairline--top custom-class">
|
||||
<van-cell
|
||||
title="{{ title }}"
|
||||
@ -6,7 +8,7 @@
|
||||
value="{{ value }}"
|
||||
label="{{ label }}"
|
||||
border="{{ border && expanded }}"
|
||||
class="{{ titleClass }}"
|
||||
class="{{ utils.bem('collapse-item__title', { disabled, expanded }) }}"
|
||||
right-icon-class="van-cell__right-icon"
|
||||
custom-class="van-cell"
|
||||
bind:click="onClick"
|
||||
|
2
dist/collapse-item/index.wxss
vendored
2
dist/collapse-item/index.wxss
vendored
@ -1 +1 @@
|
||||
@import '../common/index.wxss';.van-collapse-item__title .van-cell__right-icon{-webkit-transform:rotate(90deg);transform:rotate(90deg);transition:.3s}.van-collapse-item__title--expanded .van-cell__right-icon{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}.van-collapse-item__title--disabled .van-cell,.van-collapse-item__title--disabled .van-cell__right-icon{color:#c9c9c9!important}.van-collapse-item__title--disabled:active{background-color:#fff!important}.van-collapse-item__wrapper{overflow:hidden;will-change:max-height;transition:max-height .3s ease-in-out}.van-collapse-item__content{padding:15px;background-color:#fff}
|
||||
@import '../common/index.wxss';.van-collapse-item__title .van-cell__right-icon{-webkit-transform:rotate(90deg);transform:rotate(90deg);transition:.3s}.van-collapse-item__title--expanded .van-cell__right-icon{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}.van-collapse-item__title--disabled .van-cell,.van-collapse-item__title--disabled .van-cell__right-icon{color:#c9c9c9!important}.van-collapse-item__title--disabled .van-cell:active{background-color:#fff!important}.van-collapse-item__wrapper{overflow:hidden;will-change:max-height;transition:max-height .3s ease-in-out}.van-collapse-item__content{color:#999;padding:15px;font-size:13px;line-height:1.5;background-color:#fff}
|
29
dist/common/class-names.js
vendored
29
dist/common/class-names.js
vendored
@ -1,29 +0,0 @@
|
||||
var hasOwn = {}.hasOwnProperty;
|
||||
export function classNames() {
|
||||
var classes = [];
|
||||
|
||||
for (var i = 0; i < arguments.length; i++) {
|
||||
var arg = arguments[i];
|
||||
if (!arg) continue;
|
||||
var argType = typeof arg;
|
||||
|
||||
if (argType === 'string' || argType === 'number') {
|
||||
classes.push(arg);
|
||||
} else if (Array.isArray(arg) && arg.length) {
|
||||
var inner = classNames.apply(null, arg);
|
||||
|
||||
if (inner) {
|
||||
classes.push(inner);
|
||||
}
|
||||
} else if (argType === 'object') {
|
||||
for (var key in arg) {
|
||||
if (hasOwn.call(arg, key) && arg[key]) {
|
||||
classes.push(key);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return classes.join(' ');
|
||||
}
|
||||
;
|
6
dist/common/utils.js
vendored
6
dist/common/utils.js
vendored
@ -11,4 +11,8 @@ function isNumber(value) {
|
||||
return /^\d+$/.test(value);
|
||||
}
|
||||
|
||||
export { isObj, isDef, isNumber };
|
||||
function range(num, min, max) {
|
||||
return Math.min(Math.max(num, min), max);
|
||||
}
|
||||
|
||||
export { isObj, isDef, isNumber, range };
|
5
dist/common/utils.wxs
vendored
5
dist/common/utils.wxs
vendored
@ -1,5 +0,0 @@
|
||||
function isSrc(url) {
|
||||
return url.indexOf('http') === 0 || url.indexOf('data:image') === 0;
|
||||
}
|
||||
|
||||
module.exports.isSrc = isSrc;
|
1
dist/dialog/dialog.js
vendored
1
dist/dialog/dialog.js
vendored
@ -33,6 +33,7 @@ Dialog.defaultOptions = {
|
||||
zIndex: 100,
|
||||
overlay: true,
|
||||
asyncClose: false,
|
||||
messageAlign: '',
|
||||
transition: 'scale',
|
||||
selector: '#van-dialog',
|
||||
confirmButtonText: '确认',
|
||||
|
8
dist/dialog/index.js
vendored
8
dist/dialog/index.js
vendored
@ -8,6 +8,7 @@ VantComponent({
|
||||
message: String,
|
||||
useSlot: Boolean,
|
||||
asyncClose: Boolean,
|
||||
messageAlign: String,
|
||||
showCancelButton: Boolean,
|
||||
closeOnClickOverlay: Boolean,
|
||||
confirmButtonOpenType: String,
|
||||
@ -84,8 +85,11 @@ VantComponent({
|
||||
this.close();
|
||||
}
|
||||
|
||||
this.$emit('close', action);
|
||||
this.$emit(action);
|
||||
this.$emit('close', action); //把 dialog 实例传递出去,可以通过 stopLoading() 在外部关闭按钮的 loading
|
||||
|
||||
this.$emit(action, {
|
||||
dialog: this
|
||||
});
|
||||
var callback = this.data[action === 'confirm' ? 'onConfirm' : 'onCancel'];
|
||||
|
||||
if (callback) {
|
||||
|
2
dist/dialog/index.wxml
vendored
2
dist/dialog/index.wxml
vendored
@ -17,7 +17,7 @@
|
||||
<slot wx:if="{{ useSlot }}" />
|
||||
<view
|
||||
wx:elif="{{ message }}"
|
||||
class="van-dialog__message {{ title ? 'van-dialog__message--has-title' : '' }}"
|
||||
class="van-dialog__message {{ title ? 'van-dialog__message--has-title' : '' }} {{ messageAlign ? 'van-dialog__message--' + messageAlign : '' }}"
|
||||
>
|
||||
<text>{{ message }}</text>
|
||||
</view>
|
||||
|
2
dist/dialog/index.wxss
vendored
2
dist/dialog/index.wxss
vendored
@ -1 +1 @@
|
||||
@import '../common/index.wxss';.van-dialog{width:85%;font-size:16px;overflow:hidden;border-radius:4px;background-color:#fff}.van-dialog__header{font-weight:500;padding-top:25px;text-align:center}.van-dialog__header--isolated{padding:25px 0}.van-dialog__message{padding:25px;font-size:14px;line-height:1.5;max-height:60vh;overflow-y:auto;-webkit-overflow-scrolling:touch}.van-dialog__message--has-title{padding-top:12px;color:#7d7e80}.van-dialog__footer{display:-webkit-flex;display:flex}.van-dialog__button{-webkit-flex:1;flex:1}.van-dialog__cancel,.van-dialog__confirm{border:0!important}.van-dialog__confirm,.van-dialog__confirm:active{color:#1989fa!important}.van-dialog-bounce-enter{opacity:0;-webkit-transform:translate3d(-50%,-50%,0) scale(.7);transform:translate3d(-50%,-50%,0) scale(.7)}.van-dialog-bounce-leave-active{opacity:0;-webkit-transform:translate3d(-50%,-50%,0) scale(.9);transform:translate3d(-50%,-50%,0) scale(.9)}
|
||||
@import '../common/index.wxss';.van-dialog{width:85%;font-size:16px;overflow:hidden;border-radius:4px;background-color:#fff}.van-dialog__header{font-weight:500;padding-top:25px;text-align:center}.van-dialog__header--isolated{padding:25px 0}.van-dialog__message{padding:25px;font-size:14px;line-height:1.5;max-height:60vh;overflow-y:auto;text-align:center;-webkit-overflow-scrolling:touch}.van-dialog__message--has-title{padding-top:12px;color:#7d7e80}.van-dialog__message--left{text-align:left}.van-dialog__message--right{text-align:right}.van-dialog__footer{display:-webkit-flex;display:flex}.van-dialog__button{-webkit-flex:1;flex:1}.van-dialog__cancel,.van-dialog__confirm{border:0!important}.van-dialog__confirm,.van-dialog__confirm:active{color:#1989fa!important}.van-dialog-bounce-enter{opacity:0;-webkit-transform:translate3d(-50%,-50%,0) scale(.7);transform:translate3d(-50%,-50%,0) scale(.7)}.van-dialog-bounce-leave-active{opacity:0;-webkit-transform:translate3d(-50%,-50%,0) scale(.9);transform:translate3d(-50%,-50%,0) scale(.9)}
|
15
dist/field/index.js
vendored
15
dist/field/index.js
vendored
@ -26,6 +26,10 @@ VantComponent({
|
||||
customStyle: String,
|
||||
useIconSlot: Boolean,
|
||||
useButtonSlot: Boolean,
|
||||
showConfirmBar: {
|
||||
type: Boolean,
|
||||
value: true
|
||||
},
|
||||
placeholderStyle: String,
|
||||
adjustPosition: {
|
||||
type: Boolean,
|
||||
@ -55,17 +59,6 @@ VantComponent({
|
||||
data: {
|
||||
showClear: false
|
||||
},
|
||||
computed: {
|
||||
inputClass: function inputClass() {
|
||||
var data = this.data;
|
||||
return this.classNames('input-class', 'van-field__input', {
|
||||
'van-field--error': data.error,
|
||||
'van-field__textarea': data.type === 'textarea',
|
||||
'van-field__input--disabled': data.disabled,
|
||||
["van-field__input--" + data.inputAlign]: data.inputAlign
|
||||
});
|
||||
}
|
||||
},
|
||||
beforeCreate: function beforeCreate() {
|
||||
this.focused = false;
|
||||
},
|
||||
|
11
dist/field/index.wxml
vendored
11
dist/field/index.wxml
vendored
@ -1,3 +1,5 @@
|
||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||
|
||||
<van-cell
|
||||
icon="{{ leftIcon }}"
|
||||
title="{{ label }}"
|
||||
@ -14,7 +16,7 @@
|
||||
<view class="van-field__body {{ type === 'textarea' ? 'van-field__body--textarea' : '' }}">
|
||||
<textarea
|
||||
wx:if="{{ type === 'textarea' }}"
|
||||
class="{{ inputClass }}"
|
||||
class="input-class {{ utils.bem('field__input', [inputAlign, { disabled, error }]) }}"
|
||||
fixed="{{ fixed }}"
|
||||
focus="{{ focus }}"
|
||||
value="{{ value }}"
|
||||
@ -23,9 +25,10 @@
|
||||
auto-height="{{ autosize }}"
|
||||
placeholder="{{ placeholder }}"
|
||||
placeholder-style="{{ placeholderStyle }}"
|
||||
placeholder-class="{{ error ? 'van-field--error' : '' }}"
|
||||
placeholder-class="{{ error ? 'van-field__input--error' : '' }}"
|
||||
cursor-spacing="{{ cursorSpacing }}"
|
||||
adjust-position="{{ adjustPosition }}"
|
||||
show-confirm-bar="{{ showConfirmBar }}"
|
||||
bindinput="onInput"
|
||||
bind:blur="onBlur"
|
||||
bind:focus="onFocus"
|
||||
@ -33,7 +36,7 @@
|
||||
/>
|
||||
<input
|
||||
wx:else
|
||||
class="{{ inputClass }}"
|
||||
class="input-class {{ utils.bem('field__input', [inputAlign, { disabled, error }]) }}"
|
||||
type="{{ type }}"
|
||||
focus="{{ focus }}"
|
||||
value="{{ value }}"
|
||||
@ -41,7 +44,7 @@
|
||||
maxlength="{{ maxlength }}"
|
||||
placeholder="{{ placeholder }}"
|
||||
placeholder-style="{{ placeholderStyle }}"
|
||||
placeholder-class="{{ error ? 'van-field--error' : '' }}"
|
||||
placeholder-class="{{ error ? 'van-field__input--error' : '' }}"
|
||||
confirm-type="{{ confirmType }}"
|
||||
confirm-hold="{{ confirmHold }}"
|
||||
cursor-spacing="{{ cursorSpacing }}"
|
||||
|
2
dist/field/index.wxss
vendored
2
dist/field/index.wxss
vendored
@ -1 +1 @@
|
||||
@import '../common/index.wxss';.van-field__body{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center}.van-field__body--textarea{min-height:24px}.van-field__input{border:0;margin:0;padding:0;width:100%;height:24px;resize:none;display:block;text-align:left;min-height:24px;line-height:inherit;box-sizing:border-box;background-color:transparent}.van-field__input--disabled{opacity:1;color:#7d7e80;background-color:transparent}.van-field__input--center{text-align:center}.van-field__input--right{text-align:right}.van-field__clear-root{height:24px}.van-field__button,.van-field__clear,.van-field__icon-container{-webkit-flex-shrink:0;flex-shrink:0}.van-field__clear,.van-field__icon-container{padding:0 10px;line-height:inherit;margin-right:-10px;vertical-align:middle}.van-field__clear{color:#c9c9c9}.van-field__icon-container{color:#999}.van-field__icon{display:block!important}.van-field__button{padding-left:10px}.van-field__error-message{color:#f44;font-size:12px;text-align:left}.van-field--error{color:#f44}
|
||||
@import '../common/index.wxss';.van-field__body{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center}.van-field__body--textarea{min-height:24px}.van-field__input{border:0;margin:0;padding:0;width:100%;height:24px;resize:none;display:block;text-align:left;min-height:24px;line-height:inherit;box-sizing:border-box;background-color:transparent}.van-field__input--disabled{opacity:1;color:#7d7e80;background-color:transparent}.van-field__input--center{text-align:center}.van-field__input--right{text-align:right}.van-field__input--error{color:#f44}.van-field__clear-root{height:24px}.van-field__button,.van-field__clear,.van-field__icon-container{-webkit-flex-shrink:0;flex-shrink:0}.van-field__clear,.van-field__icon-container{padding:0 10px;line-height:inherit;margin-right:-10px;vertical-align:middle}.van-field__clear{color:#c9c9c9}.van-field__icon-container{color:#999}.van-field__icon{display:block!important}.van-field__button{padding-left:10px}.van-field__error-message{color:#f44;font-size:12px;text-align:left}
|
18
dist/goods-action/index.js
vendored
18
dist/goods-action/index.js
vendored
@ -1,19 +1,5 @@
|
||||
import { VantComponent } from '../common/component';
|
||||
import { iphonex } from '../mixins/iphonex';
|
||||
VantComponent({
|
||||
props: {
|
||||
safeAreaInsetBottom: {
|
||||
type: Boolean,
|
||||
value: true
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
rootClass: function rootClass() {
|
||||
var _this$data = this.data,
|
||||
safeAreaInsetBottom = _this$data.safeAreaInsetBottom,
|
||||
isIPhoneX = _this$data.isIPhoneX;
|
||||
return this.classNames('van-goods-action', 'custom-class', {
|
||||
["van-goods-action--safe"]: isIPhoneX && safeAreaInsetBottom
|
||||
});
|
||||
}
|
||||
}
|
||||
mixins: [iphonex]
|
||||
});
|
4
dist/goods-action/index.wxml
vendored
4
dist/goods-action/index.wxml
vendored
@ -1,3 +1,5 @@
|
||||
<view class="{{ rootClass }}">
|
||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||
|
||||
<view class="custom-class {{ utils.bem('goods-action', { safe: isIPhoneX && safeAreaInsetBottom }) }}">
|
||||
<slot />
|
||||
</view>
|
||||
|
5
dist/icon/index.json
vendored
5
dist/icon/index.json
vendored
@ -1,3 +1,6 @@
|
||||
{
|
||||
"component": true
|
||||
"component": true,
|
||||
"usingComponents": {
|
||||
"van-info": "../info/index"
|
||||
}
|
||||
}
|
||||
|
12
dist/icon/index.wxml
vendored
12
dist/icon/index.wxml
vendored
@ -1,18 +1,16 @@
|
||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||
|
||||
<view
|
||||
class="custom-class {{ classPrefix }} {{ utils.isSrc(name) ? 'van-icon--image' : classPrefix + '-' + name }}"
|
||||
style="{{ color ? 'color: ' + color + ';' : '' }}{{ size ? 'font-size: ' + size + ';' : '' }}{{ customStyle }}"
|
||||
bind:tap="onClick"
|
||||
>
|
||||
<view
|
||||
<van-info
|
||||
wx:if="{{ info !== null }}"
|
||||
class="van-icon__info"
|
||||
>
|
||||
{{ info }}
|
||||
</view>
|
||||
info="{{ info }}"
|
||||
/>
|
||||
<image
|
||||
wx:if="{{ utils.isSrc(name) }}"
|
||||
src="{{ name }}"
|
||||
/>
|
||||
</view>
|
||||
|
||||
<wxs src="../common/utils.wxs" module="utils" />
|
||||
|
2
dist/icon/index.wxss
vendored
2
dist/icon/index.wxss
vendored
File diff suppressed because one or more lines are too long
7
dist/info/index.js
vendored
Normal file
7
dist/info/index.js
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
import { VantComponent } from '../common/component';
|
||||
VantComponent({
|
||||
props: {
|
||||
info: null,
|
||||
customStyle: String
|
||||
}
|
||||
});
|
3
dist/info/index.json
vendored
Normal file
3
dist/info/index.json
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"component": true
|
||||
}
|
7
dist/info/index.wxml
vendored
Normal file
7
dist/info/index.wxml
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
<view
|
||||
wx:if="{{ info !== null }}"
|
||||
class="custom-class van-info"
|
||||
style="{{ customStyle }}"
|
||||
>
|
||||
{{ info }}
|
||||
</view>
|
1
dist/info/index.wxss
vendored
Normal file
1
dist/info/index.wxss
vendored
Normal file
@ -0,0 +1 @@
|
||||
@import '../common/index.wxss';.van-info{position:absolute;right:0;top:-8px;color:#fff;font-size:12px;font-weight:500;font-family:PingFang SC,Helvetica Neue,Arial,sans-serif;text-align:center;box-sizing:border-box;padding:0 3px;min-width:16px;line-height:14px;border:1px solid #fff;border-radius:16px;background-color:#f44;-webkit-transform:translateX(50%);transform:translateX(50%);-webkit-transform-origin:100%;transform-origin:100%}
|
24
dist/mixins/basic.js
vendored
24
dist/mixins/basic.js
vendored
@ -1,33 +1,13 @@
|
||||
import { classNames } from '../common/class-names';
|
||||
export var basic = Behavior({
|
||||
created: function created() {
|
||||
var _this = this;
|
||||
|
||||
wx.getSystemInfo({
|
||||
success: function success(_ref) {
|
||||
var model = _ref.model,
|
||||
screenHeight = _ref.screenHeight;
|
||||
var isIphoneX = /iphone x/i.test(model);
|
||||
var isIphoneNew = /iPhone11/i.test(model) && screenHeight === 812;
|
||||
|
||||
if (isIphoneX || isIphoneNew) {
|
||||
_this.set({
|
||||
isIPhoneX: true
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
methods: {
|
||||
classNames: classNames,
|
||||
$emit: function $emit() {
|
||||
this.triggerEvent.apply(this, arguments);
|
||||
},
|
||||
getRect: function getRect(selector, all) {
|
||||
var _this2 = this;
|
||||
var _this = this;
|
||||
|
||||
return new Promise(function (resolve) {
|
||||
wx.createSelectorQuery().in(_this2)[all ? 'selectAll' : 'select'](selector).boundingClientRect(function (rect) {
|
||||
wx.createSelectorQuery().in(_this)[all ? 'selectAll' : 'select'](selector).boundingClientRect(function (rect) {
|
||||
if (all && Array.isArray(rect) && rect.length) {
|
||||
resolve(rect);
|
||||
}
|
||||
|
39
dist/mixins/iphonex.js
vendored
Normal file
39
dist/mixins/iphonex.js
vendored
Normal file
@ -0,0 +1,39 @@
|
||||
var isIPhoneX = null;
|
||||
|
||||
function getIsIPhoneX() {
|
||||
return new Promise(function (resolve, reject) {
|
||||
if (isIPhoneX !== null) {
|
||||
resolve(isIPhoneX);
|
||||
} else {
|
||||
wx.getSystemInfo({
|
||||
success: function success(_ref) {
|
||||
var model = _ref.model,
|
||||
screenHeight = _ref.screenHeight;
|
||||
var iphoneX = /iphone x/i.test(model);
|
||||
var iphoneNew = /iPhone11/i.test(model) && screenHeight === 812;
|
||||
isIPhoneX = iphoneX || iphoneNew;
|
||||
resolve(isIPhoneX);
|
||||
},
|
||||
fail: reject
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
export var iphonex = Behavior({
|
||||
properties: {
|
||||
safeAreaInsetBottom: {
|
||||
type: Boolean,
|
||||
value: true
|
||||
}
|
||||
},
|
||||
created: function created() {
|
||||
var _this = this;
|
||||
|
||||
getIsIPhoneX().then(function (isIPhoneX) {
|
||||
_this.set({
|
||||
isIPhoneX: isIPhoneX
|
||||
});
|
||||
});
|
||||
}
|
||||
});
|
132
dist/picker-column/index.js
vendored
Normal file
132
dist/picker-column/index.js
vendored
Normal file
@ -0,0 +1,132 @@
|
||||
import { VantComponent } from '../common/component';
|
||||
import { isObj, range } from '../common/utils';
|
||||
var DEFAULT_DURATION = 200;
|
||||
VantComponent({
|
||||
classes: ['active-class'],
|
||||
props: {
|
||||
valueKey: String,
|
||||
className: String,
|
||||
itemHeight: Number,
|
||||
visibleItemCount: Number,
|
||||
initialOptions: {
|
||||
type: Array,
|
||||
value: []
|
||||
},
|
||||
defaultIndex: {
|
||||
type: Number,
|
||||
value: 0
|
||||
}
|
||||
},
|
||||
data: {
|
||||
startY: 0,
|
||||
offset: 0,
|
||||
duration: 0,
|
||||
startOffset: 0,
|
||||
options: [],
|
||||
currentIndex: 0
|
||||
},
|
||||
created: function created() {
|
||||
var _this$data = this.data,
|
||||
defaultIndex = _this$data.defaultIndex,
|
||||
initialOptions = _this$data.initialOptions;
|
||||
this.set({
|
||||
currentIndex: defaultIndex,
|
||||
options: initialOptions
|
||||
});
|
||||
},
|
||||
computed: {
|
||||
count: function count() {
|
||||
return this.data.options.length;
|
||||
},
|
||||
baseOffset: function baseOffset() {
|
||||
var data = this.data;
|
||||
return data.itemHeight * (data.visibleItemCount - 1) / 2;
|
||||
},
|
||||
wrapperStyle: function wrapperStyle() {
|
||||
var data = this.data;
|
||||
return ["transition: " + data.duration + "ms", "transform: translate3d(0, " + (data.offset + data.baseOffset) + "px, 0)", "line-height: " + data.itemHeight + "px"].join('; ');
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
defaultIndex: function defaultIndex(value) {
|
||||
this.setIndex(value);
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
onTouchStart: function onTouchStart(event) {
|
||||
this.set({
|
||||
startY: event.touches[0].clientY,
|
||||
startOffset: this.data.offset,
|
||||
duration: 0
|
||||
});
|
||||
},
|
||||
onTouchMove: function onTouchMove(event) {
|
||||
var data = this.data;
|
||||
var deltaY = event.touches[0].clientY - data.startY;
|
||||
this.set({
|
||||
offset: range(data.startOffset + deltaY, -(data.count * data.itemHeight), data.itemHeight)
|
||||
});
|
||||
},
|
||||
onTouchEnd: function onTouchEnd() {
|
||||
var data = this.data;
|
||||
|
||||
if (data.offset !== data.startOffset) {
|
||||
this.set({
|
||||
duration: DEFAULT_DURATION
|
||||
});
|
||||
var index = range(Math.round(-data.offset / data.itemHeight), 0, data.count - 1);
|
||||
this.setIndex(index, true);
|
||||
}
|
||||
},
|
||||
onClickItem: function onClickItem(event) {
|
||||
var index = event.currentTarget.dataset.index;
|
||||
this.setIndex(index, true);
|
||||
},
|
||||
adjustIndex: function adjustIndex(index) {
|
||||
var data = this.data;
|
||||
index = range(index, 0, data.count);
|
||||
|
||||
for (var i = index; i < data.count; i++) {
|
||||
if (!this.isDisabled(data.options[i])) return i;
|
||||
}
|
||||
|
||||
for (var _i = index - 1; _i >= 0; _i--) {
|
||||
if (!this.isDisabled(data.options[_i])) return _i;
|
||||
}
|
||||
},
|
||||
isDisabled: function isDisabled(option) {
|
||||
return isObj(option) && option.disabled;
|
||||
},
|
||||
getOptionText: function getOptionText(option) {
|
||||
var data = this.data;
|
||||
return isObj(option) && data.valueKey in option ? option[data.valueKey] : option;
|
||||
},
|
||||
setIndex: function setIndex(index, userAction) {
|
||||
var data = this.data;
|
||||
index = this.adjustIndex(index) || 0;
|
||||
this.set({
|
||||
offset: -index * data.itemHeight
|
||||
});
|
||||
|
||||
if (index !== data.currentIndex) {
|
||||
this.set({
|
||||
currentIndex: index
|
||||
});
|
||||
userAction && this.$emit('change', index);
|
||||
}
|
||||
},
|
||||
setValue: function setValue(value) {
|
||||
var options = this.data.options;
|
||||
|
||||
for (var i = 0; i < options.length; i++) {
|
||||
if (this.getOptionText(options[i]) === value) {
|
||||
return this.setIndex(i);
|
||||
}
|
||||
}
|
||||
},
|
||||
getValue: function getValue() {
|
||||
var data = this.data;
|
||||
return data.options[data.currentIndex];
|
||||
}
|
||||
}
|
||||
});
|
3
dist/picker-column/index.json
vendored
Normal file
3
dist/picker-column/index.json
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"component": true
|
||||
}
|
31
dist/picker-column/index.wxml
vendored
Normal file
31
dist/picker-column/index.wxml
vendored
Normal file
@ -0,0 +1,31 @@
|
||||
<view
|
||||
class="van-picker-column custom-class"
|
||||
style="height: {{ itemHeight * visibleItemCount }}px"
|
||||
bind:touchstart="onTouchStart"
|
||||
catch:touchmove="onTouchMove"
|
||||
bind:touchend="onTouchEnd"
|
||||
bind:touchcancel="onTouchEnd"
|
||||
>
|
||||
<view style="{{ wrapperStyle }}">
|
||||
<view
|
||||
wx:for="{{ options }}"
|
||||
wx:for-item="option"
|
||||
wx:key="index"
|
||||
data-index="{{ index }}"
|
||||
style="height: {{ itemHeight }}px"
|
||||
class="van-ellipsis van-picker-column__item {{ option && option.disabled ? 'van-picker-column__item--disabled' : '' }} {{ index === currentIndex ? 'van-picker-column__item--selected active-class' : '' }}"
|
||||
bindtap="onClickItem"
|
||||
>{{ getOptionText(option, valueKey) }}</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<wxs module="getOptionText">
|
||||
function isObj(x) {
|
||||
var type = typeof x;
|
||||
return x !== null && (type === 'object' || type === 'function');
|
||||
}
|
||||
|
||||
module.exports = function (option, valueKey) {
|
||||
return isObj(option) && option[valueKey] ? option[valueKey] : option;
|
||||
}
|
||||
</wxs>
|
1
dist/picker-column/index.wxss
vendored
Normal file
1
dist/picker-column/index.wxss
vendored
Normal file
@ -0,0 +1 @@
|
||||
@import '../common/index.wxss';.van-picker-column{overflow:hidden;font-size:16px;text-align:center}.van-picker-column__item{padding:0 5px;color:#999}.van-picker-column__item--selected{font-weight:500;color:#333}.van-picker-column__item--disabled{opacity:.3}
|
155
dist/picker/index.js
vendored
Normal file
155
dist/picker/index.js
vendored
Normal file
@ -0,0 +1,155 @@
|
||||
import { VantComponent } from '../common/component';
|
||||
VantComponent({
|
||||
classes: ['active-class', 'toolbar-class', 'column-class'],
|
||||
props: {
|
||||
title: String,
|
||||
loading: Boolean,
|
||||
showToolbar: Boolean,
|
||||
confirmButtonText: String,
|
||||
cancelButtonText: String,
|
||||
visibleItemCount: {
|
||||
type: Number,
|
||||
value: 5
|
||||
},
|
||||
valueKey: {
|
||||
type: String,
|
||||
value: 'text'
|
||||
},
|
||||
itemHeight: {
|
||||
type: Number,
|
||||
value: 44
|
||||
},
|
||||
columns: {
|
||||
type: Array,
|
||||
value: [],
|
||||
observer: function observer(columns) {
|
||||
var _this = this;
|
||||
|
||||
if (columns === void 0) {
|
||||
columns = [];
|
||||
}
|
||||
|
||||
this.set({
|
||||
simple: columns.length && !columns[0].values
|
||||
}, function () {
|
||||
var children = _this.children = _this.selectAllComponents('.van-picker__column');
|
||||
|
||||
if (Array.isArray(children) && children.length) {
|
||||
_this.setColumns();
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
noop: function noop() {},
|
||||
setColumns: function setColumns() {
|
||||
var _this2 = this;
|
||||
|
||||
var data = this.data;
|
||||
var columns = data.simple ? [{
|
||||
values: data.columns
|
||||
}] : data.columns;
|
||||
columns.forEach(function (columns, index) {
|
||||
_this2.setColumnValues(index, columns.values);
|
||||
});
|
||||
},
|
||||
emit: function emit(event) {
|
||||
var type = event.currentTarget.dataset.type;
|
||||
|
||||
if (this.data.simple) {
|
||||
this.$emit(type, {
|
||||
value: this.getColumnValue(0),
|
||||
index: this.getColumnIndex(0)
|
||||
});
|
||||
} else {
|
||||
this.$emit(type, {
|
||||
value: this.getValues(),
|
||||
index: this.getIndexes()
|
||||
});
|
||||
}
|
||||
},
|
||||
onChange: function onChange(event) {
|
||||
if (this.data.simple) {
|
||||
this.$emit('change', {
|
||||
picker: this,
|
||||
value: this.getColumnValue(0),
|
||||
index: this.getColumnIndex(0)
|
||||
});
|
||||
} else {
|
||||
this.$emit('change', {
|
||||
picker: this,
|
||||
value: this.getValues(),
|
||||
index: event.currentTarget.dataset.index
|
||||
});
|
||||
}
|
||||
},
|
||||
// get column instance by index
|
||||
getColumn: function getColumn(index) {
|
||||
return this.children[index];
|
||||
},
|
||||
// get column value by index
|
||||
getColumnValue: function getColumnValue(index) {
|
||||
var column = this.getColumn(index);
|
||||
return column && column.getValue();
|
||||
},
|
||||
// set column value by index
|
||||
setColumnValue: function setColumnValue(index, value) {
|
||||
var column = this.getColumn(index);
|
||||
column && column.setValue(value);
|
||||
},
|
||||
// get column option index by column index
|
||||
getColumnIndex: function getColumnIndex(columnIndex) {
|
||||
return (this.getColumn(columnIndex) || {}).data.currentIndex;
|
||||
},
|
||||
// set column option index by column index
|
||||
setColumnIndex: function setColumnIndex(columnIndex, optionIndex) {
|
||||
var column = this.getColumn(columnIndex);
|
||||
column && column.setIndex(optionIndex);
|
||||
},
|
||||
// get options of column by index
|
||||
getColumnValues: function getColumnValues(index) {
|
||||
return (this.children[index] || {}).data.options;
|
||||
},
|
||||
// set options of column by index
|
||||
setColumnValues: function setColumnValues(index, options) {
|
||||
var column = this.children[index];
|
||||
|
||||
if (column && JSON.stringify(column.data.options) !== JSON.stringify(options)) {
|
||||
column.set({
|
||||
options: options
|
||||
}, function () {
|
||||
column.setIndex(0);
|
||||
});
|
||||
}
|
||||
},
|
||||
// get values of all columns
|
||||
getValues: function getValues() {
|
||||
return this.children.map(function (child) {
|
||||
return child.getValue();
|
||||
});
|
||||
},
|
||||
// set values of all columns
|
||||
setValues: function setValues(values) {
|
||||
var _this3 = this;
|
||||
|
||||
values.forEach(function (value, index) {
|
||||
_this3.setColumnValue(index, value);
|
||||
});
|
||||
},
|
||||
// get indexes of all columns
|
||||
getIndexes: function getIndexes() {
|
||||
return this.children.map(function (child) {
|
||||
return child.data.currentIndex;
|
||||
});
|
||||
},
|
||||
// set indexes of all columns
|
||||
setIndexes: function setIndexes(indexes) {
|
||||
var _this4 = this;
|
||||
|
||||
indexes.forEach(function (optionIndex, columnIndex) {
|
||||
_this4.setColumnIndex(columnIndex, optionIndex);
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
7
dist/picker/index.json
vendored
Normal file
7
dist/picker/index.json
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {
|
||||
"picker-column": "../picker-column/index",
|
||||
"loading": "../loading/index"
|
||||
}
|
||||
}
|
41
dist/picker/index.wxml
vendored
Normal file
41
dist/picker/index.wxml
vendored
Normal file
@ -0,0 +1,41 @@
|
||||
<view class="van-picker custom-class">
|
||||
<view
|
||||
wx:if="{{ showToolbar }}"
|
||||
class="van-picker__toolbar van-hairline--top-bottom toolbar-class"
|
||||
>
|
||||
<view class="van-picker__cancel" data-type="cancel" bindtap="emit">
|
||||
{{ cancelButtonText || '取消' }}
|
||||
</view>
|
||||
<view wx:if="{{ title }}" class="van-picker__title van-ellipsis">{{ title }}</view>
|
||||
<view class="van-picker__confirm" data-type="confirm" bindtap="emit">
|
||||
{{ confirmButtonText || '确认' }}
|
||||
</view>
|
||||
</view>
|
||||
<view wx:if="{{ loading }}" class="van-picker__loading">
|
||||
<loading color="#1989fa"/>
|
||||
</view>
|
||||
<view
|
||||
class="van-picker__columns"
|
||||
style="height: {{ itemHeight * visibleItemCount }}px"
|
||||
catch:touchmove="noop"
|
||||
>
|
||||
<picker-column
|
||||
class="van-picker__column"
|
||||
wx:for="{{ simple ? [columns] : columns }}"
|
||||
wx:key="index"
|
||||
data-index="{{ index }}"
|
||||
custom-class="column-class"
|
||||
value-key="{{ valueKey }}"
|
||||
initial-options="{{ simple ? item : item.values }}"
|
||||
default-index="{{ item.defaultIndex }}"
|
||||
item-height="{{ itemHeight }}"
|
||||
visible-item-count="{{ visibleItemCount }}"
|
||||
active-class="active-class"
|
||||
bind:change="onChange"
|
||||
/>
|
||||
<view
|
||||
class="van-picker__frame van-hairline--top-bottom"
|
||||
style="height: {{ itemHeight }}px"
|
||||
/>
|
||||
</view>
|
||||
</view>
|
1
dist/picker/index.wxss
vendored
Normal file
1
dist/picker/index.wxss
vendored
Normal file
@ -0,0 +1 @@
|
||||
@import '../common/index.wxss';.van-picker{position:relative;overflow:hidden;-webkit-text-size-adjust:100%;background-color:#fff;-webkit-user-select:none;user-select:none}.van-picker__toolbar{display:-webkit-flex;display:flex;height:44px;line-height:44px;-webkit-justify-content:space-between;justify-content:space-between}.van-picker__cancel,.van-picker__confirm{padding:0 15px;font-size:14px;color:#1989fa}.van-picker__cancel:active,.van-picker__confirm:active{background-color:#e8e8e8}.van-picker__title{max-width:50%;font-size:16px;font-weight:500;text-align:center}.van-picker__columns{position:relative;display:-webkit-flex;display:flex}.van-picker__column{-webkit-flex:1;flex:1}.van-picker__loading{position:absolute;top:0;right:0;bottom:0;left:0;z-index:4;display:-webkit-flex;display:flex;background-color:rgba(255,255,255,.9);-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center}.van-picker__frame,.van-picker__loading .van-loading{position:absolute;top:50%;left:0;z-index:1;width:100%;pointer-events:none;-webkit-transform:translateY(-50%);transform:translateY(-50%)}
|
19
dist/popup/index.js
vendored
19
dist/popup/index.js
vendored
@ -1,7 +1,8 @@
|
||||
import { VantComponent } from '../common/component';
|
||||
import { transition } from '../mixins/transition';
|
||||
import { iphonex } from '../mixins/iphonex';
|
||||
VantComponent({
|
||||
mixins: [transition(false)],
|
||||
mixins: [transition(false), iphonex],
|
||||
props: {
|
||||
transition: String,
|
||||
customStyle: String,
|
||||
@ -21,22 +22,6 @@ VantComponent({
|
||||
position: {
|
||||
type: String,
|
||||
value: 'center'
|
||||
},
|
||||
safeAreaInsetBottom: {
|
||||
type: Boolean,
|
||||
value: true
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
popupClass: function popupClass() {
|
||||
var _this$data = this.data,
|
||||
position = _this$data.position,
|
||||
safeAreaInsetBottom = _this$data.safeAreaInsetBottom,
|
||||
isIPhoneX = _this$data.isIPhoneX;
|
||||
return this.classNames('custom-class', 'van-popup', {
|
||||
["van-popup--" + position]: position,
|
||||
["van-popup--safe"]: isIPhoneX && safeAreaInsetBottom && position === 'bottom'
|
||||
});
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
4
dist/popup/index.wxml
vendored
4
dist/popup/index.wxml
vendored
@ -1,3 +1,5 @@
|
||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||
|
||||
<van-overlay
|
||||
wx:if="{{ inited && overlay }}"
|
||||
mask
|
||||
@ -8,7 +10,7 @@
|
||||
/>
|
||||
<view
|
||||
wx:if="{{ inited }}"
|
||||
class="{{ popupClass }}"
|
||||
class="custom-class {{ utils.bem('popup', [position, { safe: isIPhoneX && safeAreaInsetBottom && position === 'bottom' }]) }}"
|
||||
style="z-index: {{ zIndex }}; -webkit-animation: van-{{ transition || position }}-{{ type }} {{ duration }}ms both; animation: van-{{ transition || position }}-{{ type }} {{ duration }}ms both; {{ display ? '' : 'display: none;' }}{{ customStyle }}"
|
||||
bind:animationend="onAnimationEnd"
|
||||
>
|
||||
|
13
dist/radio/index.js
vendored
13
dist/radio/index.js
vendored
@ -14,19 +14,6 @@ VantComponent({
|
||||
labelPosition: String,
|
||||
checkedColor: String
|
||||
},
|
||||
computed: {
|
||||
iconClass: function iconClass() {
|
||||
var _this$data = this.data,
|
||||
disabled = _this$data.disabled,
|
||||
name = _this$data.name,
|
||||
value = _this$data.value;
|
||||
return this.classNames('van-radio__icon', {
|
||||
'van-radio__icon--disabled': disabled,
|
||||
'van-radio__icon--checked': !disabled && name === value,
|
||||
'van-radio__icon--check': !disabled && name !== value
|
||||
});
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
emitChange: function emitChange(value) {
|
||||
var instance = this.getRelationNodes('../radio-group/index')[0] || this;
|
||||
|
4
dist/radio/index.wxml
vendored
4
dist/radio/index.wxml
vendored
@ -1,3 +1,5 @@
|
||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||
|
||||
<view class="van-radio custom-class">
|
||||
<view class="van-radio__input">
|
||||
<radio-group bindchange="onChange">
|
||||
@ -9,7 +11,7 @@
|
||||
/>
|
||||
</radio-group>
|
||||
<van-icon
|
||||
class="{{ iconClass }}"
|
||||
class="{{ utils.bem('radio__icon', { disabled, checked: !disabled && name === value, check: !disabled && name !== value }) }}"
|
||||
custom-class="icon-class"
|
||||
color="{{ value === name ? checkedColor : '' }}"
|
||||
name="{{ value === name ? 'checked' : 'check' }}"
|
||||
|
8
dist/stepper/index.js
vendored
8
dist/stepper/index.js
vendored
@ -38,12 +38,20 @@ VantComponent({
|
||||
});
|
||||
}
|
||||
},
|
||||
data: {
|
||||
focus: false
|
||||
},
|
||||
created: function created() {
|
||||
this.set({
|
||||
value: this.range(this.data.value)
|
||||
});
|
||||
},
|
||||
methods: {
|
||||
onFocus: function onFocus() {
|
||||
this.setData({
|
||||
focus: true
|
||||
});
|
||||
},
|
||||
// limit value range
|
||||
range: function range(value) {
|
||||
return Math.max(Math.min(this.data.max, value), this.data.min);
|
||||
|
19
dist/stepper/index.wxml
vendored
19
dist/stepper/index.wxml
vendored
@ -3,14 +3,17 @@
|
||||
class="minus-class van-stepper__minus {{ minusDisabled ? 'van-stepper__minus--disabled' : '' }}"
|
||||
bind:tap="onMinus"
|
||||
/>
|
||||
<input
|
||||
type="{{ integer ? 'number' : 'digit' }}"
|
||||
class="input-class van-stepper__input {{ disabled || disableInput ? 'van-stepper__input--disabled' : '' }}"
|
||||
value="{{ value }}"
|
||||
disabled="{{ disabled || disableInput }}"
|
||||
bindinput="onInput"
|
||||
bind:blur="onBlur"
|
||||
/>
|
||||
<view class="input-class van-stepper__input-wrapper {{ disabled || disableInput ? 'van-stepper__input-wrapper--disabled' : '' }}" bindtap="onFocus">
|
||||
<input
|
||||
type="{{ integer ? 'number' : 'digit' }}"
|
||||
class="van-stepper__input"
|
||||
value="{{ value }}"
|
||||
focus="{{ focus }}"
|
||||
disabled="{{ disabled || disableInput }}"
|
||||
bindinput="onInput"
|
||||
bind:blur="onBlur"
|
||||
/>
|
||||
</view>
|
||||
<view
|
||||
class="plus-class van-stepper__plus {{ plusDisabled ? 'van-stepper__plus--disabled' : '' }}"
|
||||
bind:tap="onPlus"
|
||||
|
2
dist/stepper/index.wxss
vendored
2
dist/stepper/index.wxss
vendored
@ -1 +1 @@
|
||||
@import '../common/index.wxss';.van-stepper{font-size:0}.van-stepper__input,.van-stepper__minus,.van-stepper__plus{display:inline-block;vertical-align:middle;background-color:#fff}.van-stepper__minus,.van-stepper__plus{width:40px;height:30px;box-sizing:border-box;border:1px solid #eee;position:relative;padding:5px}.van-stepper__minus::before,.van-stepper__plus::before{width:9px;height:1px}.van-stepper__minus::after,.van-stepper__plus::after{width:1px;height:9px}.van-stepper__minus::after,.van-stepper__minus::before,.van-stepper__plus::after,.van-stepper__plus::before{content:'';position:absolute;margin:auto;top:0;left:0;right:0;bottom:0;background-color:#7d7e80}.van-stepper__minus:active,.van-stepper__plus:active{background-color:#e8e8e8}.van-stepper__minus--disabled,.van-stepper__plus--disabled{background-color:#f8f8f8}.van-stepper__minus--disabled::after,.van-stepper__minus--disabled::before,.van-stepper__plus--disabled::after,.van-stepper__plus--disabled::before{background-color:#c9c9c9}.van-stepper__minus--disabled:active,.van-stepper__plus--disabled:active{background-color:#f8f8f8}.van-stepper__minus{border-radius:2px 0 0 2px}.van-stepper__minus::after{display:none}.van-stepper__plus{border-radius:0 2px 2px 0}.van-stepper__input{width:33px;height:26px;padding:1px;min-height:0;border:1px solid #eee;border-width:1px 0;border-radius:0;box-sizing:content-box;color:#7d7e80;font-size:14px;text-align:center;-webkit-appearance:none}.van-stepper__input--disabled{color:#c9c9c9;background-color:#f8f8f8}
|
||||
@import '../common/index.wxss';.van-stepper{font-size:0}.van-stepper__input-wrapper,.van-stepper__minus,.van-stepper__plus{display:inline-block;vertical-align:middle;background-color:#fff}.van-stepper__minus,.van-stepper__plus{position:relative;width:40px;height:30px;padding:5px;border:1px solid #eee;box-sizing:border-box}.van-stepper__minus::before,.van-stepper__plus::before{width:9px;height:1px}.van-stepper__minus::after,.van-stepper__plus::after{width:1px;height:9px}.van-stepper__minus::after,.van-stepper__minus::before,.van-stepper__plus::after,.van-stepper__plus::before{position:absolute;top:0;right:0;bottom:0;left:0;margin:auto;background-color:#7d7e80;content:''}.van-stepper__minus:active,.van-stepper__plus:active{background-color:#e8e8e8}.van-stepper__minus--disabled,.van-stepper__plus--disabled{background-color:#f8f8f8}.van-stepper__minus--disabled::after,.van-stepper__minus--disabled::before,.van-stepper__plus--disabled::after,.van-stepper__plus--disabled::before{background-color:#c9c9c9}.van-stepper__minus--disabled:active,.van-stepper__plus--disabled:active{background-color:#f8f8f8}.van-stepper__minus{border-radius:2px 0 0 2px}.van-stepper__minus::after{display:none}.van-stepper__plus{border-radius:0 2px 2px 0}.van-stepper__input-wrapper{position:relative;width:35px;height:30px;padding:1px;font-size:14px;color:#7d7e80;text-align:center;border:1px solid #eee;border-width:1px 0;border-radius:0;box-sizing:border-box}.van-stepper__input-wrapper--disabled{color:#c9c9c9;background-color:#f8f8f8}.van-stepper__input{position:absolute;top:50%;left:50%;width:100%;min-height:0;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0);-webkit-appearance:none;appearance:none}
|
14
dist/submit-bar/index.js
vendored
14
dist/submit-bar/index.js
vendored
@ -1,5 +1,7 @@
|
||||
import { VantComponent } from '../common/component';
|
||||
import { iphonex } from '../mixins/iphonex';
|
||||
VantComponent({
|
||||
mixins: [iphonex],
|
||||
classes: ['bar-class', 'price-class', 'button-class'],
|
||||
props: {
|
||||
tip: null,
|
||||
@ -16,10 +18,6 @@ VantComponent({
|
||||
buttonType: {
|
||||
type: String,
|
||||
value: 'danger'
|
||||
},
|
||||
safeAreaInsetBottom: {
|
||||
type: Boolean,
|
||||
value: true
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
@ -32,14 +30,6 @@ VantComponent({
|
||||
tipStr: function tipStr() {
|
||||
var tip = this.data.tip;
|
||||
return typeof tip === 'string' ? tip : '';
|
||||
},
|
||||
barClass: function barClass() {
|
||||
var _this$data = this.data,
|
||||
isIPhoneX = _this$data.isIPhoneX,
|
||||
safeAreaInsetBottom = _this$data.safeAreaInsetBottom;
|
||||
return this.classNames('van-submit-bar__bar', 'bar-class', {
|
||||
'van-submit-bar__bar--safe': safeAreaInsetBottom && isIPhoneX
|
||||
});
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
4
dist/submit-bar/index.wxml
vendored
4
dist/submit-bar/index.wxml
vendored
@ -1,3 +1,5 @@
|
||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||
|
||||
<view class="van-submit-bar custom-class">
|
||||
<slot name="top" />
|
||||
|
||||
@ -5,7 +7,7 @@
|
||||
{{ tipStr }}<slot name="tip" />
|
||||
</view>
|
||||
|
||||
<view class="{{ barClass }}">
|
||||
<view class="bar-class {{ utils.bem('submit-bar__bar', { safe: safeAreaInsetBottom && isIPhoneX }) }}">
|
||||
<slot />
|
||||
<view class="van-submit-bar__text">
|
||||
<block wx:if="{{ hasPrice }}">
|
||||
|
4
dist/switch-cell/index.js
vendored
4
dist/switch-cell/index.js
vendored
@ -7,9 +7,11 @@ VantComponent({
|
||||
checked: Boolean,
|
||||
loading: Boolean,
|
||||
disabled: Boolean,
|
||||
activeColor: String,
|
||||
inactiveColor: String,
|
||||
size: {
|
||||
type: String,
|
||||
value: '26px'
|
||||
value: '24px'
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
|
2
dist/switch-cell/index.wxml
vendored
2
dist/switch-cell/index.wxml
vendored
@ -9,6 +9,8 @@
|
||||
checked="{{ checked }}"
|
||||
loading="{{ loading }}"
|
||||
disabled="{{ disabled }}"
|
||||
active-color="{{ activeColor }}"
|
||||
inactive-color="{{ inactiveColor }}"
|
||||
custom-class="van-switch-cell__switch"
|
||||
bind:change="onChange"
|
||||
/>
|
||||
|
2
dist/switch-cell/index.wxss
vendored
2
dist/switch-cell/index.wxss
vendored
@ -1 +1 @@
|
||||
@import '../common/index.wxss';.van-switch-cell{padding-top:8px;padding-bottom:8px}.van-switch-cell__switch{vertical-align:middle}
|
||||
@import '../common/index.wxss';.van-switch-cell{padding-top:9px;padding-bottom:9px}.van-switch-cell__switch{vertical-align:middle}
|
12
dist/switch/index.js
vendored
12
dist/switch/index.js
vendored
@ -20,18 +20,6 @@ VantComponent({
|
||||
});
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
classes: function classes() {
|
||||
return this.classNames('van-switch', {
|
||||
'van-switch--on': this.data.checked,
|
||||
'van-switch--disabled': this.data.disabled
|
||||
});
|
||||
},
|
||||
style: function style() {
|
||||
var backgroundColor = this.data.checked ? this.data.activeColor : this.data.inactiveColor;
|
||||
return "font-size: " + this.data.size + "; " + (backgroundColor ? "background-color: " + backgroundColor : '');
|
||||
}
|
||||
},
|
||||
created: function created() {
|
||||
this.set({
|
||||
value: this.data.checked
|
||||
|
6
dist/switch/index.wxml
vendored
6
dist/switch/index.wxml
vendored
@ -1,6 +1,8 @@
|
||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||
|
||||
<view
|
||||
style="{{ style }}"
|
||||
class="custom-class {{ classes }}"
|
||||
class="custom-class {{ utils.bem('switch', { on: checked, disabled }) }}"
|
||||
style="font-size: {{ size }}; {{ (checked ? activeColor : inactiveColor) ? 'background-color: ' + (checked ? activeColor : inactiveColor ) : '' }}"
|
||||
bind:tap="onClick"
|
||||
>
|
||||
<view class="van-switch__node node-class">
|
||||
|
2
dist/switch/index.wxss
vendored
2
dist/switch/index.wxss
vendored
@ -1 +1 @@
|
||||
@import '../common/index.wxss';.van-switch{height:1em;width:1.8em;display:inline-block;position:relative;border-radius:1em;box-sizing:content-box;border:1px solid rgba(0,0,0,.1);background-color:#fff;transition:background-color .3s}.van-switch__node{top:0;left:0;z-index:1;width:1em;height:1em;transition:.3s;position:absolute;border-radius:100%;background-color:#fff;box-shadow:0 3px 1px 0 rgba(0,0,0,.05),0 2px 2px 0 rgba(0,0,0,.1),0 3px 3px 0 rgba(0,0,0,.05)}.van-switch__loading{top:25%;left:25%;position:absolute!important}.van-switch--on{background-color:#1989fa}.van-switch--on .van-switch__node{-webkit-transform:translateX(.8em);transform:translateX(.8em)}.van-switch--disabled{opacity:.4}
|
||||
@import '../common/index.wxss';.van-switch{display:inline-block;position:relative;width:2em;height:1em;border:1px solid rgba(0,0,0,.1);border-radius:1em;box-sizing:content-box;background-color:#fff;transition:background-color .3s}.van-switch__node{top:0;left:0;position:absolute;border-radius:100%;width:1em;height:1em;z-index:1;transition:.3s;box-shadow:0 3px 1px 0 rgba(0,0,0,.05),0 2px 2px 0 rgba(0,0,0,.1),0 3px 3px 0 rgba(0,0,0,.05);background-color:#fff}.van-switch__loading{top:25%;left:25%;position:absolute!important}.van-switch--on{background-color:#1989fa}.van-switch--on .van-switch__node{-webkit-transform:translateX(1em);transform:translateX(1em)}.van-switch--disabled{opacity:.4}
|
3
dist/tabbar-item/index.json
vendored
3
dist/tabbar-item/index.json
vendored
@ -1,6 +1,7 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {
|
||||
"van-icon": "../icon/index"
|
||||
"van-icon": "../icon/index",
|
||||
"van-info": "../info/index"
|
||||
}
|
||||
}
|
||||
|
12
dist/tabbar-item/index.wxml
vendored
12
dist/tabbar-item/index.wxml
vendored
@ -6,14 +6,20 @@
|
||||
<van-icon
|
||||
wx:if="{{ icon }}"
|
||||
name="{{ icon }}"
|
||||
info="{{ info }}"
|
||||
customStyle="display: block"
|
||||
/>
|
||||
<block wx:else>
|
||||
<slot wx:if="{{ active }}" name="icon-active" />
|
||||
<slot
|
||||
wx:if="{{ active }}"
|
||||
name="icon-active"
|
||||
/>
|
||||
<slot wx:else name="icon" />
|
||||
<view wx:if="{{ info !== null }}" class="van-icon__info">{{ info }}</view>
|
||||
</block>
|
||||
<van-info
|
||||
wx:if="{{ info !== null }}"
|
||||
info="{{ info }}"
|
||||
custom-style="margin-top: 2px"
|
||||
/>
|
||||
</view>
|
||||
<view class="van-tabbar-item__text">
|
||||
<slot />
|
||||
|
2
dist/tabbar-item/index.wxss
vendored
2
dist/tabbar-item/index.wxss
vendored
@ -1 +1 @@
|
||||
@import '../common/index.wxss';:host{-webkit-flex:1;flex:1}.van-tabbar-item{color:#7d7e80;height:100%;display:-webkit-flex;display:flex;line-height:1;font-size:12px;-webkit-align-items:center;align-items:center;-webkit-flex-direction:column;flex-direction:column;-webkit-justify-content:center;justify-content:center}.van-tabbar-item__icon{font-size:18px;margin-bottom:5px;position:relative}.van-tabbar-item__icon .van-icon{display:block}.van-tabbar-item__icon .van-icon__info{color:#fff;left:100%;top:-.5em;font-size:.6em;padding:0 .25em;text-align:center;min-width:1.4em;line-height:1.4;position:absolute;border-radius:.6em;box-sizing:border-box;background-color:#f44;-webkit-transform:translateX(-50%);transform:translateX(-50%);font-family:PingFang SC,Helvetica Neue,Arial,sans-serif}.van-tabbar-item__icon--dot::after{top:0;right:-8px;width:8px;height:8px;content:' ';position:absolute;border-radius:100%;background-color:#f44}.van-tabbar-item__icon image{width:50px;height:18px}.van-tabbar-item--active{color:#1989fa}
|
||||
@import '../common/index.wxss';:host{-webkit-flex:1;flex:1}.van-tabbar-item{color:#7d7e80;height:100%;display:-webkit-flex;display:flex;line-height:1;font-size:12px;-webkit-align-items:center;align-items:center;-webkit-flex-direction:column;flex-direction:column;-webkit-justify-content:center;justify-content:center}.van-tabbar-item__icon{font-size:18px;margin-bottom:5px;position:relative}.van-tabbar-item__icon--dot::after{top:0;right:-8px;width:8px;height:8px;content:' ';position:absolute;border-radius:100%;background-color:#f44}.van-tabbar-item__icon image{width:30px;height:18px;display:block}.van-tabbar-item--active{color:#1989fa}
|
18
dist/tabbar/index.js
vendored
18
dist/tabbar/index.js
vendored
@ -1,5 +1,7 @@
|
||||
import { VantComponent } from '../common/component';
|
||||
import { iphonex } from '../mixins/iphonex';
|
||||
VantComponent({
|
||||
mixins: [iphonex],
|
||||
relation: {
|
||||
name: 'tabbar-item',
|
||||
type: 'descendant',
|
||||
@ -31,28 +33,12 @@ VantComponent({
|
||||
zIndex: {
|
||||
type: Number,
|
||||
value: 1
|
||||
},
|
||||
safeAreaInsetBottom: {
|
||||
type: Boolean,
|
||||
value: true
|
||||
}
|
||||
},
|
||||
data: {
|
||||
items: [],
|
||||
currentActive: -1
|
||||
},
|
||||
computed: {
|
||||
tabbarClass: function tabbarClass() {
|
||||
var _this$data = this.data,
|
||||
fixed = _this$data.fixed,
|
||||
isIPhoneX = _this$data.isIPhoneX,
|
||||
safeAreaInsetBottom = _this$data.safeAreaInsetBottom;
|
||||
return this.classNames('custom-class', 'van-tabbar', 'van-hairline--top-bottom', {
|
||||
'van-tabbar--fixed': fixed,
|
||||
'van-tabbar--safe': isIPhoneX && safeAreaInsetBottom
|
||||
});
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
active: function active(_active) {
|
||||
this.set({
|
||||
|
4
dist/tabbar/index.wxml
vendored
4
dist/tabbar/index.wxml
vendored
@ -1,5 +1,7 @@
|
||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||
|
||||
<view
|
||||
class="{{ tabbarClass }}"
|
||||
class="custom-class van-hairline--top-bottom {{ utils.bem('tabbar', { fixed, safe: isIPhoneX && safeAreaInsetBottom }) }}"
|
||||
style="{{ zIndex ? 'z-index: ' + zIndex : '' }}"
|
||||
>
|
||||
<slot />
|
||||
|
25
dist/tag/index.js
vendored
25
dist/tag/index.js
vendored
@ -13,23 +13,24 @@ VantComponent({
|
||||
mark: Boolean,
|
||||
color: String,
|
||||
plain: Boolean,
|
||||
round: Boolean
|
||||
round: Boolean,
|
||||
textColor: String
|
||||
},
|
||||
computed: {
|
||||
classes: function classes() {
|
||||
var data = this.data;
|
||||
return this.classNames('van-tag', {
|
||||
'van-tag--mark': data.mark,
|
||||
'van-tag--plain': data.plain,
|
||||
'van-tag--round': data.round,
|
||||
["van-tag--" + data.size]: data.size,
|
||||
'van-hairline--surround': data.plain
|
||||
});
|
||||
},
|
||||
style: function style() {
|
||||
var color = this.data.color || COLOR_MAP[this.data.type] || DEFAULT_COLOR;
|
||||
var key = this.data.plain ? 'color' : 'background-color';
|
||||
return key + ": " + color;
|
||||
var style = {
|
||||
[key]: color
|
||||
};
|
||||
|
||||
if (this.data.textColor) {
|
||||
style.color = this.data.textColor;
|
||||
}
|
||||
|
||||
return Object.keys(style).map(function (key) {
|
||||
return key + ": " + style[key];
|
||||
}).join(';');
|
||||
}
|
||||
}
|
||||
});
|
4
dist/tag/index.wxml
vendored
4
dist/tag/index.wxml
vendored
@ -1,5 +1,7 @@
|
||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||
|
||||
<view
|
||||
class="custom-class {{ classes }}"
|
||||
class="custom-class {{ utils.bem('tag', [size, { mark, plain, round }]) }} {{ plain ? 'van-hairline--surround' : '' }}"
|
||||
style="{{ style }}"
|
||||
>
|
||||
<slot />
|
||||
|
2
dist/toast/index.wxss
vendored
2
dist/toast/index.wxss
vendored
@ -1 +1 @@
|
||||
@import '../common/index.wxss';.van-toast{display:-webkit-flex;display:flex;color:#fff;font-size:14px;line-height:20px;border-radius:4px;word-break:break-all;-webkit-align-items:center;align-items:center;-webkit-flex-direction:column;flex-direction:column;-webkit-justify-content:center;justify-content:center;box-sizing:content-box;background-color:rgba(0,0,0,.7)}.van-toast__container{position:fixed;top:50%;left:50%;max-width:70%;width:-webkit-fit-content;width:fit-content;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.van-toast--text{padding:8px 12px;min-width:96px}.van-toast--icon{width:90px;padding:15px;min-height:90px}.van-toast--icon .van-toast__icon{font-size:50px}.van-toast--icon .van-toast__text{padding-top:5px}.van-toast__loading{margin:10px 0}.van-toast--top{-webkit-transform:translate(0,-30vh);transform:translate(0,-30vh)}.van-toast--bottom{-webkit-transform:translate(0,30vh);transform:translate(0,30vh)}
|
||||
@import '../common/index.wxss';.van-toast{display:-webkit-flex;display:flex;color:#fff;font-size:14px;line-height:20px;border-radius:4px;word-break:break-all;-webkit-align-items:center;align-items:center;-webkit-flex-direction:column;flex-direction:column;-webkit-justify-content:center;justify-content:center;box-sizing:content-box;background-color:rgba(0,0,0,.7)}.van-toast__container{position:fixed;top:50%;left:50%;max-width:70%;width:-webkit-fit-content;width:fit-content;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.van-toast--text{padding:8px 12px;min-width:96px}.van-toast--icon{width:90px;padding:15px;min-height:90px}.van-toast--icon .van-toast__icon{font-size:48px}.van-toast--icon .van-toast__text{padding-top:5px}.van-toast__loading{margin:10px 0}.van-toast--top{-webkit-transform:translate(0,-30vh);transform:translate(0,-30vh)}.van-toast--bottom{-webkit-transform:translate(0,30vh);transform:translate(0,30vh)}
|
14
dist/tree-select/index.js
vendored
14
dist/tree-select/index.js
vendored
@ -1,6 +1,7 @@
|
||||
import { VantComponent } from '../common/component';
|
||||
var ITEM_HEIGHT = 44;
|
||||
VantComponent({
|
||||
classes: ['main-item-class', 'content-item-class', 'main-active-class', 'content-active-class', 'main-disabled-class', 'content-disabled-class'],
|
||||
props: {
|
||||
items: Array,
|
||||
mainActiveIndex: {
|
||||
@ -8,8 +9,7 @@ VantComponent({
|
||||
value: 0
|
||||
},
|
||||
activeId: {
|
||||
type: Number,
|
||||
value: 0
|
||||
type: [Number, String]
|
||||
},
|
||||
maxHeight: {
|
||||
type: Number,
|
||||
@ -44,9 +44,13 @@ VantComponent({
|
||||
// 当一个导航被点击时
|
||||
onClickNav: function onClickNav(event) {
|
||||
var index = event.currentTarget.dataset.index;
|
||||
this.$emit('click-nav', {
|
||||
index: index
|
||||
});
|
||||
var item = this.data.items[index];
|
||||
|
||||
if (!item.disabled) {
|
||||
this.$emit('click-nav', {
|
||||
index: index
|
||||
});
|
||||
}
|
||||
},
|
||||
// 更新子项列表
|
||||
updateSubItems: function updateSubItems() {
|
||||
|
3
dist/tree-select/index.json
vendored
3
dist/tree-select/index.json
vendored
@ -1,6 +1,7 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {
|
||||
"van-icon": "../icon/index"
|
||||
"van-icon": "../icon/index",
|
||||
"van-cell": "../cell/index"
|
||||
}
|
||||
}
|
||||
|
9
dist/tree-select/index.wxml
vendored
9
dist/tree-select/index.wxml
vendored
@ -1,3 +1,5 @@
|
||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||
|
||||
<view
|
||||
class="van-tree-select"
|
||||
style="height: {{ mainHeight }}px"
|
||||
@ -6,7 +8,7 @@
|
||||
<view
|
||||
wx:for="{{ items }}"
|
||||
wx:key="index"
|
||||
class="van-tree-select__nitem van-ellipsis {{ mainActiveIndex === index ? 'van-tree-select__nitem--active' : '' }}"
|
||||
class="van-ellipsis main-item-class {{ utils.bem('tree-select__nitem', { active: mainActiveIndex === index, disabled: item.disabled }) }} {{ mainActiveIndex === index ? 'main-active-class' : '' }} {{ item.disabled ? 'main-disabled-class' : '' }}"
|
||||
data-index="{{ index }}"
|
||||
bind:tap="onClickNav"
|
||||
>
|
||||
@ -21,14 +23,15 @@
|
||||
<view
|
||||
wx:for="{{ subItems }}"
|
||||
wx:key="item.id"
|
||||
class="van-tree-select__item van-ellipsis {{ activeId === item.id ? 'van-tree-select__item--active' : '' }} {{ item.disabled ? 'van-tree-select__item--disabled' : '' }}"
|
||||
class="van-ellipsis van-hairline--bottom content-item-class {{ utils.bem('tree-select__item', { active: activeId === item.id, disabled: item.disabled }) }} {{ activeId === item.id ? 'content-active-class' : '' }} {{ item.disabled ? 'content-disabled-class' : '' }}"
|
||||
data-item="{{ item }}"
|
||||
bind:tap="onSelectItem"
|
||||
>
|
||||
{{ item.text }}
|
||||
<van-icon
|
||||
wx:if="{{ activeId === item.id }}"
|
||||
name="success"
|
||||
name="checked"
|
||||
size="16px"
|
||||
class="van-tree-select__selected"
|
||||
/>
|
||||
</view>
|
||||
|
2
dist/tree-select/index.wxss
vendored
2
dist/tree-select/index.wxss
vendored
@ -1 +1 @@
|
||||
@import '../common/index.wxss';.van-tree-select{-webkit-user-select:none;user-select:none;position:relative;font-size:16px}.van-tree-select__nav{width:35%;position:absolute;left:0;top:0;bottom:0;background-color:#fff}.van-tree-select__nitem{line-height:44px;padding:0 15px;background-color:#fff}.van-tree-select__nitem--active,.van-tree-select__nitem:active{background-color:#f8f8f8}.van-tree-select__nitem--active{font-weight:500}.van-tree-select__content{width:65%;padding:0 15px;margin-left:35%;box-sizing:border-box}.van-tree-select__item{position:relative;line-height:44px;padding-left:5px;padding-right:18px}.van-tree-select__item--active,.van-tree-select__item:active{color:#f44}.van-tree-select__item--disabled,.van-tree-select__item--disabled:active{color:#c9c9c9}.van-tree-select__selected{float:right;position:absolute;right:0;top:0;bottom:0;line-height:inherit}
|
||||
@import '../common/index.wxss';.van-tree-select{position:relative;font-size:14px;-webkit-user-select:none;user-select:none}.van-tree-select__nav{position:absolute;top:0;bottom:0;left:0;width:35%;min-width:120px;background-color:#fafafa}.van-tree-select__nitem{position:relative;padding:0 9px 0 15px;line-height:44px}.van-tree-select__nitem--active::after,.van-tree-select__nitem:active::after{position:absolute;top:0;bottom:0;left:0;width:3.6px;background-color:#f44;content:''}.van-tree-select__nitem--active{font-weight:700;background-color:#fff}.van-tree-select__nitem--disabled{color:#999}.van-tree-select__nitem--disabled:active::after{display:none}.van-tree-select__content{width:65%;padding-left:15px;margin-left:35%;background-color:#fff;box-sizing:border-box}.van-tree-select__item{position:relative;font-weight:700;line-height:44px}.van-tree-select__item--active,.van-tree-select__item:active{color:#f44}.van-tree-select__item--disabled,.van-tree-select__item--disabled:active{color:#999}.van-tree-select__selected{position:absolute;top:0;right:15px;bottom:0;height:24px;margin:auto 0;line-height:24px}
|
5
dist/wxs/array.wxs
vendored
Normal file
5
dist/wxs/array.wxs
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
function isArray(array) {
|
||||
return array && array.constructor === 'Array';
|
||||
}
|
||||
|
||||
module.exports.isArray = isArray;
|
38
dist/wxs/bem.wxs
vendored
Normal file
38
dist/wxs/bem.wxs
vendored
Normal file
@ -0,0 +1,38 @@
|
||||
var array = require('./array.wxs');
|
||||
var object = require('./object.wxs');
|
||||
var PREFIX = 'van-';
|
||||
|
||||
function join(name, mods) {
|
||||
name = PREFIX + name;
|
||||
mods = mods.map(function(mod) {
|
||||
return name + '--' + mod;
|
||||
});
|
||||
mods.unshift(name);
|
||||
return mods.join(' ');
|
||||
}
|
||||
|
||||
function traversing(mods, conf) {
|
||||
if (!conf) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (typeof conf === 'string' || typeof conf === 'number') {
|
||||
mods.push(conf);
|
||||
} else if (array.isArray(conf)) {
|
||||
conf.forEach(function(item) {
|
||||
traversing(mods, item);
|
||||
});
|
||||
} else if (typeof conf === 'object') {
|
||||
object.keys(conf).forEach(function(key) {
|
||||
conf[key] && mods.push(key);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
function bem(name, conf) {
|
||||
var mods = [];
|
||||
traversing(mods, conf);
|
||||
return join(name, mods);
|
||||
}
|
||||
|
||||
module.exports.bem = bem;
|
54
dist/wxs/memoize.wxs
vendored
Normal file
54
dist/wxs/memoize.wxs
vendored
Normal file
@ -0,0 +1,54 @@
|
||||
/**
|
||||
* Simple memoize
|
||||
* wxs doesn't support fn.apply, so this memoize only support up to 2 args
|
||||
*/
|
||||
|
||||
function isPrimitive(value) {
|
||||
var type = typeof value;
|
||||
return (
|
||||
type === 'boolean' ||
|
||||
type === 'number' ||
|
||||
type === 'string' ||
|
||||
type === 'undefined' ||
|
||||
value === null
|
||||
);
|
||||
}
|
||||
|
||||
// mock simple fn.call in wxs
|
||||
function call(fn, args) {
|
||||
if (args.length === 2) {
|
||||
return fn(args[0], args[1]);
|
||||
}
|
||||
|
||||
if (args.length === 1) {
|
||||
return fn(args[0]);
|
||||
}
|
||||
|
||||
return fn();
|
||||
}
|
||||
|
||||
function serializer(args) {
|
||||
if (args.length === 1 && isPrimitive(args[0])) {
|
||||
return args[0];
|
||||
}
|
||||
var obj = {};
|
||||
for (var i = 0; i < args.length; i++) {
|
||||
obj['key' + i] = args[i];
|
||||
}
|
||||
return JSON.stringify(obj);
|
||||
}
|
||||
|
||||
function memoize(fn) {
|
||||
var cache = {};
|
||||
|
||||
return function() {
|
||||
var key = serializer(arguments);
|
||||
if (cache[key] === undefined) {
|
||||
cache[key] = call(fn, arguments);
|
||||
}
|
||||
|
||||
return cache[key];
|
||||
};
|
||||
}
|
||||
|
||||
module.exports.memoize = memoize;
|
13
dist/wxs/object.wxs
vendored
Normal file
13
dist/wxs/object.wxs
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
/* eslint-disable */
|
||||
var REGEXP = getRegExp('{|}|"', 'g');
|
||||
|
||||
function keys(obj) {
|
||||
return JSON.stringify(obj)
|
||||
.replace(REGEXP, '')
|
||||
.split(',')
|
||||
.map(function(item) {
|
||||
return item.split(':')[0];
|
||||
});
|
||||
}
|
||||
|
||||
module.exports.keys = keys;
|
12
dist/wxs/utils.wxs
vendored
Normal file
12
dist/wxs/utils.wxs
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
var bem = require('./bem.wxs').bem;
|
||||
var memoize = require('./memoize.wxs').memoize;
|
||||
|
||||
function isSrc(url) {
|
||||
return url.indexOf('http') === 0 || url.indexOf('data:image') === 0;
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
bem: memoize(bem),
|
||||
isSrc: isSrc,
|
||||
memoize: memoize
|
||||
};
|
Loading…
x
Reference in New Issue
Block a user