diff --git a/dist/actionsheet/index.js b/dist/actionsheet/index.js deleted file mode 100644 index 46056ed7..00000000 --- a/dist/actionsheet/index.js +++ /dev/null @@ -1,42 +0,0 @@ -'use strict'; - -Component({ - externalClasses: ['mask-class', 'container-class'], - properties: { - actions: { - type: Array, - value: [] - }, - show: { - type: Boolean, - value: false - }, - cancelWithMask: { - type: Boolean, - value: true - }, - cancelText: { - type: String, - value: '' - } - }, - methods: { - onMaskClick: function onMaskClick() { - if (this.data.cancelWithMask) { - this.cancelClick(); - } - }, - cancelClick: function cancelClick() { - this.triggerEvent('cancel'); - }, - handleBtnClick: function handleBtnClick(_ref) { - var _ref$currentTarget = _ref.currentTarget, - currentTarget = _ref$currentTarget === undefined ? {} : _ref$currentTarget; - - var dataset = currentTarget.dataset || {}; - var index = dataset.index; - - this.triggerEvent('actionclick', { index: index }); - } - } -}); \ No newline at end of file diff --git a/dist/actionsheet/index.json b/dist/actionsheet/index.json deleted file mode 100644 index b5676868..00000000 --- a/dist/actionsheet/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "component": true, - "usingComponents": { - "van-button": "../button/index" - } -} diff --git a/dist/actionsheet/index.wxml b/dist/actionsheet/index.wxml deleted file mode 100644 index 63c0816d..00000000 --- a/dist/actionsheet/index.wxml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - {{ item.name }} - - {{ item.subname }} - - - - - - - {{ cancelText }} - - - diff --git a/dist/actionsheet/index.wxss b/dist/actionsheet/index.wxss deleted file mode 100644 index 4bb37b21..00000000 --- a/dist/actionsheet/index.wxss +++ /dev/null @@ -1 +0,0 @@ -.van-actionsheet{background-color:#f8f8f8}.van-actionsheet__mask{position:fixed;top:0;left:0;right:0;bottom:0;z-index:10;background:rgba(0,0,0,.7);display:none}.van-actionsheet__container{position:fixed;left:0;right:0;bottom:0;background:#f8f8f8;-webkit-transform:translate3d(0,50%,0);transform:translate3d(0,50%,0);-webkit-transform-origin:center;transform-origin:center;-webkit-transition:all .2s ease;transition:all .2s ease;z-index:11;opacity:0;visibility:hidden}.van-actionsheet__button{margin-bottom:0!important}.van-actionsheet__footer .van-actionsheet__button{background:#fff}.van-actionsheet__button-content{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row;-webkit-box-pack:center;justify-content:center}.van-actionsheet__subname{color:#999}.van-actionsheet__name,.van-actionsheet__subname{height:45px;line-height:45px}.van-actionsheet__button.van-button:last-child::after{border-bottom-width:0}.van-actionsheet__subname{margin-left:2px;font-size:12px}.van-actionsheet__footer{margin-top:10px}.van-actionsheet__button--loading .van-actionsheet__subname{color:transparent}.van-actionsheet--show .van-actionsheet__container{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);visibility:visible}.van-actionsheet--show .van-actionsheet__mask{display:block} \ No newline at end of file diff --git a/dist/badge/index.js b/dist/badge/index.js deleted file mode 100644 index 7672b940..00000000 --- a/dist/badge/index.js +++ /dev/null @@ -1,27 +0,0 @@ -'use strict'; - -var DEFAULT_COLOR = '#fff'; -var DEFAULT_BACKGROUND_COLOR = '#f44'; -var DEFAULT_FONT_SIZE = 10; -var DEFAULT_BOX_SHADOW = '0 0 0 2px #fff'; - -Component({ - properties: { - color: { - type: String, - value: DEFAULT_COLOR - }, - backgroundColor: { - type: String, - value: DEFAULT_BACKGROUND_COLOR - }, - fontSize: { - type: Number, - value: DEFAULT_FONT_SIZE - }, - boxShadow: { - type: String, - value: DEFAULT_BOX_SHADOW - } - } -}); \ No newline at end of file diff --git a/dist/badge/index.json b/dist/badge/index.json deleted file mode 100644 index 467ce294..00000000 --- a/dist/badge/index.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "component": true -} diff --git a/dist/badge/index.wxml b/dist/badge/index.wxml deleted file mode 100644 index 31b18476..00000000 --- a/dist/badge/index.wxml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - diff --git a/dist/badge/index.wxss b/dist/badge/index.wxss deleted file mode 100644 index fa21f8fa..00000000 --- a/dist/badge/index.wxss +++ /dev/null @@ -1 +0,0 @@ -.van-badge{position:relative}.van-badge__text{position:absolute;top:-.8em;right:0;height:1.6em;min-width:1.6em;line-height:1.6;padding:0 .4em;font-size:20px;border-radius:.8em;background:#f44;color:#fff;text-align:center;white-space:nowrap;-webkit-transform:translateX(50%) scale(.5);transform:translateX(50%) scale(.5);-webkit-transform-origin:center;transform-origin:center;z-index:10;box-shadow:0 0 0 2px #fff;box-sizing:border-box} \ No newline at end of file diff --git a/dist/btn/index.js b/dist/btn/index.js deleted file mode 100644 index 9f73bfb3..00000000 --- a/dist/btn/index.js +++ /dev/null @@ -1,61 +0,0 @@ -'use strict'; - -var nativeButtonBehavior = require('./native-button-behaviors'); - -Component({ - externalClasses: ['custom-class', 'theme-class'], - behaviors: [nativeButtonBehavior], - relations: { - '../button-group/index': { - type: 'parent', - linked: function linked() { - this.setData({ inGroup: true }); - }, - unlinked: function unlinked() { - this.setData({ inGroup: false }); - } - } - }, - properties: { - type: { - type: String, - value: '' - }, - size: { - type: String, - value: '' - }, - plain: { - type: Boolean, - value: false - }, - disabled: { - type: Boolean, - value: false - }, - loading: { - type: Boolean, - value: false - } - }, - - data: { - inGroup: false, - isLast: false - }, - - methods: { - handleTap: function handleTap() { - if (this.data.disabled) { - this.triggerEvent('disabledclick'); - return; - } - this.triggerEvent('buttonclick'); - }, - switchLastButtonStatus: function switchLastButtonStatus() { - var isLast = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false; - - this.setData({ isLast: isLast }); - } - } -}); \ No newline at end of file diff --git a/dist/btn/index.json b/dist/btn/index.json deleted file mode 100644 index 32640e0d..00000000 --- a/dist/btn/index.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "component": true -} \ No newline at end of file diff --git a/dist/btn/index.wxml b/dist/btn/index.wxml deleted file mode 100644 index 0290c18a..00000000 --- a/dist/btn/index.wxml +++ /dev/null @@ -1,24 +0,0 @@ - diff --git a/dist/btn/index.wxss b/dist/btn/index.wxss deleted file mode 100644 index 4880f450..00000000 --- a/dist/btn/index.wxss +++ /dev/null @@ -1 +0,0 @@ -.van-button{position:relative;color:#333;background-color:#fff;padding-left:15px;padding-right:15px;border-radius:2px;font-size:16px;line-height:45px;height:45px;box-sizing:border-box;text-decoration:none;text-align:center;vertical-align:middle;overflow:visible}.van-button--group{margin-bottom:10px}.van-button::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;border-width:1px;border-radius:4px}.van-button--primary{color:#fff;background-color:#4b0}.van-button--primary::after{border-color:#0a0}.van-button--warn{color:#fff;background-color:#f85}.van-button--warn::after{border-color:#f85}.van-button--danger{color:#fff;background-color:#f44}.van-button--danger::after{border-color:#e33}.van-button--small{display:inline-block;height:30px;line-height:30px;font-size:12px}.van-button--small.van-button--group{margin-bottom:0;margin-right:5px}.van-button--mini{display:inline-block;line-height:21px;height:22px;font-size:10px;padding-left:5px;padding-right:5px}.van-button--mini.van-button--group{margin-bottom:0;margin-right:5px}.van-button--large{border-radius:0;border:none;line-height:50px;height:50px}.van-button--large.van-button--group{margin-bottom:0}.van-button--plain.van-button{background-color:transparent}.van-button--plain.van-button--primary{color:#06bf04}.van-button--plain.van-button--warn{color:#f60}.van-button--plain.van-button--danger{color:#f44}.button-hover{opacity:.9}.van-button--loading{color:transparent;opacity:1}.van-button--loading::before{position:absolute;left:50%;top:50%;content:' ';width:16px;height:16px;margin-left:-8px;margin-top:-8px;border:3px solid #e5e5e5;border-color:#666 #e5e5e5 #e5e5e5 #e5e5e5;border-radius:8px;box-sizing:border-box;-webkit-animation:button-spin .6s linear;animation:button-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.van-button--danger.van-button--loading::before,.van-button--primary.van-button--loading::before,.van-button--warn.van-button--loading::before{border-color:#fff rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.1)}@-webkit-keyframes button-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes button-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.van-button.van-button--disabled{color:#999!important;background:#f8f8f8!important;border-color:#e5e5e5!important;cursor:not-allowed!important;opacity:1!important}.van-button.van-button--disabled::after{border-color:#e5e5e5!important}.van-button--group.van-button--last{margin-bottom:0;margin-right:0} \ No newline at end of file diff --git a/dist/btn/native-button-behaviors.js b/dist/btn/native-button-behaviors.js deleted file mode 100644 index 3bd240d8..00000000 --- a/dist/btn/native-button-behaviors.js +++ /dev/null @@ -1,74 +0,0 @@ -'use strict'; - -module.exports = 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: function bindgetuserinfo() { - var _ref = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}, - _ref$detail = _ref.detail, - detail = _ref$detail === undefined ? {} : _ref$detail; - - this.triggerEvent('getuserinfo', detail); - }, - bindcontact: function bindcontact() { - var _ref2 = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}, - _ref2$detail = _ref2.detail, - detail = _ref2$detail === undefined ? {} : _ref2$detail; - - this.triggerEvent('contact', detail); - }, - bindgetphonenumber: function bindgetphonenumber() { - var _ref3 = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}, - _ref3$detail = _ref3.detail, - detail = _ref3$detail === undefined ? {} : _ref3$detail; - - this.triggerEvent('getphonenumber', detail); - }, - bindopensetting: function bindopensetting() { - var _ref4 = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}, - _ref4$detail = _ref4.detail, - detail = _ref4$detail === undefined ? {} : _ref4$detail; - - this.triggerEvent('opensetting', detail); - }, - binderror: function binderror() { - var _ref5 = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}, - _ref5$detail = _ref5.detail, - detail = _ref5$detail === undefined ? {} : _ref5$detail; - - this.triggerEvent('error', detail); - } - } -}); \ No newline at end of file diff --git a/dist/capsule/index.js b/dist/capsule/index.js deleted file mode 100644 index 7b8452cc..00000000 --- a/dist/capsule/index.js +++ /dev/null @@ -1,31 +0,0 @@ -'use strict'; - -Component({ - externalClasses: ['custom-class'], - /** - * 组件的属性列表 - * 用于组件自定义设置 - */ - properties: { - // 颜色状态 - type: { - type: String, - value: '' - }, - // 自定义颜色 - color: { - type: String, - value: '' - }, - // 左侧内容 - leftText: { - type: String, - value: '' - }, - // 右侧内容 - rightText: { - type: String, - value: '' - } - } -}); \ No newline at end of file diff --git a/dist/capsule/index.json b/dist/capsule/index.json deleted file mode 100644 index 467ce294..00000000 --- a/dist/capsule/index.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "component": true -} diff --git a/dist/capsule/index.wxml b/dist/capsule/index.wxml deleted file mode 100644 index f5026813..00000000 --- a/dist/capsule/index.wxml +++ /dev/null @@ -1,17 +0,0 @@ - - - {{ leftText }} - {{ rightText }} - - - {{ leftText }} - {{ rightText }} - - - diff --git a/dist/capsule/index.wxss b/dist/capsule/index.wxss deleted file mode 100644 index 31c7de76..00000000 --- a/dist/capsule/index.wxss +++ /dev/null @@ -1 +0,0 @@ -.van-capsule{display:inline-block;font-size:12px;vertical-align:middle;line-height:19px;-webkit-transform:scale(.83);transform:scale(.83)}.van-capsule__left,.van-capsule__right{display:inline-block;line-height:17px;height:19px;vertical-align:middle;box-sizing:border-box}.van-capsule__left{padding:0 2px;color:#fff;background:#999;border-radius:2px 0 0 2px;border:1rpx solid #999}.van-capsule__right{padding:0 5px;color:#999;border-radius:0 2px 2px 0;border:1rpx solid #999}.van-capsule--danger .van-capsule__left{color:#fff;background:#f24544;border-color:#f24544}.van-capsule--danger .van-capsule__right{color:#f24544;border-color:#f24544} \ No newline at end of file diff --git a/dist/card/index.js b/dist/card/index.js deleted file mode 100644 index fbc3c037..00000000 --- a/dist/card/index.js +++ /dev/null @@ -1,26 +0,0 @@ -'use strict'; - -Component({ - options: { - multipleSlots: true - }, - - externalClasses: ['card-class', 'thumb-class'], - - properties: { - useThumbSlot: { - type: Boolean, - value: false - }, - useDetailSlot: { - type: Boolean, - value: false - }, - thumb: String, - price: String, - title: String, - num: Number, - desc: String, - status: String - } -}); \ No newline at end of file diff --git a/dist/card/index.json b/dist/card/index.json deleted file mode 100644 index 467ce294..00000000 --- a/dist/card/index.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "component": true -} diff --git a/dist/card/index.wxml b/dist/card/index.wxml deleted file mode 100644 index 5f616f22..00000000 --- a/dist/card/index.wxml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - ¥ {{ price }} - - {{ title }} - - - - - x {{ num }} - - {{ desc }} - - - - - {{ status }} - - - - diff --git a/dist/card/index.wxss b/dist/card/index.wxss deleted file mode 100644 index 986edffd..00000000 --- a/dist/card/index.wxss +++ /dev/null @@ -1 +0,0 @@ -.van-c-red{color:#f44!important}.van-c-gray{color:#c9c9c9!important}.van-c-gray-dark{color:#999!important}.van-c-gray-darker{color:#666!important}.van-c-black{color:#333!important}.van-c-blue{color:#38f!important}.van-c-green{color:#06bf04!important}.van-pull-left{float:left}.van-pull-right{float:right}.van-center{text-align:center}.van-right{text-align:right}.van-text-deleted{text-decoration:line-through}.van-font-8{font-size:8px}.van-font-10{font-size:10px}.van-font-12{font-size:12px}.van-font-14{font-size:14px}.van-font-16{font-size:16px}.van-font-18{font-size:18px}.van-font-20{font-size:20px}.van-font-22{font-size:22px}.van-font-24{font-size:24px}.van-font-26{font-size:26px}.van-font-30{font-size:30px}.van-font-bold{font-weight:700}.van-arrow{position:absolute;right:15px;top:50%;display:inline-block;height:6px;width:6px;border-width:2px 2px 0 0;border-color:#c8c8c8;border-style:solid;-webkit-transform:translateY(-50%) matrix(.71,.71,-.71,.71,0,0);transform:translateY(-50%) matrix(.71,.71,-.71,.71,0,0)}.van-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;word-wrap:normal}.van-ellipsis--l2{max-height:40px;line-height:20px;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.van-ellipsis--l3{max-height:60px;line-height:20px;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical}.van-clearfix{zoom:1}.van-clearfix::after{content:'';display:table;clear:both}.van-c-red{color:#f44}.van-c-black{color:#000}.van-c-green{color:#06bf04}.van-c-blue{color:#38f}.van-c-gray{color:#c9c9c9}.van-c-gray-dark{color:#999}.van-c-gray-darker{color:#666}.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}.van-card{display:-webkit-box;display:flex;margin-left:0;padding:5px 15px;overflow:hidden;position:relative;font-size:14px}.van-card__thumb{width:90px;height:90px;position:relative;margin-left:auto;margin-right:auto;overflow:hidden;background-size:cover}.van-card__img{position:absolute;top:0;left:0;right:0;bottom:0;width:auto;height:auto;max-width:100%;max-height:100%}.van-card__detail{-webkit-box-flex:1;flex:1;margin-left:10px;position:relative}.van-card__detail-row{overflow:hidden;line-height:20px;min-height:20px;margin-bottom:3px}.van-card__right-col{float:right}.van-card__left-col{margin-right:80px} \ No newline at end of file diff --git a/dist/cell-group/index.js b/dist/cell-group/index.js deleted file mode 100644 index 14aa1674..00000000 --- a/dist/cell-group/index.js +++ /dev/null @@ -1,75 +0,0 @@ -'use strict'; - -var _relations; - -var CELL_PATH = '../cell/index'; -var FIELD_PATH = '../field/index'; - -Component({ - properties: { - titleWidth: { - type: Number, - value: null - }, - border: { - type: Boolean, - value: false - } - }, - relations: (_relations = {}, _relations[CELL_PATH] = { - type: 'child', - linked: function linked() { - this._updateIsLastElement(CELL_PATH); - }, - linkChanged: function linkChanged() { - this._updateIsLastElement(CELL_PATH); - }, - unlinked: function unlinked() { - this._updateIsLastElement(CELL_PATH); - } - }, _relations[FIELD_PATH] = { - type: 'child', - linked: function linked() { - this._updateIsLastElement(FIELD_PATH); - }, - linkChanged: function linkChanged() { - this._updateIsLastElement(FIELD_PATH); - }, - unlinked: function unlinked() { - this._updateIsLastElement(FIELD_PATH); - } - }, _relations), - - data: { - elementUpdateTimeout: 0 - }, - - methods: { - _updateIsLastElement: function _updateIsLastElement(childPath) { - var _this = this; - - // 用 setTimeout 减少计算次数 - if (this.data.elementUpdateTimeout > 0) { - return; - } - - var elementUpdateTimeout = setTimeout(function () { - _this.setData({ elementUpdateTimeout: 0 }); - var elements = _this.getRelationNodes(childPath); - var titleWidth = _this.properties.titleWidth; - - - if (elements.length > 0) { - var lastIndex = elements.length - 1; - - elements.forEach(function (cell, index) { - titleWidth && cell.setTitleWidth(titleWidth); - cell.updateIsLastElement(index === lastIndex); - }); - } - }); - - this.setData({ elementUpdateTimeout: elementUpdateTimeout }); - } - } -}); \ No newline at end of file diff --git a/dist/cell-group/index.json b/dist/cell-group/index.json deleted file mode 100644 index 32640e0d..00000000 --- a/dist/cell-group/index.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "component": true -} \ No newline at end of file diff --git a/dist/cell-group/index.wxml b/dist/cell-group/index.wxml deleted file mode 100644 index f84d06f4..00000000 --- a/dist/cell-group/index.wxml +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/dist/cell-group/index.wxss b/dist/cell-group/index.wxss deleted file mode 100644 index aec96ef3..00000000 --- a/dist/cell-group/index.wxss +++ /dev/null @@ -1 +0,0 @@ -.cell-group{position:relative;background-color:#fff;overflow:hidden}.cell-group--with-border::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;border-top-width:1px;border-bottom-width:1px} \ No newline at end of file diff --git a/dist/cell/index.js b/dist/cell/index.js deleted file mode 100644 index 13ebdf5e..00000000 --- a/dist/cell/index.js +++ /dev/null @@ -1,109 +0,0 @@ -'use strict'; - -var warn = function warn(msg, getValue) { - console.warn(msg); -}; - -Component({ - externalClasses: ['cell-class', 'title-class'], - options: { - multipleSlots: true - }, - relations: { - '../cell-group/index': { - type: 'parent' - } - }, - properties: { - title: { - type: String, - description: '左侧标题' - }, - label: { - type: String, - description: '标题下方的描述信息' - }, - value: { - type: String, - description: '右侧内容' - }, - onlyTapFooter: { - type: Boolean, - description: '只有点击 footer 区域才触发 tab 事件' - }, - isLink: { - type: null, - value: '', - description: '是否展示右侧箭头并开启尝试以 url 跳转' - }, - linkType: { - type: String, - value: 'navigateTo', - description: '链接类型,可选值为 navigateTo,redirectTo,switchTab,reLaunch' - }, - url: { - type: String, - value: '' - }, - noBorder: Boolean - }, - data: { - isLastCell: true, - titleWidth: 'auto' - }, - methods: { - footerTap: function footerTap() { - // 如果并没有设置只点击 footer 生效,那就不需要额外处理。cell 上有事件会自动处理 - if (!this.data.onlyTapFooter) { - return; - } - - this.triggerEvent('tap', {}); - doNavigate.call(this); - }, - cellTap: function cellTap() { - // 如果只点击 footer 生效,那就不需要在 cell 根节点上处理 - if (this.data.onlyTapFooter) { - return; - } - - this.triggerEvent('tap', {}); - doNavigate.call(this); - }, - - - // 用于被 cell-group 更新,标志是否是最后一个 cell - updateIsLastElement: function updateIsLastElement(isLastCell) { - this.setData({ isLastCell: isLastCell }); - }, - - - // 设置统一的title区域宽度 - setTitleWidth: function setTitleWidth(titleWidth) { - this.setData({ - titleWidth: titleWidth + 'px' - }); - } - } -}); - -// 处理跳转 -function doNavigate() { - var _data$url = this.data.url, - url = _data$url === undefined ? '' : _data$url; - - var type = typeof this.data.isLink; - - if (!this.data.isLink || !url || url === 'true' || url === 'false') return; - - if (type !== 'boolean' && type !== 'string') { - warn('isLink 属性值必须是一个字符串或布尔值', this.data.isLink); - return; - } - - if (['navigateTo', 'redirectTo', 'switchTab', 'reLaunch'].indexOf(this.data.linkType) === -1) { - warn('linkType 属性可选值为 navigateTo,redirectTo,switchTab,reLaunch', this.data.linkType); - return; - } - wx[this.data.linkType].call(wx, { url: url }); -} \ No newline at end of file diff --git a/dist/cell/index.json b/dist/cell/index.json deleted file mode 100644 index 32640e0d..00000000 --- a/dist/cell/index.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "component": true -} \ No newline at end of file diff --git a/dist/cell/index.wxml b/dist/cell/index.wxml deleted file mode 100644 index 820bb76f..00000000 --- a/dist/cell/index.wxml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - {{ title }} - {{ label }} - - - - - - - - {{ value }} - - - - - \ No newline at end of file diff --git a/dist/cell/index.wxss b/dist/cell/index.wxss deleted file mode 100644 index ab487cd2..00000000 --- a/dist/cell/index.wxss +++ /dev/null @@ -1 +0,0 @@ -.van-cell{position:relative;padding:12px 15px;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;line-height:1.4;background-color:#fff;font-size:14px}.van-cell::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;border-bottom-width:1px;left:15px;right:0}.van-cell__icon{margin-right:5px}.van-cell__icon:empty{display:none}.van-cell__title{padding-right:10px}.van-cell__title:empty{display:none}.van-cell__bd{-webkit-box-flex:1;flex:1}.van-cell__text{line-height:24px;font-size:14px}.van-cell__desc{line-height:1.2;font-size:12px;color:#666}.van-cell__ft{position:relative;text-align:right;color:#666}.van-cell__no-pading{padding:0}.van-cell__no-pading .van-cell__bd_padding{padding:12px 0 12px 15px}.van-cell__no-pading .van-cell__bd_padding .van-form__input{height:26px}.van-cell__no-pading .van-cell__ft_padding{padding:12px 15px 12px 0}.van-cell.last-cell::after,.van-cell.no-border::after{display:none}.van-cell--access .van-cell__ft{padding-right:13px}.van-cell--access .van-cell__ft::after{position:absolute;top:50%;right:2px;content:" ";display:inline-block;height:6px;width:6px;border-width:2px 2px 0 0;border-color:#c8c8c8;border-style:solid;-webkit-transform:translateY(-50%) matrix(.71,.71,-.71,.71,0,0);transform:translateY(-50%) matrix(.71,.71,-.71,.71,0,0)}.van-cell--switch{padding-top:6px;padding-bottom:6px} \ No newline at end of file diff --git a/dist/checkbox-group/index.js b/dist/checkbox-group/index.js deleted file mode 100644 index 09058960..00000000 --- a/dist/checkbox-group/index.js +++ /dev/null @@ -1,29 +0,0 @@ -'use strict'; - -var _relations; - -var CHECKBOX_PATH = '../checkbox/index'; - -Component({ - relations: (_relations = {}, _relations[CHECKBOX_PATH] = { - type: 'child', - linked: function linked() { - this.updateChildren(CHECKBOX_PATH); - } - }, _relations), - - data: { - elementUpdateTimeout: 0 - }, - - methods: { - updateChildren: function updateChildren(childPath) { - // 把checkbox标记为在group中,设置不同样式 - var elements = this.getRelationNodes(childPath); - - elements.forEach(function (checkbox, index) { - checkbox.updateData({ isInGroup: true }); - }); - } - } -}); \ No newline at end of file diff --git a/dist/checkbox-group/index.json b/dist/checkbox-group/index.json deleted file mode 100644 index 32640e0d..00000000 --- a/dist/checkbox-group/index.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "component": true -} \ No newline at end of file diff --git a/dist/checkbox-group/index.wxml b/dist/checkbox-group/index.wxml deleted file mode 100644 index a6ef51f8..00000000 --- a/dist/checkbox-group/index.wxml +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/dist/checkbox-group/index.wxss b/dist/checkbox-group/index.wxss deleted file mode 100644 index 418d8711..00000000 --- a/dist/checkbox-group/index.wxss +++ /dev/null @@ -1 +0,0 @@ -.checkbox-group{padding-bottom:10px;background-color:#fff}.checkbox-group .van-checkbox{margin-top:10px} \ No newline at end of file diff --git a/dist/checkbox/index.js b/dist/checkbox/index.js deleted file mode 100644 index 62160c07..00000000 --- a/dist/checkbox/index.js +++ /dev/null @@ -1,44 +0,0 @@ -'use strict'; - -var _relations; - -var CHECKBOX_GROUP_PATH = '../checkbox-group/index'; - -Component({ - externalClasses: ['checkbox-class'], - relations: (_relations = {}, _relations[CHECKBOX_GROUP_PATH] = { - type: 'parent' - }, _relations), - - properties: { - checked: Boolean, - disabled: Boolean, - isInGroup: Boolean, - labelDisabled: Boolean, - type: String - }, - - data: function data() { - return { - isInGroup: false, - isInCell: false - }; - }, - - - methods: { - handleClick: function handleClick() { - if (this.data.disabled) { - return; - } - - var checked = !this.data.checked; - - this.triggerEvent('change', checked); - this.setData({ checked: checked }); - }, - updateData: function updateData(data) { - this.setData(data); - } - } -}); \ No newline at end of file diff --git a/dist/checkbox/index.json b/dist/checkbox/index.json deleted file mode 100644 index 0a336c08..00000000 --- a/dist/checkbox/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "component": true, - "usingComponents": { - "van-icon": "../icon/index" - } -} diff --git a/dist/checkbox/index.wxml b/dist/checkbox/index.wxml deleted file mode 100644 index 311ccbb9..00000000 --- a/dist/checkbox/index.wxml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - diff --git a/dist/checkbox/index.wxss b/dist/checkbox/index.wxss deleted file mode 100644 index b56cf0a8..00000000 --- a/dist/checkbox/index.wxss +++ /dev/null @@ -1 +0,0 @@ -.van-checkbox{display:inline-block;padding:0 10px;font-size:14px}.van-checkbox__item{display:block;margin-top:10px}.van-checkbox__list-item{display:block;padding:10px 10px 10px 0;margin-left:10px;border-bottom:1px solid #e5e5e5}.van-checkbox__list-item .van-checkbox__icon{float:right}.van-checkbox__icon{display:-webkit-inline-box;display:inline-flex;-webkit-box-align:center;align-items:center;color:#aaa}.van-checkbox__icon.van-checkbox--checked{color:#06bf04}.van-checkbox__icon.van-checkbox--disabled{color:#e5e5e5}.van-checkbox__label{display:inline-block;margin-left:10px} \ No newline at end of file diff --git a/dist/col/index.js b/dist/col/index.js deleted file mode 100644 index f3633672..00000000 --- a/dist/col/index.js +++ /dev/null @@ -1,22 +0,0 @@ -'use strict'; - -Component({ - externalClasses: ['col-class'], - - relations: { - '../row/index': { - type: 'parent' - } - }, - - properties: { - col: { - value: 0, - type: Number - }, - offset: { - value: 0, - type: Number - } - } -}); \ No newline at end of file diff --git a/dist/col/index.json b/dist/col/index.json deleted file mode 100644 index 467ce294..00000000 --- a/dist/col/index.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "component": true -} diff --git a/dist/col/index.wxml b/dist/col/index.wxml deleted file mode 100644 index 22eee8f3..00000000 --- a/dist/col/index.wxml +++ /dev/null @@ -1 +0,0 @@ - diff --git a/dist/col/index.wxss b/dist/col/index.wxss deleted file mode 100644 index 065914e7..00000000 --- a/dist/col/index.wxss +++ /dev/null @@ -1 +0,0 @@ -.van-col{float:left;box-sizing:border-box;width:0}.van-col-1{width:4.16667%}.van-col-offset-1{margin-left:4.16667%}.van-col-2{width:8.33333%}.van-col-offset-2{margin-left:8.33333%}.van-col-3{width:12.5%}.van-col-offset-3{margin-left:12.5%}.van-col-4{width:16.66667%}.van-col-offset-4{margin-left:16.66667%}.van-col-5{width:20.83333%}.van-col-offset-5{margin-left:20.83333%}.van-col-6{width:25%}.van-col-offset-6{margin-left:25%}.van-col-7{width:29.16667%}.van-col-offset-7{margin-left:29.16667%}.van-col-8{width:33.33333%}.van-col-offset-8{margin-left:33.33333%}.van-col-9{width:37.5%}.van-col-offset-9{margin-left:37.5%}.van-col-10{width:41.66667%}.van-col-offset-10{margin-left:41.66667%}.van-col-11{width:45.83333%}.van-col-offset-11{margin-left:45.83333%}.van-col-12{width:50%}.van-col-offset-12{margin-left:50%}.van-col-13{width:54.16667%}.van-col-offset-13{margin-left:54.16667%}.van-col-14{width:58.33333%}.van-col-offset-14{margin-left:58.33333%}.van-col-15{width:62.5%}.van-col-offset-15{margin-left:62.5%}.van-col-16{width:66.66667%}.van-col-offset-16{margin-left:66.66667%}.van-col-17{width:70.83333%}.van-col-offset-17{margin-left:70.83333%}.van-col-18{width:75%}.van-col-offset-18{margin-left:75%}.van-col-19{width:79.16667%}.van-col-offset-19{margin-left:79.16667%}.van-col-20{width:83.33333%}.van-col-offset-20{margin-left:83.33333%}.van-col-21{width:87.5%}.van-col-offset-21{margin-left:87.5%}.van-col-22{width:91.66667%}.van-col-offset-22{margin-left:91.66667%}.van-col-23{width:95.83333%}.van-col-offset-23{margin-left:95.83333%}.van-col-24{width:100%}.van-col-offset-24{margin-left:100%} \ No newline at end of file diff --git a/dist/color/index.wxss b/dist/color/index.wxss deleted file mode 100644 index b318f33b..00000000 --- a/dist/color/index.wxss +++ /dev/null @@ -1 +0,0 @@ -.van-c-red{color:#f44!important}.van-c-gray{color:#c9c9c9!important}.van-c-gray-dark{color:#999!important}.van-c-gray-darker{color:#666!important}.van-c-black{color:#333!important}.van-c-blue{color:#38f!important}.van-c-green{color:#06bf04!important} \ No newline at end of file diff --git a/dist/common/helper.js b/dist/common/helper.js deleted file mode 100644 index e995325d..00000000 --- a/dist/common/helper.js +++ /dev/null @@ -1,102 +0,0 @@ -'use strict'; - -// 从事件对象中解析得到 componentId -// 需要在元素上声明 data-component-id -function extractComponentId() { - var event = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; - - var _ref = event.currentTarget || {}, - componentId = _ref.dataset.componentId; - - return componentId; -} - -/* - 注:默认合并所有生命周期函数 - 配置合并指定的生命周期 or 忽略指定字段 - const extend = extendCreator({ - life: ['onLoad', 'onPullDownRefresh'], - exclude: ['binder'] - }); - - Page(extend({}, { - onLoad() {}, - ... - })); -*/ - -var LIFE_CYCLE = ['onLoad', 'onReady', 'onShow', 'onHide', 'onUnload', 'onPullDownRefresh', 'onReachBottom', 'onShareAppMessage', 'onPageScroll']; - -var extendCreator = function extendCreator() { - var config = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; - var _config$life = config.life, - life = _config$life === undefined ? LIFE_CYCLE : _config$life, - _config$exclude = config.exclude, - exclude = _config$exclude === undefined ? [] : _config$exclude; - - - var excludeList = exclude.concat(LIFE_CYCLE.map(getFuncArrayName)); - - if (!Array.isArray(life) || !Array.isArray(exclude)) throw new Error('Invalid Extend Config'); - var lifeCycleList = life.filter(function (item) { - return LIFE_CYCLE.indexOf(item) >= 0; - }); - return function extend(target) { - for (var _len = arguments.length, objList = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) { - objList[_key - 1] = arguments[_key]; - } - - objList.forEach(function (source) { - if (source) { - var keys = Object.keys(source); - keys.forEach(function (key) { - var value = source[key]; - if (excludeList.indexOf(key) >= 0) return; - if (lifeCycleList.indexOf(key) >= 0 && typeof value === 'function') { - var funcArrayName = getFuncArrayName(key); - if (!target[funcArrayName]) { - target[funcArrayName] = []; - if (target[key]) { - target[funcArrayName].push(target[key]); - } - target[key] = function () { - var _this = this; - - for (var _len2 = arguments.length, rest = Array(_len2), _key2 = 0; _key2 < _len2; _key2++) { - rest[_key2] = arguments[_key2]; - } - - target[funcArrayName].forEach(function (func) { - return func.apply(_this, rest); - }); - }; - } - - if (source[funcArrayName]) { - var _target$funcArrayName; - - // 经过生命周期合并的组件直接整合函数列表 - (_target$funcArrayName = target[funcArrayName]).push.apply(_target$funcArrayName, source[funcArrayName]); - } else { - // 添加生命周期函数进入函数列表 - target[funcArrayName].push(value); - } - } else { - target[key] = value; - } - }); - } - }); - return target; - }; -}; - -var getFuncArrayName = function getFuncArrayName(name) { - return '__$' + name; -}; - -module.exports = { - extractComponentId: extractComponentId, - extend: Object.assign, - extendCreator: extendCreator -}; \ No newline at end of file diff --git a/dist/common/pop-manager/index.js b/dist/common/pop-manager/index.js deleted file mode 100644 index 365a532c..00000000 --- a/dist/common/pop-manager/index.js +++ /dev/null @@ -1,31 +0,0 @@ -'use strict'; - -Component({ - properties: { - show: { - type: Boolean, - value: false - }, - // 是否有遮罩层 - overlay: { - type: Boolean, - value: true - }, - // 遮罩层是否会显示 - showOverlay: { - type: Boolean, - value: true - }, - // 内容从哪个方向出,可选 center top bottom left right - type: { - type: String, - value: 'center' - } - }, - - methods: { - handleMaskClick: function handleMaskClick() { - this.triggerEvent('clickmask', {}); - } - } -}); \ No newline at end of file diff --git a/dist/common/pop-manager/index.json b/dist/common/pop-manager/index.json deleted file mode 100644 index 467ce294..00000000 --- a/dist/common/pop-manager/index.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "component": true -} diff --git a/dist/common/pop-manager/index.wxml b/dist/common/pop-manager/index.wxml deleted file mode 100644 index 6bb47ef1..00000000 --- a/dist/common/pop-manager/index.wxml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - diff --git a/dist/common/pop-manager/index.wxss b/dist/common/pop-manager/index.wxss deleted file mode 100644 index 3f22a03f..00000000 --- a/dist/common/pop-manager/index.wxss +++ /dev/null @@ -1 +0,0 @@ -.pop{visibility:hidden}.pop--show{visibility:visible}.pop__mask{position:fixed;top:0;left:0;right:0;bottom:0;z-index:10;background:rgba(0,0,0,.7);display:none}.pop__mask--hide{background:0 0}.pop__container{position:fixed;left:50%;top:50%;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0);-webkit-transform-origin:center;transform-origin:center;-webkit-transition:all .4s ease;transition:all .4s ease;z-index:11;opacity:0}.pop--show .pop__container{opacity:1}.pop--show .pop__mask{display:block}.pop--left .pop__container{left:0;top:50%;-webkit-transform:translate3d(-100%,-50%,0);transform:translate3d(-100%,-50%,0)}.pop--show.pop--left .pop__container{-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.pop--right .pop__container{right:0;top:50%;left:auto;-webkit-transform:translate3d(100%,-50%,0);transform:translate3d(100%,-50%,0)}.pop--show.pop--right .pop__container{-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.pop--bottom .pop__container{top:auto;left:50%;bottom:0;-webkit-transform:translate3d(-50%,100%,0);transform:translate3d(-50%,100%,0)}.pop--show.pop--bottom .pop__container{-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)}.pop--top .pop__container{top:0;left:50%;-webkit-transform:translate3d(-50%,-100%,0);transform:translate3d(-50%,-100%,0)}.pop--show.pop--top .pop__container{-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)} \ No newline at end of file diff --git a/dist/datetime-picker/date-picker-view.wxml b/dist/datetime-picker/date-picker-view.wxml deleted file mode 100644 index 0a69f841..00000000 --- a/dist/datetime-picker/date-picker-view.wxml +++ /dev/null @@ -1,35 +0,0 @@ - - -