mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
[bugfix] Card: currency default value (#525)
This commit is contained in:
parent
4f5b777360
commit
c176dee9a2
14
dist/action-sheet/index.js
vendored
14
dist/action-sheet/index.js
vendored
@ -1,9 +1,7 @@
|
|||||||
Component({
|
import { create } from '../common/create';
|
||||||
options: {
|
|
||||||
addGlobalClass: true
|
|
||||||
},
|
|
||||||
|
|
||||||
properties: {
|
create({
|
||||||
|
props: {
|
||||||
show: Boolean,
|
show: Boolean,
|
||||||
title: String,
|
title: String,
|
||||||
cancelText: String,
|
cancelText: String,
|
||||||
@ -26,16 +24,16 @@ Component({
|
|||||||
const { index } = event.currentTarget.dataset;
|
const { index } = event.currentTarget.dataset;
|
||||||
const item = this.data.actions[index];
|
const item = this.data.actions[index];
|
||||||
if (item && !item.disabled && !item.loading) {
|
if (item && !item.disabled && !item.loading) {
|
||||||
this.triggerEvent('select', item);
|
this.$emit('select', item);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
onCancel() {
|
onCancel() {
|
||||||
this.triggerEvent('cancel');
|
this.$emit('cancel');
|
||||||
},
|
},
|
||||||
|
|
||||||
onClose() {
|
onClose() {
|
||||||
this.triggerEvent('close');
|
this.$emit('close');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
20
dist/badge-group/index.js
vendored
20
dist/badge-group/index.js
vendored
@ -1,14 +1,8 @@
|
|||||||
const BADGE_PATH = '../badge/index';
|
import { create } from '../common/create';
|
||||||
|
|
||||||
Component({
|
|
||||||
options: {
|
|
||||||
addGlobalClass: true
|
|
||||||
},
|
|
||||||
|
|
||||||
externalClasses: ['custom-class'],
|
|
||||||
|
|
||||||
|
create({
|
||||||
relations: {
|
relations: {
|
||||||
[BADGE_PATH]: {
|
'../badge/index': {
|
||||||
type: 'descendant',
|
type: 'descendant',
|
||||||
|
|
||||||
linked(target) {
|
linked(target) {
|
||||||
@ -23,13 +17,11 @@ Component({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
properties: {
|
props: {
|
||||||
active: {
|
active: {
|
||||||
type: Number,
|
type: Number,
|
||||||
value: 0,
|
value: 0,
|
||||||
observer() {
|
observer: 'setActive'
|
||||||
this.setActive();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -53,7 +45,7 @@ Component({
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (this.currentActive !== -1) {
|
if (this.currentActive !== -1) {
|
||||||
this.triggerEvent('change', active);
|
this.$emit('change', active);
|
||||||
}
|
}
|
||||||
|
|
||||||
this.currentActive = active;
|
this.currentActive = active;
|
||||||
|
16
dist/badge/index.js
vendored
16
dist/badge/index.js
vendored
@ -1,26 +1,20 @@
|
|||||||
const BADGE_GROUP_PATH = '../badge-group/index';
|
import { create } from '../common/create';
|
||||||
|
|
||||||
Component({
|
|
||||||
options: {
|
|
||||||
addGlobalClass: true
|
|
||||||
},
|
|
||||||
|
|
||||||
externalClasses: ['custom-class'],
|
|
||||||
|
|
||||||
|
create({
|
||||||
relations: {
|
relations: {
|
||||||
[BADGE_GROUP_PATH]: {
|
'../badge-group/index': {
|
||||||
type: 'ancestor'
|
type: 'ancestor'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
properties: {
|
props: {
|
||||||
info: Number,
|
info: Number,
|
||||||
title: String
|
title: String
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
onClick() {
|
onClick() {
|
||||||
const group = this.getRelationNodes(BADGE_GROUP_PATH)[0];
|
const group = this.getRelationNodes('../badge-group/index')[0];
|
||||||
if (group) {
|
if (group) {
|
||||||
group.setActive(this);
|
group.setActive(this);
|
||||||
}
|
}
|
||||||
|
21
dist/button/index.js
vendored
21
dist/button/index.js
vendored
@ -1,21 +1,16 @@
|
|||||||
import buttonBehaviors from '../behaviors/button';
|
import { create } from '../common/create';
|
||||||
import classnames from '../common/classnames';
|
import { classNames } from '../common/class-names';
|
||||||
|
import { button } from '../mixins/button';
|
||||||
|
|
||||||
const booleanProp = {
|
const booleanProp = {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
observer: 'setClasses'
|
observer: 'setClasses'
|
||||||
};
|
};
|
||||||
|
|
||||||
Component({
|
create({
|
||||||
options: {
|
mixins: [button],
|
||||||
addGlobalClass: true
|
|
||||||
},
|
|
||||||
|
|
||||||
externalClasses: ['custom-class', 'loading-class'],
|
props: {
|
||||||
|
|
||||||
behaviors: [buttonBehaviors],
|
|
||||||
|
|
||||||
properties: {
|
|
||||||
type: {
|
type: {
|
||||||
type: String,
|
type: String,
|
||||||
value: 'default',
|
value: 'default',
|
||||||
@ -40,14 +35,14 @@ Component({
|
|||||||
methods: {
|
methods: {
|
||||||
onClick() {
|
onClick() {
|
||||||
if (!this.data.disabled && !this.data.loading) {
|
if (!this.data.disabled && !this.data.loading) {
|
||||||
this.triggerEvent('click');
|
this.$emit('click');
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
setClasses() {
|
setClasses() {
|
||||||
const { type, size, plain, disabled, loading, square, block } = this.data;
|
const { type, size, plain, disabled, loading, square, block } = this.data;
|
||||||
this.setData({
|
this.setData({
|
||||||
classes: classnames(`van-button--${type}`, `van-button--${size}`, {
|
classes: classNames(`van-button--${type}`, `van-button--${size}`, {
|
||||||
'van-button--block': block,
|
'van-button--block': block,
|
||||||
'van-button--plain': plain,
|
'van-button--plain': plain,
|
||||||
'van-button--square': square,
|
'van-button--square': square,
|
||||||
|
14
dist/card/index.js
vendored
14
dist/card/index.js
vendored
@ -1,11 +1,7 @@
|
|||||||
Component({
|
import { create } from '../common/create';
|
||||||
options: {
|
|
||||||
multipleSlots: true,
|
|
||||||
addGlobalClass: true
|
|
||||||
},
|
|
||||||
|
|
||||||
externalClasses: [
|
create({
|
||||||
'custom-class',
|
classes: [
|
||||||
'thumb-class',
|
'thumb-class',
|
||||||
'title-class',
|
'title-class',
|
||||||
'price-class',
|
'price-class',
|
||||||
@ -13,7 +9,7 @@ Component({
|
|||||||
'num-class'
|
'num-class'
|
||||||
],
|
],
|
||||||
|
|
||||||
properties: {
|
props: {
|
||||||
num: String,
|
num: String,
|
||||||
desc: String,
|
desc: String,
|
||||||
thumb: String,
|
thumb: String,
|
||||||
@ -22,7 +18,7 @@ Component({
|
|||||||
centered: Boolean,
|
centered: Boolean,
|
||||||
currency: {
|
currency: {
|
||||||
type: String,
|
type: String,
|
||||||
default: '¥'
|
value: '¥'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
10
dist/cell-group/index.js
vendored
10
dist/cell-group/index.js
vendored
@ -1,11 +1,7 @@
|
|||||||
Component({
|
import { create } from '../common/create';
|
||||||
options: {
|
|
||||||
addGlobalClass: true
|
|
||||||
},
|
|
||||||
|
|
||||||
externalClasses: ['custom-class'],
|
create({
|
||||||
|
props: {
|
||||||
properties: {
|
|
||||||
border: {
|
border: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
value: true
|
value: true
|
||||||
|
16
dist/cell/index.js
vendored
16
dist/cell/index.js
vendored
@ -1,6 +1,7 @@
|
|||||||
Component({
|
import { create } from '../common/create';
|
||||||
externalClasses: [
|
|
||||||
'custom-class',
|
create({
|
||||||
|
classes: [
|
||||||
'title-class',
|
'title-class',
|
||||||
'label-class',
|
'label-class',
|
||||||
'value-class',
|
'value-class',
|
||||||
@ -8,12 +9,7 @@ Component({
|
|||||||
'right-icon-class'
|
'right-icon-class'
|
||||||
],
|
],
|
||||||
|
|
||||||
options: {
|
props: {
|
||||||
multipleSlots: true,
|
|
||||||
addGlobalClass: true
|
|
||||||
},
|
|
||||||
|
|
||||||
properties: {
|
|
||||||
title: null,
|
title: null,
|
||||||
value: null,
|
value: null,
|
||||||
url: String,
|
url: String,
|
||||||
@ -42,7 +38,7 @@ Component({
|
|||||||
if (url) {
|
if (url) {
|
||||||
wx[this.data.linkType]({ url });
|
wx[this.data.linkType]({ url });
|
||||||
}
|
}
|
||||||
this.triggerEvent('click');
|
this.$emit('click');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
14
dist/col/index.js
vendored
14
dist/col/index.js
vendored
@ -1,19 +1,13 @@
|
|||||||
const ROW_PATH = '../row/index';
|
import { create } from '../common/create';
|
||||||
|
|
||||||
Component({
|
|
||||||
options: {
|
|
||||||
addGlobalClass: true
|
|
||||||
},
|
|
||||||
|
|
||||||
externalClasses: ['custom-class'],
|
|
||||||
|
|
||||||
|
create({
|
||||||
relations: {
|
relations: {
|
||||||
[ROW_PATH]: {
|
'../row/index': {
|
||||||
type: 'ancestor'
|
type: 'ancestor'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
properties: {
|
props: {
|
||||||
span: Number,
|
span: Number,
|
||||||
offset: Number
|
offset: Number
|
||||||
},
|
},
|
||||||
|
29
dist/common/class-names.js
vendored
Normal file
29
dist/common/class-names.js
vendored
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
const hasOwn = {}.hasOwnProperty;
|
||||||
|
|
||||||
|
export function classNames() {
|
||||||
|
const classes = [];
|
||||||
|
|
||||||
|
for (let i = 0; i < arguments.length; i++) {
|
||||||
|
const arg = arguments[i];
|
||||||
|
if (!arg) continue;
|
||||||
|
|
||||||
|
const argType = typeof arg;
|
||||||
|
|
||||||
|
if (argType === 'string' || argType === 'number') {
|
||||||
|
classes.push(arg);
|
||||||
|
} else if (Array.isArray(arg) && arg.length) {
|
||||||
|
const inner = classNames.apply(null, arg);
|
||||||
|
if (inner) {
|
||||||
|
classes.push(inner);
|
||||||
|
}
|
||||||
|
} else if (argType === 'object') {
|
||||||
|
for (const key in arg) {
|
||||||
|
if (hasOwn.call(arg, key) && arg[key]) {
|
||||||
|
classes.push(key);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return classes.join(' ');
|
||||||
|
};
|
39
dist/common/create.js
vendored
Normal file
39
dist/common/create.js
vendored
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
function $emit() {
|
||||||
|
this.triggerEvent.apply(this, arguments);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function create(sfc) {
|
||||||
|
// map props to properties
|
||||||
|
if (sfc.props) {
|
||||||
|
sfc.properties = sfc.props;
|
||||||
|
delete sfc.props;
|
||||||
|
}
|
||||||
|
|
||||||
|
// map mixins to behaviors
|
||||||
|
if (sfc.mixins) {
|
||||||
|
sfc.behaviors = sfc.mixins;
|
||||||
|
delete sfc.mixins;
|
||||||
|
}
|
||||||
|
|
||||||
|
// map field to form-field behavior
|
||||||
|
if (sfc.field) {
|
||||||
|
sfc.behaviors = sfc.behaviors || [];
|
||||||
|
sfc.behaviors.push('wx://form-field');
|
||||||
|
}
|
||||||
|
|
||||||
|
// add default options
|
||||||
|
sfc.options = sfc.options || {};
|
||||||
|
sfc.options.multipleSlots = true;
|
||||||
|
sfc.options.addGlobalClass = true;
|
||||||
|
|
||||||
|
// add default externalClasses
|
||||||
|
sfc.externalClasses = sfc.classes || [];
|
||||||
|
sfc.externalClasses.push('custom-class');
|
||||||
|
|
||||||
|
// add default methods
|
||||||
|
sfc.methods = sfc.methods || {};
|
||||||
|
sfc.methods.$emit = $emit;
|
||||||
|
|
||||||
|
Component(sfc);
|
||||||
|
};
|
||||||
|
|
13
dist/common/utils.js
vendored
Normal file
13
dist/common/utils.js
vendored
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
function isDef(value) {
|
||||||
|
return value !== undefined && value !== null;
|
||||||
|
}
|
||||||
|
|
||||||
|
function isObj(x) {
|
||||||
|
const type = typeof x;
|
||||||
|
return x !== null && (type === 'object' || type === 'function');
|
||||||
|
}
|
||||||
|
|
||||||
|
export {
|
||||||
|
isObj,
|
||||||
|
isDef
|
||||||
|
};
|
12
dist/dialog/index.js
vendored
12
dist/dialog/index.js
vendored
@ -1,9 +1,7 @@
|
|||||||
Component({
|
import { create } from '../common/create';
|
||||||
options: {
|
|
||||||
addGlobalClass: true
|
|
||||||
},
|
|
||||||
|
|
||||||
properties: {
|
create({
|
||||||
|
props: {
|
||||||
title: String,
|
title: String,
|
||||||
message: String,
|
message: String,
|
||||||
useSlot: Boolean,
|
useSlot: Boolean,
|
||||||
@ -79,8 +77,8 @@ Component({
|
|||||||
if (!this.data.asyncClose) {
|
if (!this.data.asyncClose) {
|
||||||
this.setData({ show: false });
|
this.setData({ show: false });
|
||||||
}
|
}
|
||||||
this.triggerEvent('close', action);
|
this.$emit('close', action);
|
||||||
this.triggerEvent(action);
|
this.$emit(action);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
40
dist/field/index.js
vendored
40
dist/field/index.js
vendored
@ -1,16 +1,11 @@
|
|||||||
Component({
|
import { create } from '../common/create';
|
||||||
behaviors: ['wx://form-field'],
|
|
||||||
|
|
||||||
externalClasses: [
|
create({
|
||||||
'input-class'
|
field: true,
|
||||||
],
|
|
||||||
|
|
||||||
options: {
|
classes: ['input-class'],
|
||||||
multipleSlots: true,
|
|
||||||
addGlobalClass: true
|
|
||||||
},
|
|
||||||
|
|
||||||
properties: {
|
props: {
|
||||||
icon: String,
|
icon: String,
|
||||||
label: String,
|
label: String,
|
||||||
error: Boolean,
|
error: Boolean,
|
||||||
@ -68,8 +63,8 @@ Component({
|
|||||||
methods: {
|
methods: {
|
||||||
onInput(event) {
|
onInput(event) {
|
||||||
const { value = '' } = event.detail || {};
|
const { value = '' } = event.detail || {};
|
||||||
this.triggerEvent('input', value);
|
this.$emit('input', value);
|
||||||
this.triggerEvent('change', value);
|
this.$emit('change', value);
|
||||||
this.setData({
|
this.setData({
|
||||||
value,
|
value,
|
||||||
showClear: this.getShowClear({ value })
|
showClear: this.getShowClear({ value })
|
||||||
@ -77,7 +72,7 @@ Component({
|
|||||||
},
|
},
|
||||||
|
|
||||||
onFocus(event) {
|
onFocus(event) {
|
||||||
this.triggerEvent('focus', event);
|
this.$emit('focus', event);
|
||||||
this.setData({
|
this.setData({
|
||||||
focused: true,
|
focused: true,
|
||||||
showClear: this.getShowClear({ focused: true })
|
showClear: this.getShowClear({ focused: true })
|
||||||
@ -86,7 +81,7 @@ Component({
|
|||||||
|
|
||||||
onBlur(event) {
|
onBlur(event) {
|
||||||
this.focused = false;
|
this.focused = false;
|
||||||
this.triggerEvent('blur', event);
|
this.$emit('blur', event);
|
||||||
this.setData({
|
this.setData({
|
||||||
focused: false,
|
focused: false,
|
||||||
showClear: this.getShowClear({ focused: false })
|
showClear: this.getShowClear({ focused: false })
|
||||||
@ -94,16 +89,15 @@ Component({
|
|||||||
},
|
},
|
||||||
|
|
||||||
onClickIcon() {
|
onClickIcon() {
|
||||||
this.triggerEvent('click-icon');
|
this.$emit('click-icon');
|
||||||
},
|
},
|
||||||
|
|
||||||
getShowClear(options) {
|
getShowClear(options) {
|
||||||
const {
|
const { focused = this.data.focused, value = this.data.value } = options;
|
||||||
focused = this.data.focused,
|
|
||||||
value = this.data.value
|
|
||||||
} = options;
|
|
||||||
|
|
||||||
return this.data.clearable && focused && value !== '' && !this.data.readonly;
|
return (
|
||||||
|
this.data.clearable && focused && value !== '' && !this.data.readonly
|
||||||
|
);
|
||||||
},
|
},
|
||||||
|
|
||||||
onClear() {
|
onClear() {
|
||||||
@ -111,12 +105,12 @@ Component({
|
|||||||
value: '',
|
value: '',
|
||||||
showClear: this.getShowClear({ value: '' })
|
showClear: this.getShowClear({ value: '' })
|
||||||
});
|
});
|
||||||
this.triggerEvent('input', '');
|
this.$emit('input', '');
|
||||||
this.triggerEvent('change', '');
|
this.$emit('change', '');
|
||||||
},
|
},
|
||||||
|
|
||||||
onConfirm() {
|
onConfirm() {
|
||||||
this.triggerEvent('confirm', this.data.value);
|
this.$emit('confirm', this.data.value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
12
dist/icon/index.js
vendored
12
dist/icon/index.js
vendored
@ -1,11 +1,7 @@
|
|||||||
Component({
|
import { create } from '../common/create';
|
||||||
options: {
|
|
||||||
addGlobalClass: true
|
|
||||||
},
|
|
||||||
|
|
||||||
externalClasses: ['custom-class'],
|
create({
|
||||||
|
props: {
|
||||||
properties: {
|
|
||||||
info: null,
|
info: null,
|
||||||
name: String,
|
name: String,
|
||||||
size: String,
|
size: String,
|
||||||
@ -18,7 +14,7 @@ Component({
|
|||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
onClick() {
|
onClick() {
|
||||||
this.triggerEvent('click');
|
this.$emit('click');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
10
dist/loading/index.js
vendored
10
dist/loading/index.js
vendored
@ -1,11 +1,7 @@
|
|||||||
Component({
|
import { create } from '../common/create';
|
||||||
options: {
|
|
||||||
addGlobalClass: true
|
|
||||||
},
|
|
||||||
|
|
||||||
externalClasses: ['custom-class'],
|
create({
|
||||||
|
props: {
|
||||||
properties: {
|
|
||||||
size: {
|
size: {
|
||||||
type: String,
|
type: String,
|
||||||
value: '30px'
|
value: '30px'
|
||||||
|
57
dist/mixins/button.js
vendored
Normal file
57
dist/mixins/button.js
vendored
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
export const button = Behavior({
|
||||||
|
properties: {
|
||||||
|
loading: Boolean,
|
||||||
|
// 在自定义组件中,无法与外界的 form 组件联动,暂时不开放
|
||||||
|
// formType: String,
|
||||||
|
openType: String,
|
||||||
|
appParameter: String,
|
||||||
|
// 暂时不开放,直接传入无法设置样式
|
||||||
|
// hoverClass: {
|
||||||
|
// type: String,
|
||||||
|
// value: 'button-hover'
|
||||||
|
// },
|
||||||
|
hoverStopPropagation: Boolean,
|
||||||
|
hoverStartTime: {
|
||||||
|
type: Number,
|
||||||
|
value: 20
|
||||||
|
},
|
||||||
|
hoverStayTime: {
|
||||||
|
type: Number,
|
||||||
|
value: 70
|
||||||
|
},
|
||||||
|
lang: {
|
||||||
|
type: String,
|
||||||
|
value: 'en'
|
||||||
|
},
|
||||||
|
sessionFrom: {
|
||||||
|
type: String,
|
||||||
|
value: ''
|
||||||
|
},
|
||||||
|
sendMessageTitle: String,
|
||||||
|
sendMessagePath: String,
|
||||||
|
sendMessageImg: String,
|
||||||
|
showMessageCard: String
|
||||||
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
bindgetuserinfo(event = {}) {
|
||||||
|
this.$emit('getuserinfo', event.detail || {});
|
||||||
|
},
|
||||||
|
|
||||||
|
bindcontact(event = {}) {
|
||||||
|
this.$emit('contact', event.detail || {});
|
||||||
|
},
|
||||||
|
|
||||||
|
bindgetphonenumber(event = {}) {
|
||||||
|
this.$emit('getphonenumber', event.detail || {});
|
||||||
|
},
|
||||||
|
|
||||||
|
bindopensetting(event = {}) {
|
||||||
|
this.$emit('opensetting', event.detail || {});
|
||||||
|
},
|
||||||
|
|
||||||
|
binderror(event = {}) {
|
||||||
|
this.$emit('error', event.detail || {});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
22
dist/mixins/touch.js
vendored
Normal file
22
dist/mixins/touch.js
vendored
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
export const touch = Behavior({
|
||||||
|
methods: {
|
||||||
|
touchStart(event) {
|
||||||
|
this.direction = '';
|
||||||
|
this.deltaX = 0;
|
||||||
|
this.deltaY = 0;
|
||||||
|
this.offsetX = 0;
|
||||||
|
this.offsetY = 0;
|
||||||
|
this.startX = event.touches[0].clientX;
|
||||||
|
this.startY = event.touches[0].clientY;
|
||||||
|
},
|
||||||
|
|
||||||
|
touchMove(event) {
|
||||||
|
const touch = event.touches[0];
|
||||||
|
this.deltaX = touch.clientX - this.startX;
|
||||||
|
this.deltaY = touch.clientY - this.startY;
|
||||||
|
this.offsetX = Math.abs(this.deltaX);
|
||||||
|
this.offsetY = Math.abs(this.deltaY);
|
||||||
|
this.direction = this.offsetX > this.offsetY ? 'horizontal' : this.offsetX < this.offsetY ? 'vertical' : '';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
54
dist/mixins/transition.js
vendored
Normal file
54
dist/mixins/transition.js
vendored
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
export const transition = function(showDefaultValue) {
|
||||||
|
return Behavior({
|
||||||
|
properties: {
|
||||||
|
customStyle: String,
|
||||||
|
show: {
|
||||||
|
value: showDefaultValue,
|
||||||
|
type: Boolean,
|
||||||
|
observer(value) {
|
||||||
|
if (value) {
|
||||||
|
this.show();
|
||||||
|
} else {
|
||||||
|
this.setData({
|
||||||
|
type: 'leave'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
duration: {
|
||||||
|
type: Number,
|
||||||
|
value: 300
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
data: {
|
||||||
|
type: '',
|
||||||
|
inited: false,
|
||||||
|
display: false
|
||||||
|
},
|
||||||
|
|
||||||
|
attached() {
|
||||||
|
if (this.data.show) {
|
||||||
|
this.show();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
show() {
|
||||||
|
this.setData({
|
||||||
|
inited: true,
|
||||||
|
display: true,
|
||||||
|
type: 'enter'
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
onAnimationEnd() {
|
||||||
|
if (!this.data.show) {
|
||||||
|
this.setData({
|
||||||
|
display: false
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
18
dist/nav-bar/index.js
vendored
18
dist/nav-bar/index.js
vendored
@ -1,15 +1,9 @@
|
|||||||
Component({
|
import { create } from '../common/create';
|
||||||
externalClasses: [
|
|
||||||
'custom-class',
|
|
||||||
'title-class'
|
|
||||||
],
|
|
||||||
|
|
||||||
options: {
|
create({
|
||||||
multipleSlots: true,
|
classes: ['title-class'],
|
||||||
addGlobalClass: true
|
|
||||||
},
|
|
||||||
|
|
||||||
properties: {
|
props: {
|
||||||
title: String,
|
title: String,
|
||||||
leftText: String,
|
leftText: String,
|
||||||
rightText: String,
|
rightText: String,
|
||||||
@ -23,11 +17,11 @@ Component({
|
|||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
onClickLeft() {
|
onClickLeft() {
|
||||||
this.triggerEvent('click-left');
|
this.$emit('click-left');
|
||||||
},
|
},
|
||||||
|
|
||||||
onClickRight() {
|
onClickRight() {
|
||||||
this.triggerEvent('click-right');
|
this.$emit('click-right');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
38
dist/notice-bar/index.js
vendored
38
dist/notice-bar/index.js
vendored
@ -1,20 +1,15 @@
|
|||||||
const VALID_MODE = ['closeable', 'link'];
|
import { create } from '../common/create';
|
||||||
|
|
||||||
const FONT_COLOR = '#f60';
|
const FONT_COLOR = '#f60';
|
||||||
const BG_COLOR = '#fff7cc';
|
const BG_COLOR = '#fff7cc';
|
||||||
|
|
||||||
Component({
|
create({
|
||||||
options: {
|
props: {
|
||||||
addGlobalClass: true
|
|
||||||
},
|
|
||||||
|
|
||||||
externalClasses: ['custom-class'],
|
|
||||||
|
|
||||||
properties: {
|
|
||||||
text: {
|
text: {
|
||||||
type: String,
|
type: String,
|
||||||
value: '',
|
value: '',
|
||||||
observer() {
|
observer() {
|
||||||
this.setData({}, this._init);
|
this.setData({}, this.init);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mode: {
|
mode: {
|
||||||
@ -67,8 +62,7 @@ Component({
|
|||||||
},
|
},
|
||||||
|
|
||||||
attached() {
|
attached() {
|
||||||
const { mode } = this.data;
|
if (this.data.mode) {
|
||||||
if (mode && this._checkMode(mode)) {
|
|
||||||
this.setData({
|
this.setData({
|
||||||
hasRightIcon: true
|
hasRightIcon: true
|
||||||
});
|
});
|
||||||
@ -81,15 +75,7 @@ Component({
|
|||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
_checkMode(val) {
|
init() {
|
||||||
const isValidMode = ~VALID_MODE.indexOf(val);
|
|
||||||
if (!isValidMode) {
|
|
||||||
console.warn(`mode only accept value of ${VALID_MODE}, now get ${val}.`);
|
|
||||||
}
|
|
||||||
return isValidMode;
|
|
||||||
},
|
|
||||||
|
|
||||||
_init() {
|
|
||||||
wx.createSelectorQuery()
|
wx.createSelectorQuery()
|
||||||
.in(this)
|
.in(this)
|
||||||
.select('.van-notice-bar__content')
|
.select('.van-notice-bar__content')
|
||||||
@ -132,7 +118,7 @@ Component({
|
|||||||
animation,
|
animation,
|
||||||
resetAnimation
|
resetAnimation
|
||||||
}, () => {
|
}, () => {
|
||||||
this._scroll();
|
this.scroll();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
@ -141,7 +127,7 @@ Component({
|
|||||||
.exec();
|
.exec();
|
||||||
},
|
},
|
||||||
|
|
||||||
_scroll() {
|
scroll() {
|
||||||
const {
|
const {
|
||||||
animation, resetAnimation, wrapWidth, elapse, speed
|
animation, resetAnimation, wrapWidth, elapse, speed
|
||||||
} = this.data;
|
} = this.data;
|
||||||
@ -157,7 +143,7 @@ Component({
|
|||||||
}, 100);
|
}, 100);
|
||||||
|
|
||||||
const timer = setTimeout(() => {
|
const timer = setTimeout(() => {
|
||||||
this._scroll();
|
this.scroll();
|
||||||
}, elapse);
|
}, elapse);
|
||||||
|
|
||||||
this.setData({
|
this.setData({
|
||||||
@ -165,7 +151,7 @@ Component({
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
_handleButtonClick() {
|
onClickIcon() {
|
||||||
const { timer } = this.data;
|
const { timer } = this.data;
|
||||||
timer && clearTimeout(timer);
|
timer && clearTimeout(timer);
|
||||||
this.setData({
|
this.setData({
|
||||||
@ -175,7 +161,7 @@ Component({
|
|||||||
},
|
},
|
||||||
|
|
||||||
onClick(event) {
|
onClick(event) {
|
||||||
this.triggerEvent('click', event);
|
this.$emit('click', event);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
2
dist/notice-bar/index.wxml
vendored
2
dist/notice-bar/index.wxml
vendored
@ -18,7 +18,7 @@
|
|||||||
wx:if="{{ mode === 'closeable' }}"
|
wx:if="{{ mode === 'closeable' }}"
|
||||||
class="van-notice-bar__right-icon"
|
class="van-notice-bar__right-icon"
|
||||||
name="close"
|
name="close"
|
||||||
bind:tap="_handleButtonClick"
|
bind:tap="onClickIcon"
|
||||||
/>
|
/>
|
||||||
<navigator
|
<navigator
|
||||||
wx:if="{{ mode === 'link' }}"
|
wx:if="{{ mode === 'link' }}"
|
||||||
|
12
dist/notify/index.js
vendored
12
dist/notify/index.js
vendored
@ -1,11 +1,7 @@
|
|||||||
import Notify from './notify';
|
import { create } from '../common/create';
|
||||||
|
|
||||||
Component({
|
create({
|
||||||
options: {
|
props: {
|
||||||
addGlobalClass: true
|
|
||||||
},
|
|
||||||
|
|
||||||
properties: {
|
|
||||||
text: String,
|
text: String,
|
||||||
color: {
|
color: {
|
||||||
type: String,
|
type: String,
|
||||||
@ -45,5 +41,3 @@ Component({
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
export default Notify;
|
|
||||||
|
10
dist/overlay/index.js
vendored
10
dist/overlay/index.js
vendored
@ -1,9 +1,7 @@
|
|||||||
Component({
|
import { create } from '../common/create';
|
||||||
options: {
|
|
||||||
addGlobalClass: true
|
|
||||||
},
|
|
||||||
|
|
||||||
properties: {
|
create({
|
||||||
|
props: {
|
||||||
show: Boolean,
|
show: Boolean,
|
||||||
mask: Boolean,
|
mask: Boolean,
|
||||||
customStyle: String,
|
customStyle: String,
|
||||||
@ -15,7 +13,7 @@ Component({
|
|||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
onClick() {
|
onClick() {
|
||||||
this.triggerEvent('click');
|
this.$emit('click');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
14
dist/panel/index.js
vendored
14
dist/panel/index.js
vendored
@ -1,15 +1,9 @@
|
|||||||
Component({
|
import { create } from '../common/create';
|
||||||
externalClasses: [
|
|
||||||
'custom-class',
|
|
||||||
'footer-class'
|
|
||||||
],
|
|
||||||
|
|
||||||
options: {
|
create({
|
||||||
multipleSlots: true,
|
classes: ['footer-class'],
|
||||||
addGlobalClass: true
|
|
||||||
},
|
|
||||||
|
|
||||||
properties: {
|
props: {
|
||||||
desc: String,
|
desc: String,
|
||||||
title: String,
|
title: String,
|
||||||
status: String,
|
status: String,
|
||||||
|
19
dist/popup/index.js
vendored
19
dist/popup/index.js
vendored
@ -1,15 +1,10 @@
|
|||||||
import transitionBehaviors from '../behaviors/transition';
|
import { create } from '../common/create';
|
||||||
|
import { transition } from '../mixins/transition';
|
||||||
|
|
||||||
Component({
|
create({
|
||||||
options: {
|
mixins: [transition(false)],
|
||||||
addGlobalClass: true
|
|
||||||
},
|
|
||||||
|
|
||||||
externalClasses: ['custom-class'],
|
props: {
|
||||||
|
|
||||||
behaviors: [transitionBehaviors(false)],
|
|
||||||
|
|
||||||
properties: {
|
|
||||||
overlayStyle: String,
|
overlayStyle: String,
|
||||||
overlay: {
|
overlay: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
@ -27,10 +22,10 @@ Component({
|
|||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
onClickOverlay() {
|
onClickOverlay() {
|
||||||
this.triggerEvent('click-overlay');
|
this.$emit('click-overlay');
|
||||||
|
|
||||||
if (this.data.closeOnClickOverlay) {
|
if (this.data.closeOnClickOverlay) {
|
||||||
this.triggerEvent('close');
|
this.$emit('close');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
12
dist/progress/index.js
vendored
12
dist/progress/index.js
vendored
@ -1,13 +1,7 @@
|
|||||||
Component({
|
import { create } from '../common/create';
|
||||||
options: {
|
|
||||||
addGlobalClass: true
|
|
||||||
},
|
|
||||||
|
|
||||||
externalClasses: [
|
create({
|
||||||
'custom-class'
|
props: {
|
||||||
],
|
|
||||||
|
|
||||||
properties: {
|
|
||||||
inactive: {
|
inactive: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
observer() {
|
observer() {
|
||||||
|
20
dist/row/index.js
vendored
20
dist/row/index.js
vendored
@ -1,24 +1,16 @@
|
|||||||
const COL_PATH = '../col/index';
|
import { create } from '../common/create';
|
||||||
|
|
||||||
Component({
|
|
||||||
options: {
|
|
||||||
addGlobalClass: true
|
|
||||||
},
|
|
||||||
|
|
||||||
externalClasses: ['custom-class'],
|
|
||||||
|
|
||||||
|
create({
|
||||||
relations: {
|
relations: {
|
||||||
[COL_PATH]: {
|
'../col/index': {
|
||||||
type: 'descendant'
|
type: 'descendant'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
properties: {
|
props: {
|
||||||
gutter: {
|
gutter: {
|
||||||
type: Number,
|
type: Number,
|
||||||
observer() {
|
observer: 'setGutter'
|
||||||
this.setGutter();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -33,7 +25,7 @@ Component({
|
|||||||
const style = gutter ? `margin-right: ${margin}; margin-left: ${margin};` : '';
|
const style = gutter ? `margin-right: ${margin}; margin-left: ${margin};` : '';
|
||||||
|
|
||||||
this.setData({ style });
|
this.setData({ style });
|
||||||
this.getRelationNodes(COL_PATH).forEach((col) => {
|
this.getRelationNodes('../col/index').forEach((col) => {
|
||||||
col.setGutter(this.data.gutter);
|
col.setGutter(this.data.gutter);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
25
dist/search/index.js
vendored
25
dist/search/index.js
vendored
@ -1,14 +1,11 @@
|
|||||||
Component({
|
import { create } from '../common/create';
|
||||||
behaviors: ['wx://form-field'],
|
|
||||||
|
|
||||||
externalClasses: ['custom-class', 'cancel-class'],
|
create({
|
||||||
|
field: true,
|
||||||
|
|
||||||
options: {
|
classes: ['cancel-class'],
|
||||||
multipleSlots: true,
|
|
||||||
addGlobalClass: true
|
|
||||||
},
|
|
||||||
|
|
||||||
properties: {
|
props: {
|
||||||
focus: Boolean,
|
focus: Boolean,
|
||||||
disabled: Boolean,
|
disabled: Boolean,
|
||||||
readonly: Boolean,
|
readonly: Boolean,
|
||||||
@ -27,25 +24,25 @@ Component({
|
|||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
onChange(event) {
|
onChange(event) {
|
||||||
this.triggerEvent('change', event.detail);
|
this.$emit('change', event.detail);
|
||||||
},
|
},
|
||||||
|
|
||||||
onCancel() {
|
onCancel() {
|
||||||
this.setData({ value: '' });
|
this.setData({ value: '' });
|
||||||
this.triggerEvent('cancel');
|
this.$emit('cancel');
|
||||||
this.triggerEvent('change', '');
|
this.$emit('change', '');
|
||||||
},
|
},
|
||||||
|
|
||||||
onSearch() {
|
onSearch() {
|
||||||
this.triggerEvent('search', this.data.value);
|
this.$emit('search', this.data.value);
|
||||||
},
|
},
|
||||||
|
|
||||||
onFocus() {
|
onFocus() {
|
||||||
this.triggerEvent('focus');
|
this.$emit('focus');
|
||||||
},
|
},
|
||||||
|
|
||||||
onBlur() {
|
onBlur() {
|
||||||
this.triggerEvent('blur');
|
this.$emit('blur');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
17
dist/slider/index.js
vendored
17
dist/slider/index.js
vendored
@ -1,15 +1,10 @@
|
|||||||
import touchBehaviors from '../behaviors/touch';
|
import { create } from '../common/create';
|
||||||
|
import { touch } from '../mixins/touch';
|
||||||
|
|
||||||
Component({
|
create({
|
||||||
options: {
|
mixins: [touch],
|
||||||
addGlobalClass: true
|
|
||||||
},
|
|
||||||
|
|
||||||
externalClasses: ['custom-class'],
|
props: {
|
||||||
|
|
||||||
behaviors: [touchBehaviors],
|
|
||||||
|
|
||||||
properties: {
|
|
||||||
disabled: Boolean,
|
disabled: Boolean,
|
||||||
max: {
|
max: {
|
||||||
type: Number,
|
type: Number,
|
||||||
@ -86,7 +81,7 @@ Component({
|
|||||||
});
|
});
|
||||||
|
|
||||||
if (end) {
|
if (end) {
|
||||||
this.triggerEvent('change', value);
|
this.$emit('change', value);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
23
dist/stepper/index.js
vendored
23
dist/stepper/index.js
vendored
@ -1,22 +1,19 @@
|
|||||||
|
import { create } from '../common/create';
|
||||||
|
|
||||||
// Note that the bitwise operators and shift operators operate on 32-bit ints
|
// Note that the bitwise operators and shift operators operate on 32-bit ints
|
||||||
// so in that case, the max safe integer is 2^31-1, or 2147483647
|
// so in that case, the max safe integer is 2^31-1, or 2147483647
|
||||||
const MAX = 2147483647;
|
const MAX = 2147483647;
|
||||||
|
|
||||||
Component({
|
create({
|
||||||
behaviors: ['wx://form-field'],
|
field: true,
|
||||||
|
|
||||||
options: {
|
classes: [
|
||||||
addGlobalClass: true
|
|
||||||
},
|
|
||||||
|
|
||||||
externalClasses: [
|
|
||||||
'custom-class',
|
|
||||||
'input-class',
|
'input-class',
|
||||||
'plus-class',
|
'plus-class',
|
||||||
'minus-class'
|
'minus-class'
|
||||||
],
|
],
|
||||||
|
|
||||||
properties: {
|
props: {
|
||||||
integer: Boolean,
|
integer: Boolean,
|
||||||
disabled: Boolean,
|
disabled: Boolean,
|
||||||
disableInput: Boolean,
|
disableInput: Boolean,
|
||||||
@ -53,20 +50,20 @@ Component({
|
|||||||
|
|
||||||
onChange(type) {
|
onChange(type) {
|
||||||
if (this[`${type}Disabled`]) {
|
if (this[`${type}Disabled`]) {
|
||||||
this.triggerEvent('overlimit', type);
|
this.$emit('overlimit', type);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const diff = type === 'minus' ? -this.data.step : +this.data.step;
|
const diff = type === 'minus' ? -this.data.step : +this.data.step;
|
||||||
const value = Math.round((this.data.value + diff) * 100) / 100;
|
const value = Math.round((this.data.value + diff) * 100) / 100;
|
||||||
this.triggerInput(this.range(value));
|
this.triggerInput(this.range(value));
|
||||||
this.triggerEvent(type);
|
this.$emit(type);
|
||||||
},
|
},
|
||||||
|
|
||||||
onBlur(event) {
|
onBlur(event) {
|
||||||
const value = this.range(this.data.value);
|
const value = this.range(this.data.value);
|
||||||
this.triggerInput(value);
|
this.triggerInput(value);
|
||||||
this.triggerEvent('blur', event);
|
this.$emit('blur', event);
|
||||||
},
|
},
|
||||||
|
|
||||||
onMinus() {
|
onMinus() {
|
||||||
@ -79,7 +76,7 @@ Component({
|
|||||||
|
|
||||||
triggerInput(value) {
|
triggerInput(value) {
|
||||||
this.setData({ value });
|
this.setData({ value });
|
||||||
this.triggerEvent('change', value);
|
this.$emit('change', value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
20
dist/steps/index.js
vendored
20
dist/steps/index.js
vendored
@ -1,25 +1,15 @@
|
|||||||
Component({
|
import { create } from '../common/create';
|
||||||
options: {
|
|
||||||
addGlobalClass: true
|
|
||||||
},
|
|
||||||
|
|
||||||
externalClasses: [
|
create({
|
||||||
'custom-class'
|
props: {
|
||||||
],
|
|
||||||
|
|
||||||
properties: {
|
|
||||||
icon: String,
|
icon: String,
|
||||||
steps: {
|
steps: {
|
||||||
type: Array,
|
type: Array,
|
||||||
observer() {
|
observer: 'formatSteps'
|
||||||
this.formatSteps();
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
active: {
|
active: {
|
||||||
type: Number,
|
type: Number,
|
||||||
observer() {
|
observer: 'formatSteps'
|
||||||
this.formatSteps();
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
direction: {
|
direction: {
|
||||||
type: String,
|
type: String,
|
||||||
|
12
dist/switch-cell/index.js
vendored
12
dist/switch-cell/index.js
vendored
@ -1,11 +1,9 @@
|
|||||||
Component({
|
import { create } from '../common/create';
|
||||||
behaviors: ['wx://form-field'],
|
|
||||||
|
|
||||||
options: {
|
create({
|
||||||
addGlobalClass: true
|
field: true,
|
||||||
},
|
|
||||||
|
|
||||||
properties: {
|
props: {
|
||||||
title: String,
|
title: String,
|
||||||
border: Boolean,
|
border: Boolean,
|
||||||
loading: Boolean,
|
loading: Boolean,
|
||||||
@ -28,7 +26,7 @@ Component({
|
|||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
onChange(event) {
|
onChange(event) {
|
||||||
this.triggerEvent('change', event.detail);
|
this.$emit('change', event.detail);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
16
dist/switch/index.js
vendored
16
dist/switch/index.js
vendored
@ -1,13 +1,11 @@
|
|||||||
Component({
|
import { create } from '../common/create';
|
||||||
behaviors: ['wx://form-field'],
|
|
||||||
|
|
||||||
options: {
|
create({
|
||||||
addGlobalClass: true
|
field: true,
|
||||||
},
|
|
||||||
|
|
||||||
externalClasses: ['custom-class', 'node-class'],
|
classes: ['node-class'],
|
||||||
|
|
||||||
properties: {
|
props: {
|
||||||
loading: Boolean,
|
loading: Boolean,
|
||||||
disabled: Boolean,
|
disabled: Boolean,
|
||||||
checked: {
|
checked: {
|
||||||
@ -30,8 +28,8 @@ Component({
|
|||||||
onClick() {
|
onClick() {
|
||||||
if (!this.data.disabled && !this.data.loading) {
|
if (!this.data.disabled && !this.data.loading) {
|
||||||
const checked = !this.data.checked;
|
const checked = !this.data.checked;
|
||||||
this.triggerEvent('input', checked);
|
this.$emit('input', checked);
|
||||||
this.triggerEvent('change', checked);
|
this.$emit('change', checked);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
14
dist/tab/index.js
vendored
14
dist/tab/index.js
vendored
@ -1,16 +1,12 @@
|
|||||||
const TABS_PATH = '../tabs/index';
|
import { create } from '../common/create';
|
||||||
|
|
||||||
Component({
|
create({
|
||||||
options: {
|
props: {
|
||||||
addGlobalClass: true
|
|
||||||
},
|
|
||||||
|
|
||||||
properties: {
|
|
||||||
disabled: Boolean,
|
disabled: Boolean,
|
||||||
title: {
|
title: {
|
||||||
type: String,
|
type: String,
|
||||||
observer() {
|
observer() {
|
||||||
const parent = this.getRelationNodes(TABS_PATH)[0];
|
const parent = this.getRelationNodes('../tabs/index')[0];
|
||||||
if (parent) {
|
if (parent) {
|
||||||
parent.setLine();
|
parent.setLine();
|
||||||
}
|
}
|
||||||
@ -19,7 +15,7 @@ Component({
|
|||||||
},
|
},
|
||||||
|
|
||||||
relations: {
|
relations: {
|
||||||
[TABS_PATH]: {
|
'../tabs/index': {
|
||||||
type: 'ancestor'
|
type: 'ancestor'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
17
dist/tabbar-item/index.js
vendored
17
dist/tabbar-item/index.js
vendored
@ -1,19 +1,14 @@
|
|||||||
const TABBAR_PATH = '../tabbar/index';
|
import { create } from '../common/create';
|
||||||
|
|
||||||
Component({
|
create({
|
||||||
properties: {
|
props: {
|
||||||
info: null,
|
info: null,
|
||||||
icon: String,
|
icon: String,
|
||||||
dot: Boolean
|
dot: Boolean
|
||||||
},
|
},
|
||||||
|
|
||||||
options: {
|
|
||||||
multipleSlots: true,
|
|
||||||
addGlobalClass: true
|
|
||||||
},
|
|
||||||
|
|
||||||
relations: {
|
relations: {
|
||||||
[TABBAR_PATH]: {
|
'../tabbar/index': {
|
||||||
type: 'ancestor'
|
type: 'ancestor'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -25,11 +20,11 @@ Component({
|
|||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
onClick() {
|
onClick() {
|
||||||
const parent = this.getRelationNodes(TABBAR_PATH)[0];
|
const parent = this.getRelationNodes('../tabbar/index')[0];
|
||||||
if (parent) {
|
if (parent) {
|
||||||
parent.onChange(this);
|
parent.onChange(this);
|
||||||
}
|
}
|
||||||
this.triggerEvent('click');
|
this.$emit('click');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
16
dist/tabbar/index.js
vendored
16
dist/tabbar/index.js
vendored
@ -1,13 +1,7 @@
|
|||||||
const ITEM_PATH = '../tabbar-item/index';
|
import { create } from '../common/create';
|
||||||
|
|
||||||
Component({
|
create({
|
||||||
options: {
|
props: {
|
||||||
addGlobalClass: true
|
|
||||||
},
|
|
||||||
|
|
||||||
externalClasses: ['custom-class'],
|
|
||||||
|
|
||||||
properties: {
|
|
||||||
active: {
|
active: {
|
||||||
type: Number,
|
type: Number,
|
||||||
observer(active) {
|
observer(active) {
|
||||||
@ -35,7 +29,7 @@ Component({
|
|||||||
},
|
},
|
||||||
|
|
||||||
relations: {
|
relations: {
|
||||||
[ITEM_PATH]: {
|
'../tabbar-item/index': {
|
||||||
type: 'descendant',
|
type: 'descendant',
|
||||||
|
|
||||||
linked(target) {
|
linked(target) {
|
||||||
@ -63,7 +57,7 @@ Component({
|
|||||||
onChange(child) {
|
onChange(child) {
|
||||||
const active = this.data.items.indexOf(child);
|
const active = this.data.items.indexOf(child);
|
||||||
if (active !== this.data.currentActive && active !== -1) {
|
if (active !== this.data.currentActive && active !== -1) {
|
||||||
this.triggerEvent('change', active);
|
this.$emit('change', active);
|
||||||
this.setData({ currentActive: active });
|
this.setData({ currentActive: active });
|
||||||
this.setActiveItem();
|
this.setActiveItem();
|
||||||
}
|
}
|
||||||
|
14
dist/tabs/index.js
vendored
14
dist/tabs/index.js
vendored
@ -1,12 +1,8 @@
|
|||||||
const TAB_PATH = '../tab/index';
|
import { create } from '../common/create';
|
||||||
|
|
||||||
Component({
|
|
||||||
options: {
|
|
||||||
addGlobalClass: true
|
|
||||||
},
|
|
||||||
|
|
||||||
|
create({
|
||||||
relations: {
|
relations: {
|
||||||
[TAB_PATH]: {
|
'../tab/index': {
|
||||||
type: 'descendant',
|
type: 'descendant',
|
||||||
|
|
||||||
linked(target) {
|
linked(target) {
|
||||||
@ -33,7 +29,7 @@ Component({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
properties: {
|
props: {
|
||||||
color: {
|
color: {
|
||||||
type: String,
|
type: String,
|
||||||
observer: 'setLine'
|
observer: 'setLine'
|
||||||
@ -78,7 +74,7 @@ Component({
|
|||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
trigger(eventName, index) {
|
trigger(eventName, index) {
|
||||||
this.triggerEvent(eventName, {
|
this.$emit(eventName, {
|
||||||
index,
|
index,
|
||||||
title: this.data.tabs[index].data.title
|
title: this.data.tabs[index].data.title
|
||||||
});
|
});
|
||||||
|
10
dist/tag/index.js
vendored
10
dist/tag/index.js
vendored
@ -1,11 +1,7 @@
|
|||||||
Component({
|
import { create } from '../common/create';
|
||||||
options: {
|
|
||||||
addGlobalClass: true
|
|
||||||
},
|
|
||||||
|
|
||||||
externalClasses: ['custom-class'],
|
create({
|
||||||
|
props: {
|
||||||
properties: {
|
|
||||||
type: String,
|
type: String,
|
||||||
mark: Boolean,
|
mark: Boolean,
|
||||||
plain: Boolean
|
plain: Boolean
|
||||||
|
12
dist/toast/index.js
vendored
12
dist/toast/index.js
vendored
@ -1,11 +1,7 @@
|
|||||||
import Toast from './toast';
|
import { create } from '../common/create';
|
||||||
|
|
||||||
Component({
|
create({
|
||||||
options: {
|
props: {
|
||||||
addGlobalClass: true
|
|
||||||
},
|
|
||||||
|
|
||||||
properties: {
|
|
||||||
show: Boolean,
|
show: Boolean,
|
||||||
mask: Boolean,
|
mask: Boolean,
|
||||||
message: String,
|
message: String,
|
||||||
@ -32,5 +28,3 @@ Component({
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
export default Toast;
|
|
||||||
|
2
dist/toast/toast.js
vendored
2
dist/toast/toast.js
vendored
@ -1,4 +1,4 @@
|
|||||||
import { isObj } from '../utils/index';
|
import { isObj } from '../common/utils';
|
||||||
|
|
||||||
const defaultOptions = {
|
const defaultOptions = {
|
||||||
type: 'text',
|
type: 'text',
|
||||||
|
15
dist/transition/index.js
vendored
15
dist/transition/index.js
vendored
@ -1,15 +1,10 @@
|
|||||||
import transitionBehaviors from '../behaviors/transition';
|
import { create } from '../common/create';
|
||||||
|
import { transition } from '../mixins/transition';
|
||||||
|
|
||||||
Component({
|
create({
|
||||||
options: {
|
mixins: [transition(true)],
|
||||||
addGlobalClass: true
|
|
||||||
},
|
|
||||||
|
|
||||||
externalClasses: ['custom-class'],
|
props: {
|
||||||
|
|
||||||
behaviors: [transitionBehaviors(true)],
|
|
||||||
|
|
||||||
properties: {
|
|
||||||
name: {
|
name: {
|
||||||
type: String,
|
type: String,
|
||||||
value: 'fade'
|
value: 'fade'
|
||||||
|
18
dist/tree-select/index.js
vendored
18
dist/tree-select/index.js
vendored
@ -1,11 +1,9 @@
|
|||||||
|
import { create } from '../common/create';
|
||||||
|
|
||||||
const ITEM_HEIGHT = 44;
|
const ITEM_HEIGHT = 44;
|
||||||
|
|
||||||
Component({
|
create({
|
||||||
options: {
|
props: {
|
||||||
addGlobalClass: true
|
|
||||||
},
|
|
||||||
|
|
||||||
properties: {
|
|
||||||
items: {
|
items: {
|
||||||
type: Array,
|
type: Array,
|
||||||
observer() {
|
observer() {
|
||||||
@ -16,9 +14,7 @@ Component({
|
|||||||
mainActiveIndex: {
|
mainActiveIndex: {
|
||||||
type: Number,
|
type: Number,
|
||||||
value: 0,
|
value: 0,
|
||||||
observer() {
|
observer: 'updateSubItems'
|
||||||
this.updateSubItems();
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
activeId: {
|
activeId: {
|
||||||
type: Number,
|
type: Number,
|
||||||
@ -46,7 +42,7 @@ Component({
|
|||||||
const {
|
const {
|
||||||
dataset = {}
|
dataset = {}
|
||||||
} = event.currentTarget || {};
|
} = event.currentTarget || {};
|
||||||
this.triggerEvent('click-item', { ...(dataset.item || {}) });
|
this.$emit('click-item', { ...(dataset.item || {}) });
|
||||||
},
|
},
|
||||||
|
|
||||||
// 当一个导航被点击时
|
// 当一个导航被点击时
|
||||||
@ -54,7 +50,7 @@ Component({
|
|||||||
const {
|
const {
|
||||||
dataset = {}
|
dataset = {}
|
||||||
} = event.currentTarget || {};
|
} = event.currentTarget || {};
|
||||||
this.triggerEvent('click-nav', { index: dataset.index });
|
this.$emit('click-nav', { index: dataset.index });
|
||||||
},
|
},
|
||||||
|
|
||||||
// 更新子项列表
|
// 更新子项列表
|
||||||
|
2
dist/tree-select/index.wxss
vendored
2
dist/tree-select/index.wxss
vendored
@ -1 +1 @@
|
|||||||
.van-ellipsis{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.van-multi-ellipsis--l2{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.van-multi-ellipsis--l3{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical}.van-clearfix::after{content:'';display:table;clear:both}.van-hairline,.van-hairline--bottom,.van-hairline--left,.van-hairline--right,.van-hairline--surround,.van-hairline--top,.van-hairline--top-bottom{position:relative}.van-hairline--bottom::after,.van-hairline--left::after,.van-hairline--right::after,.van-hairline--surround::after,.van-hairline--top-bottom::after,.van-hairline--top::after,.van-hairline::after{content:'';position:absolute;top:0;left:0;width:200%;height:200%;-webkit-transform:scale(.5);transform:scale(.5);-webkit-transform-origin:0 0;transform-origin:0 0;pointer-events:none;box-sizing:border-box;border:0 solid #e5e5e5}.van-hairline--top::after{border-top-width:1px}.van-hairline--left::after{border-left-width:1px}.van-hairline--right::after{border-right-width:1px}.van-hairline--bottom::after{border-bottom-width:1px}.van-hairline--top-bottom::after{border-width:1px 0}.van-hairline--surround::after{border-width:1px}.tree-select{-webkit-user-select:none;user-select:none;position:relative;font-size:16px}.tree-select__nav{width:143px;position:absolute;left:0;top:0;bottom:0;overflow:scroll;background-color:#fff;-webkit-overflow-scrolling:touch}.tree-select__nitem{line-height:44px;padding:0 15px;background-color:#fff}.tree-select__nitem--active{background-color:#f8f8f8}.tree-select__content{padding:0 15px;margin-left:143px;overflow:scroll;-webkit-overflow-scrolling:touch}.tree-select__item{position:relative;line-height:44px;padding-left:5px;padding-right:18px}.tree-select__item--active{color:#f44}.tree-select__selected{float:right;position:absolute;right:0;top:0;bottom:0;line-height:inherit}
|
.van-ellipsis{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.van-multi-ellipsis--l2{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.van-multi-ellipsis--l3{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical}.tree-select{-webkit-user-select:none;user-select:none;position:relative;font-size:16px}.tree-select__nav{width:143px;position:absolute;left:0;top:0;bottom:0;overflow:scroll;background-color:#fff;-webkit-overflow-scrolling:touch}.tree-select__nitem{line-height:44px;padding:0 15px;background-color:#fff}.tree-select__nitem--active{background-color:#f8f8f8}.tree-select__content{padding:0 15px;margin-left:143px;overflow:scroll;-webkit-overflow-scrolling:touch}.tree-select__item{position:relative;line-height:44px;padding-left:5px;padding-right:18px}.tree-select__item--active{color:#f44}.tree-select__selected{float:right;position:absolute;right:0;top:0;bottom:0;line-height:inherit}
|
@ -18,7 +18,7 @@ create({
|
|||||||
centered: Boolean,
|
centered: Boolean,
|
||||||
currency: {
|
currency: {
|
||||||
type: String,
|
type: String,
|
||||||
default: '¥'
|
value: '¥'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user