diff --git a/dist/field/index.js b/dist/field/index.js index 35dc34c3..a44f1e12 100644 --- a/dist/field/index.js +++ b/dist/field/index.js @@ -76,7 +76,8 @@ VantComponent({ methods: { onInput(event) { const { value = '' } = event.detail || {}; - this.setData({ value }, () => { + this.setData({ value }); + wx.nextTick(() => { this.emitChange(value); }); }, @@ -92,7 +93,8 @@ VantComponent({ this.$emit('click-icon'); }, onClear() { - this.setData({ value: '' }, () => { + this.setData({ value: '' }); + wx.nextTick(() => { this.emitChange(''); this.$emit('clear', ''); }); @@ -103,6 +105,7 @@ VantComponent({ emitChange(value) { this.$emit('input', value); this.$emit('change', value); - } + }, + noop() { } } }); diff --git a/dist/field/index.wxml b/dist/field/index.wxml index 64901781..2d9585f0 100644 --- a/dist/field/index.wxml +++ b/dist/field/index.wxml @@ -70,7 +70,7 @@ size="16px" name="clear" class="van-field__clear-root van-field__icon-root" - bindtouchstart="onClear" + catch:touchstart="onClear" /> (anchor.getRect('.van-index-anchor-wrapper').then((rect) => { + return Promise.all(this.children.map(anchor => anchor + .getRect('.van-index-anchor-wrapper') + .then((rect) => { Object.assign(anchor, { height: rect.height, top: rect.top + this.data.scrollTop }); - })))); + }))); }, setListRect() { return this.getRect('.van-index-bar').then((rect) => { @@ -109,7 +111,9 @@ VantComponent({ } }, getAnchorRect(anchor) { - return anchor.getRect('.van-index-anchor-wrapper').then((rect) => ({ + return anchor + .getRect('.van-index-anchor-wrapper') + .then((rect) => ({ height: rect.height, top: rect.top })); @@ -142,7 +146,8 @@ VantComponent({ if (sticky) { let isActiveAnchorSticky = false; if (active !== -1) { - isActiveAnchorSticky = children[active].top <= stickyOffsetTop + scrollTop; + isActiveAnchorSticky = + children[active].top <= stickyOffsetTop + scrollTop; } children.forEach((item, index) => { if (index === active) { @@ -198,7 +203,7 @@ VantComponent({ data: { active: false, anchorStyle: '', - wrapperStyle: '', + wrapperStyle: '' } }); } @@ -229,12 +234,14 @@ VantComponent({ return; } this.scrollToAnchorIndex = index; - const anchor = this.children.filter(item => item.data.index === this.data.indexList[index])[0]; - this.$emit('select', anchor.data.index); - anchor && wx.pageScrollTo({ - duration: 0, - scrollTop: anchor.top - }); + const anchor = this.children.find((item) => item.data.index === this.data.indexList[index]); + if (anchor) { + this.$emit('select', anchor.data.index); + wx.pageScrollTo({ + duration: 0, + scrollTop: anchor.top + }); + } } } }); diff --git a/dist/skeleton/index.js b/dist/skeleton/index.js index 4092bbd9..ea5bb966 100644 --- a/dist/skeleton/index.js +++ b/dist/skeleton/index.js @@ -1,5 +1,6 @@ import { VantComponent } from '../common/component'; VantComponent({ + classes: ['avatar-class', 'title-class', 'row-class'], props: { row: { type: Number, diff --git a/dist/skeleton/index.wxml b/dist/skeleton/index.wxml index 11773701..6f07a219 100644 --- a/dist/skeleton/index.wxml +++ b/dist/skeleton/index.wxml @@ -6,20 +6,20 @@ > diff --git a/dist/swipe-cell/index.js b/dist/swipe-cell/index.js index fa2e3498..b6c512ee 100644 --- a/dist/swipe-cell/index.js +++ b/dist/swipe-cell/index.js @@ -8,11 +8,21 @@ VantComponent({ disabled: Boolean, leftWidth: { type: Number, - value: 0 + value: 0, + observer(leftWidth = 0) { + if (this.offset > 0) { + this.swipeMove(leftWidth); + } + } }, rightWidth: { type: Number, - value: 0 + value: 0, + observer(rightWidth = 0) { + if (this.offset < 0) { + this.swipeMove(-rightWidth); + } + } }, asyncClose: Boolean, name: { diff --git a/dist/tab/index.wxss b/dist/tab/index.wxss index b4e61b05..76ddf068 100644 --- a/dist/tab/index.wxss +++ b/dist/tab/index.wxss @@ -1 +1 @@ -@import '../common/index.wxss';:host{-webkit-flex-shrink:0;flex-shrink:0;width:100%}.van-tab__pane,:host{box-sizing:border-box}.van-tab__pane{overflow-y:auto}.van-tab__pane--active{height:auto}.van-tab__pane--inactive{height:0;overflow:visible} \ No newline at end of file +@import '../common/index.wxss';:host{-webkit-flex-shrink:0;flex-shrink:0;width:100%}.van-tab__pane,:host{box-sizing:border-box}.van-tab__pane{overflow-y:auto;-webkit-overflow-scrolling:touch}.van-tab__pane--active{height:auto}.van-tab__pane--inactive{height:0;overflow:visible} \ No newline at end of file diff --git a/dist/uploader/index.js b/dist/uploader/index.js index cc0fff81..2cfbb9f1 100644 --- a/dist/uploader/index.js +++ b/dist/uploader/index.js @@ -1,5 +1,5 @@ import { VantComponent } from '../common/component'; -import { isImageFile } from './utils'; +import { isImageFile, isVideo } from './utils'; VantComponent({ props: { disabled: Boolean, @@ -54,6 +54,18 @@ VantComponent({ imageFit: { type: String, value: 'scaleToFill' + }, + camera: { + type: String, + value: 'back' + }, + compressed: { + type: Boolean, + value: true + }, + maxDuration: { + type: Number, + value: 60 } }, data: { @@ -70,7 +82,7 @@ VantComponent({ startUpload() { if (this.data.disabled) return; - const { name = '', capture, maxCount, multiple, maxSize, accept, sizeType, lists, useBeforeRead = false // 是否定义了 beforeRead + const { name = '', capture, maxCount, multiple, maxSize, accept, sizeType, lists, camera, compressed, maxDuration, useBeforeRead = false // 是否定义了 beforeRead } = this.data; let chooseFile = null; const newMaxCount = maxCount - lists.length; @@ -86,6 +98,18 @@ VantComponent({ }); }); } + else if (accept === 'video') { + chooseFile = new Promise((resolve, reject) => { + wx.chooseVideo({ + sourceType: capture, + compressed, + maxDuration, + camera, + success: resolve, + fail: reject + }); + }); + } else { chooseFile = new Promise((resolve, reject) => { wx.chooseMessageFile({ @@ -98,7 +122,13 @@ VantComponent({ } chooseFile .then((res) => { - const file = multiple ? res.tempFiles : res.tempFiles[0]; + let file = null; + if (isVideo(res, accept)) { + file = Object.assign({ path: res.tempFilePath }, res); + } + else { + file = multiple ? res.tempFiles : res.tempFiles[0]; + } // 检查文件大小 if (file instanceof Array) { const sizeEnable = file.every(item => item.size <= maxSize); diff --git a/dist/uploader/utils.d.ts b/dist/uploader/utils.d.ts index d3bb3b5b..1a5b3b9f 100644 --- a/dist/uploader/utils.d.ts +++ b/dist/uploader/utils.d.ts @@ -1,3 +1,4 @@ +/// interface File { path: string; url: string; @@ -9,4 +10,5 @@ interface File { } export declare function isImageUrl(url: string): boolean; export declare function isImageFile(item: File): boolean; +export declare function isVideo(res: any, accept: any): res is WechatMiniprogram.ChooseVideoSuccessCallbackResult; export {}; diff --git a/dist/uploader/utils.js b/dist/uploader/utils.js index aa59dc1d..37b1be01 100644 --- a/dist/uploader/utils.js +++ b/dist/uploader/utils.js @@ -14,3 +14,6 @@ export function isImageFile(item) { } return false; } +export function isVideo(res, accept) { + return accept === 'video'; +} diff --git a/lib/field/index.js b/lib/field/index.js index c9fe7b4c..2ade1a4a 100644 --- a/lib/field/index.js +++ b/lib/field/index.js @@ -79,7 +79,8 @@ component_1.VantComponent({ onInput: function (event) { var _this = this; var _a = (event.detail || {}).value, value = _a === void 0 ? '' : _a; - this.setData({ value: value }, function () { + this.setData({ value: value }); + wx.nextTick(function () { _this.emitChange(value); }); }, @@ -96,7 +97,8 @@ component_1.VantComponent({ }, onClear: function () { var _this = this; - this.setData({ value: '' }, function () { + this.setData({ value: '' }); + wx.nextTick(function () { _this.emitChange(''); _this.$emit('clear', ''); }); @@ -107,6 +109,7 @@ component_1.VantComponent({ emitChange: function (value) { this.$emit('input', value); this.$emit('change', value); - } + }, + noop: function () { } } }); diff --git a/lib/field/index.wxml b/lib/field/index.wxml index 64901781..2d9585f0 100644 --- a/lib/field/index.wxml +++ b/lib/field/index.wxml @@ -70,7 +70,7 @@ size="16px" name="clear" class="van-field__clear-root van-field__icon-root" - bindtouchstart="onClear" + catch:touchstart="onClear" /> diff --git a/lib/swipe-cell/index.js b/lib/swipe-cell/index.js index e058387c..ec4ef0c1 100644 --- a/lib/swipe-cell/index.js +++ b/lib/swipe-cell/index.js @@ -10,11 +10,23 @@ component_1.VantComponent({ disabled: Boolean, leftWidth: { type: Number, - value: 0 + value: 0, + observer: function (leftWidth) { + if (leftWidth === void 0) { leftWidth = 0; } + if (this.offset > 0) { + this.swipeMove(leftWidth); + } + } }, rightWidth: { type: Number, - value: 0 + value: 0, + observer: function (rightWidth) { + if (rightWidth === void 0) { rightWidth = 0; } + if (this.offset < 0) { + this.swipeMove(-rightWidth); + } + } }, asyncClose: Boolean, name: { diff --git a/lib/tab/index.wxss b/lib/tab/index.wxss index b4e61b05..76ddf068 100644 --- a/lib/tab/index.wxss +++ b/lib/tab/index.wxss @@ -1 +1 @@ -@import '../common/index.wxss';:host{-webkit-flex-shrink:0;flex-shrink:0;width:100%}.van-tab__pane,:host{box-sizing:border-box}.van-tab__pane{overflow-y:auto}.van-tab__pane--active{height:auto}.van-tab__pane--inactive{height:0;overflow:visible} \ No newline at end of file +@import '../common/index.wxss';:host{-webkit-flex-shrink:0;flex-shrink:0;width:100%}.van-tab__pane,:host{box-sizing:border-box}.van-tab__pane{overflow-y:auto;-webkit-overflow-scrolling:touch}.van-tab__pane--active{height:auto}.van-tab__pane--inactive{height:0;overflow:visible} \ No newline at end of file diff --git a/lib/uploader/index.js b/lib/uploader/index.js index dadea813..47af0451 100644 --- a/lib/uploader/index.js +++ b/lib/uploader/index.js @@ -67,6 +67,18 @@ component_1.VantComponent({ imageFit: { type: String, value: 'scaleToFill' + }, + camera: { + type: String, + value: 'back' + }, + compressed: { + type: Boolean, + value: true + }, + maxDuration: { + type: Number, + value: 60 } }, data: { @@ -84,7 +96,7 @@ component_1.VantComponent({ var _this = this; if (this.data.disabled) return; - var _a = this.data, _b = _a.name, name = _b === void 0 ? '' : _b, capture = _a.capture, maxCount = _a.maxCount, multiple = _a.multiple, maxSize = _a.maxSize, accept = _a.accept, sizeType = _a.sizeType, lists = _a.lists, _c = _a.useBeforeRead // 是否定义了 beforeRead + var _a = this.data, _b = _a.name, name = _b === void 0 ? '' : _b, capture = _a.capture, maxCount = _a.maxCount, multiple = _a.multiple, maxSize = _a.maxSize, accept = _a.accept, sizeType = _a.sizeType, lists = _a.lists, camera = _a.camera, compressed = _a.compressed, maxDuration = _a.maxDuration, _c = _a.useBeforeRead // 是否定义了 beforeRead , useBeforeRead = _c === void 0 ? false : _c // 是否定义了 beforeRead ; var chooseFile = null; @@ -101,6 +113,18 @@ component_1.VantComponent({ }); }); } + else if (accept === 'video') { + chooseFile = new Promise(function (resolve, reject) { + wx.chooseVideo({ + sourceType: capture, + compressed: compressed, + maxDuration: maxDuration, + camera: camera, + success: resolve, + fail: reject + }); + }); + } else { chooseFile = new Promise(function (resolve, reject) { wx.chooseMessageFile({ @@ -113,7 +137,13 @@ component_1.VantComponent({ } chooseFile .then(function (res) { - var file = multiple ? res.tempFiles : res.tempFiles[0]; + var file = null; + if (utils_1.isVideo(res, accept)) { + file = __assign({ path: res.tempFilePath }, res); + } + else { + file = multiple ? res.tempFiles : res.tempFiles[0]; + } // 检查文件大小 if (file instanceof Array) { var sizeEnable = file.every(function (item) { return item.size <= maxSize; }); diff --git a/lib/uploader/utils.js b/lib/uploader/utils.js index 472f08a9..29deee7d 100644 --- a/lib/uploader/utils.js +++ b/lib/uploader/utils.js @@ -18,3 +18,7 @@ function isImageFile(item) { return false; } exports.isImageFile = isImageFile; +function isVideo(res, accept) { + return accept === 'video'; +} +exports.isVideo = isVideo;