From 1bd233534c9ae832c3e40bacd4842de9b631b6da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=98=89=E6=B6=B5?= Date: Thu, 27 Sep 2018 14:27:00 +0800 Subject: [PATCH] build --- dist/area/index.js | 20 +-- dist/badge-group/index.js | 27 +-- dist/badge/index.js | 7 +- dist/button/index.js | 3 +- dist/button/index.wxml | 11 +- dist/col/index.js | 7 +- dist/common/component.js | 20 ++- dist/dialog/index.js | 32 ++-- dist/dialog/index.wxml | 5 + dist/mixins/button.js | 71 +++----- dist/mixins/observer/index.js | 21 ++- dist/mixins/open-type.js | 22 +++ dist/mixins/touch.js | 37 ++--- dist/mixins/transition.js | 100 ++++++------ dist/nav-bar/index.js | 40 ++--- dist/notice-bar/index.js | 281 +++++++++++++++----------------- dist/notify/index.js | 71 ++++---- dist/notify/notify.js | 30 ++-- dist/overlay/index.js | 33 ++-- dist/panel/index.js | 18 +- dist/popup/index.js | 60 ++++--- dist/progress/index.js | 148 ++++++----------- dist/radio-group/index.js | 59 +++---- dist/radio/index.js | 77 ++++----- dist/row/index.js | 67 ++++---- dist/search/index.js | 83 +++++----- dist/slider/index.js | 146 ++++++++--------- dist/stepper/index.js | 136 +++++++--------- dist/steps/index.js | 77 ++++----- dist/submit-bar/index.js | 78 ++++----- dist/switch-cell/index.js | 50 +++--- dist/switch/index.js | 57 +++---- dist/tab/index.js | 54 +++--- dist/tabbar-item/index.js | 58 +++---- dist/tabbar/index.js | 117 ++++++------- dist/tabs/index.js | 299 ++++++++++++++++------------------ dist/tag/index.js | 11 +- dist/toast/index.js | 61 ++++--- dist/toast/toast.js | 94 +++++------ dist/transition/index.js | 14 +- dist/tree-select/index.js | 119 +++++++------- 41 files changed, 1262 insertions(+), 1459 deletions(-) create mode 100644 dist/mixins/open-type.js diff --git a/dist/area/index.js b/dist/area/index.js index 2d3bf723..6d7b6de5 100644 --- a/dist/area/index.js +++ b/dist/area/index.js @@ -2,14 +2,8 @@ import { VantComponent } from '../common/component'; VantComponent({ props: { title: String, + value: String, loading: Boolean, - value: { - type: String, - observer(value) { - this.code = value; - this.setValues(); - } - }, itemHeight: { type: Number, value: 44 @@ -24,10 +18,7 @@ VantComponent({ }, areaList: { type: Object, - value: {}, - observer() { - this.setValues(); - } + value: {} } }, data: { @@ -40,6 +31,13 @@ VantComponent({ return columns.slice(0, +columnsNum); } }, + watch: { + value(value) { + this.code = value; + this.setValues(); + }, + areaList: 'setValues' + }, methods: { onCancel() { this.$emit('cancel', { diff --git a/dist/badge-group/index.js b/dist/badge-group/index.js index cc1f4ec1..45236929 100644 --- a/dist/badge-group/index.js +++ b/dist/badge-group/index.js @@ -1,28 +1,29 @@ import { VantComponent } from '../common/component'; VantComponent({ - relations: { - '../badge/index': { - type: 'descendant', - linked(target) { - this.data.badges.push(target); - this.setActive(); - }, - unlinked(target) { - this.data.badges = this.data.badges.filter(item => item !== target); - this.setActive(); - } + relation: { + name: 'badge', + type: 'descendant', + linked(target) { + this.data.badges.push(target); + this.setActive(); + }, + unlinked(target) { + this.data.badges = this.data.badges.filter(item => item !== target); + this.setActive(); } }, props: { active: { type: Number, - value: 0, - observer: 'setActive' + value: 0 } }, data: { badges: [] }, + watch: { + active: 'setActive' + }, beforeCreate() { this.currentActive = -1; }, diff --git a/dist/badge/index.js b/dist/badge/index.js index 4a9ee17d..a520c274 100644 --- a/dist/badge/index.js +++ b/dist/badge/index.js @@ -1,9 +1,8 @@ import { VantComponent } from '../common/component'; VantComponent({ - relations: { - '../badge-group/index': { - type: 'ancestor' - } + relation: { + type: 'ancestor', + name: 'badge-group' }, props: { info: Number, diff --git a/dist/button/index.js b/dist/button/index.js index a601e740..0274d905 100644 --- a/dist/button/index.js +++ b/dist/button/index.js @@ -1,7 +1,8 @@ import { VantComponent } from '../common/component'; import { button } from '../mixins/button'; +import { openType } from '../mixins/open-type'; VantComponent({ - mixins: [button], + mixins: [button, openType], props: { plain: Boolean, block: Boolean, diff --git a/dist/button/index.wxml b/dist/button/index.wxml index 8d1be79a..8e99a568 100644 --- a/dist/button/index.wxml +++ b/dist/button/index.wxml @@ -1,5 +1,6 @@