mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
build: compile 1.10.13
This commit is contained in:
parent
f05db09646
commit
734db65203
4
dist/calendar/calendar.wxml
vendored
4
dist/calendar/calendar.wxml
vendored
@ -54,12 +54,12 @@
|
|||||||
type="danger"
|
type="danger"
|
||||||
color="{{ color }}"
|
color="{{ color }}"
|
||||||
custom-class="van-calendar__confirm"
|
custom-class="van-calendar__confirm"
|
||||||
disabled="{{ computed.getButtonDisabled(type, currentDate) }}"
|
disabled="{{ computed.getButtonDisabled(type, currentDate, minRange) }}"
|
||||||
nativeType="text"
|
nativeType="text"
|
||||||
bind:click="onConfirm"
|
bind:click="onConfirm"
|
||||||
>
|
>
|
||||||
{{
|
{{
|
||||||
computed.getButtonDisabled(type, currentDate)
|
computed.getButtonDisabled(type, currentDate, minRange)
|
||||||
? confirmDisabledText
|
? confirmDisabledText
|
||||||
: confirmText
|
: confirmText
|
||||||
}}
|
}}
|
||||||
|
4
dist/calendar/index.js
vendored
4
dist/calendar/index.js
vendored
@ -103,6 +103,10 @@ VantComponent({
|
|||||||
type: null,
|
type: null,
|
||||||
value: null,
|
value: null,
|
||||||
},
|
},
|
||||||
|
minRange: {
|
||||||
|
type: Number,
|
||||||
|
value: 1,
|
||||||
|
},
|
||||||
firstDayOfWeek: {
|
firstDayOfWeek: {
|
||||||
type: Number,
|
type: Number,
|
||||||
value: 0,
|
value: 0,
|
||||||
|
4
dist/calendar/index.wxs
vendored
4
dist/calendar/index.wxs
vendored
@ -15,7 +15,7 @@ function getMonths(minDate, maxDate) {
|
|||||||
return months;
|
return months;
|
||||||
}
|
}
|
||||||
|
|
||||||
function getButtonDisabled(type, currentDate) {
|
function getButtonDisabled(type, currentDate, minRange) {
|
||||||
if (currentDate == null) {
|
if (currentDate == null) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -25,7 +25,7 @@ function getButtonDisabled(type, currentDate) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (type === 'multiple') {
|
if (type === 'multiple') {
|
||||||
return !currentDate.length;
|
return currentDate.length < minRange;
|
||||||
}
|
}
|
||||||
|
|
||||||
return !currentDate;
|
return !currentDate;
|
||||||
|
3
dist/cascader/index.js
vendored
3
dist/cascader/index.js
vendored
@ -157,6 +157,9 @@ VantComponent({
|
|||||||
onClickTab(e) {
|
onClickTab(e) {
|
||||||
const { index: tabIndex, title } = e.detail;
|
const { index: tabIndex, title } = e.detail;
|
||||||
this.$emit('click-tab', { title, tabIndex });
|
this.$emit('click-tab', { title, tabIndex });
|
||||||
|
this.setData({
|
||||||
|
activeTab: tabIndex,
|
||||||
|
});
|
||||||
},
|
},
|
||||||
// 选中
|
// 选中
|
||||||
onSelect(e) {
|
onSelect(e) {
|
||||||
|
2
dist/circle/canvas.d.ts
vendored
2
dist/circle/canvas.d.ts
vendored
@ -1,4 +1,4 @@
|
|||||||
/// <reference types="miniprogram-api-typings" />
|
/// <reference types="miniprogram-api-typings" />
|
||||||
declare type CanvasContext = WechatMiniprogram.CanvasContext;
|
type CanvasContext = WechatMiniprogram.CanvasContext;
|
||||||
export declare function adaptor(ctx: CanvasContext & Record<string, unknown>): CanvasContext;
|
export declare function adaptor(ctx: CanvasContext & Record<string, unknown>): CanvasContext;
|
||||||
export {};
|
export {};
|
||||||
|
2
dist/common/relation.d.ts
vendored
2
dist/common/relation.d.ts
vendored
@ -1,5 +1,5 @@
|
|||||||
/// <reference types="miniprogram-api-typings" />
|
/// <reference types="miniprogram-api-typings" />
|
||||||
declare type TrivialInstance = WechatMiniprogram.Component.TrivialInstance;
|
type TrivialInstance = WechatMiniprogram.Component.TrivialInstance;
|
||||||
export declare function useParent(name: string, onEffect?: (this: TrivialInstance) => void): {
|
export declare function useParent(name: string, onEffect?: (this: TrivialInstance) => void): {
|
||||||
relations: {
|
relations: {
|
||||||
[x: string]: WechatMiniprogram.Component.RelationOption;
|
[x: string]: WechatMiniprogram.Component.RelationOption;
|
||||||
|
2
dist/count-down/utils.d.ts
vendored
2
dist/count-down/utils.d.ts
vendored
@ -1,4 +1,4 @@
|
|||||||
export declare type TimeData = {
|
export type TimeData = {
|
||||||
days: number;
|
days: number;
|
||||||
hours: number;
|
hours: number;
|
||||||
minutes: number;
|
minutes: number;
|
||||||
|
2
dist/definitions/index.d.ts
vendored
2
dist/definitions/index.d.ts
vendored
@ -5,7 +5,7 @@ interface VantComponentInstance {
|
|||||||
index: number;
|
index: number;
|
||||||
$emit: (name: string, detail?: unknown, options?: WechatMiniprogram.Component.TriggerEventOption) => void;
|
$emit: (name: string, detail?: unknown, options?: WechatMiniprogram.Component.TriggerEventOption) => void;
|
||||||
}
|
}
|
||||||
export declare type VantComponentOptions<Data extends WechatMiniprogram.Component.DataOption, Props extends WechatMiniprogram.Component.PropertyOption, Methods extends WechatMiniprogram.Component.MethodOption> = {
|
export type VantComponentOptions<Data extends WechatMiniprogram.Component.DataOption, Props extends WechatMiniprogram.Component.PropertyOption, Methods extends WechatMiniprogram.Component.MethodOption> = {
|
||||||
data?: Data;
|
data?: Data;
|
||||||
field?: boolean;
|
field?: boolean;
|
||||||
classes?: string[];
|
classes?: string[];
|
||||||
|
4
dist/dialog/dialog.d.ts
vendored
4
dist/dialog/dialog.d.ts
vendored
@ -1,7 +1,7 @@
|
|||||||
/// <reference types="miniprogram-api-typings" />
|
/// <reference types="miniprogram-api-typings" />
|
||||||
/// <reference types="miniprogram-api-typings" />
|
/// <reference types="miniprogram-api-typings" />
|
||||||
export declare type Action = 'confirm' | 'cancel' | 'overlay';
|
export type Action = 'confirm' | 'cancel' | 'overlay';
|
||||||
declare type DialogContext = WechatMiniprogram.Page.TrivialInstance | WechatMiniprogram.Component.TrivialInstance;
|
type DialogContext = WechatMiniprogram.Page.TrivialInstance | WechatMiniprogram.Component.TrivialInstance;
|
||||||
interface DialogOptions {
|
interface DialogOptions {
|
||||||
lang?: string;
|
lang?: string;
|
||||||
show?: boolean;
|
show?: boolean;
|
||||||
|
4
dist/mixins/page-scroll.d.ts
vendored
4
dist/mixins/page-scroll.d.ts
vendored
@ -1,6 +1,6 @@
|
|||||||
/// <reference types="miniprogram-api-typings" />
|
/// <reference types="miniprogram-api-typings" />
|
||||||
/// <reference types="miniprogram-api-typings" />
|
/// <reference types="miniprogram-api-typings" />
|
||||||
declare type IPageScrollOption = WechatMiniprogram.Page.IPageScrollOption;
|
type IPageScrollOption = WechatMiniprogram.Page.IPageScrollOption;
|
||||||
declare type Scroller = (this: WechatMiniprogram.Component.TrivialInstance, event?: IPageScrollOption) => void;
|
type Scroller = (this: WechatMiniprogram.Component.TrivialInstance, event?: IPageScrollOption) => void;
|
||||||
export declare function pageScrollMixin(scroller: Scroller): string;
|
export declare function pageScrollMixin(scroller: Scroller): string;
|
||||||
export {};
|
export {};
|
||||||
|
4
dist/popup/index.js
vendored
4
dist/popup/index.js
vendored
@ -53,6 +53,10 @@ VantComponent({
|
|||||||
type: Boolean,
|
type: Boolean,
|
||||||
value: false,
|
value: false,
|
||||||
},
|
},
|
||||||
|
safeAreaTabBar: {
|
||||||
|
type: Boolean,
|
||||||
|
value: false,
|
||||||
|
},
|
||||||
lockScroll: {
|
lockScroll: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
value: true,
|
value: true,
|
||||||
|
2
dist/popup/index.wxml
vendored
2
dist/popup/index.wxml
vendored
@ -12,7 +12,7 @@
|
|||||||
/>
|
/>
|
||||||
<view
|
<view
|
||||||
wx:if="{{ inited }}"
|
wx:if="{{ inited }}"
|
||||||
class="custom-class {{ classes }} {{ utils.bem('popup', [position, { round, safe: safeAreaInsetBottom, safeTop: safeAreaInsetTop }]) }}"
|
class="custom-class {{ classes }} {{ utils.bem('popup', [position, { round, safe: safeAreaInsetBottom, safeTop: safeAreaInsetTop, safeTabBar: safeAreaTabBar }]) }}"
|
||||||
style="{{ computed.popupStyle({ zIndex, currentDuration, display, customStyle }) }}"
|
style="{{ computed.popupStyle({ zIndex, currentDuration, display, customStyle }) }}"
|
||||||
bind:transitionend="onTransitionEnd"
|
bind:transitionend="onTransitionEnd"
|
||||||
>
|
>
|
||||||
|
2
dist/popup/index.wxss
vendored
2
dist/popup/index.wxss
vendored
@ -1 +1 @@
|
|||||||
@import '../common/index.wxss';.van-popup{-webkit-overflow-scrolling:touch;animation:ease both;background-color:var(--popup-background-color,#fff);box-sizing:border-box;max-height:100%;overflow-y:auto;position:fixed;transition-timing-function:ease}.van-popup--center{left:50%;top:50%;transform:translate3d(-50%,-50%,0)}.van-popup--center.van-popup--round{border-radius:var(--popup-round-border-radius,16px)}.van-popup--top{left:0;top:0;width:100%}.van-popup--top.van-popup--round{border-radius:0 0 var(--popup-round-border-radius,var(--popup-round-border-radius,16px)) var(--popup-round-border-radius,var(--popup-round-border-radius,16px))}.van-popup--right{right:0;top:50%;transform:translate3d(0,-50%,0)}.van-popup--right.van-popup--round{border-radius:var(--popup-round-border-radius,var(--popup-round-border-radius,16px)) 0 0 var(--popup-round-border-radius,var(--popup-round-border-radius,16px))}.van-popup--bottom{bottom:0;left:0;width:100%}.van-popup--bottom.van-popup--round{border-radius:var(--popup-round-border-radius,var(--popup-round-border-radius,16px)) var(--popup-round-border-radius,var(--popup-round-border-radius,16px)) 0 0}.van-popup--left{left:0;top:50%;transform:translate3d(0,-50%,0)}.van-popup--left.van-popup--round{border-radius:0 var(--popup-round-border-radius,var(--popup-round-border-radius,16px)) var(--popup-round-border-radius,var(--popup-round-border-radius,16px)) 0}.van-popup--bottom.van-popup--safe{padding-bottom:env(safe-area-inset-bottom)}.van-popup--safeTop{padding-top:env(safe-area-inset-top)}.van-popup__close-icon{color:var(--popup-close-icon-color,#969799);font-size:var(--popup-close-icon-size,18px);position:absolute;z-index:var(--popup-close-icon-z-index,1)}.van-popup__close-icon--top-left{left:var(--popup-close-icon-margin,16px);top:var(--popup-close-icon-margin,16px)}.van-popup__close-icon--top-right{right:var(--popup-close-icon-margin,16px);top:var(--popup-close-icon-margin,16px)}.van-popup__close-icon--bottom-left{bottom:var(--popup-close-icon-margin,16px);left:var(--popup-close-icon-margin,16px)}.van-popup__close-icon--bottom-right{bottom:var(--popup-close-icon-margin,16px);right:var(--popup-close-icon-margin,16px)}.van-popup__close-icon:active{opacity:.6}.van-scale-enter-active,.van-scale-leave-active{transition-property:opacity,transform}.van-scale-enter,.van-scale-leave-to{opacity:0;transform:translate3d(-50%,-50%,0) scale(.7)}.van-fade-enter-active,.van-fade-leave-active{transition-property:opacity}.van-fade-enter,.van-fade-leave-to{opacity:0}.van-center-enter-active,.van-center-leave-active{transition-property:opacity}.van-center-enter,.van-center-leave-to{opacity:0}.van-bottom-enter-active,.van-bottom-leave-active,.van-left-enter-active,.van-left-leave-active,.van-right-enter-active,.van-right-leave-active,.van-top-enter-active,.van-top-leave-active{transition-property:transform}.van-bottom-enter,.van-bottom-leave-to{transform:translate3d(0,100%,0)}.van-top-enter,.van-top-leave-to{transform:translate3d(0,-100%,0)}.van-left-enter,.van-left-leave-to{transform:translate3d(-100%,-50%,0)}.van-right-enter,.van-right-leave-to{transform:translate3d(100%,-50%,0)}
|
@import '../common/index.wxss';.van-popup{-webkit-overflow-scrolling:touch;animation:ease both;background-color:var(--popup-background-color,#fff);box-sizing:border-box;max-height:100%;overflow-y:auto;position:fixed;transition-timing-function:ease}.van-popup--center{left:50%;top:50%;transform:translate3d(-50%,-50%,0)}.van-popup--center.van-popup--round{border-radius:var(--popup-round-border-radius,16px)}.van-popup--top{left:0;top:0;width:100%}.van-popup--top.van-popup--round{border-radius:0 0 var(--popup-round-border-radius,var(--popup-round-border-radius,16px)) var(--popup-round-border-radius,var(--popup-round-border-radius,16px))}.van-popup--right{right:0;top:50%;transform:translate3d(0,-50%,0)}.van-popup--right.van-popup--round{border-radius:var(--popup-round-border-radius,var(--popup-round-border-radius,16px)) 0 0 var(--popup-round-border-radius,var(--popup-round-border-radius,16px))}.van-popup--bottom{bottom:0;left:0;width:100%}.van-popup--bottom.van-popup--round{border-radius:var(--popup-round-border-radius,var(--popup-round-border-radius,16px)) var(--popup-round-border-radius,var(--popup-round-border-radius,16px)) 0 0}.van-popup--left{left:0;top:50%;transform:translate3d(0,-50%,0)}.van-popup--left.van-popup--round{border-radius:0 var(--popup-round-border-radius,var(--popup-round-border-radius,16px)) var(--popup-round-border-radius,var(--popup-round-border-radius,16px)) 0}.van-popup--bottom.van-popup--safe{padding-bottom:env(safe-area-inset-bottom)}.van-popup--bottom.van-popup--safeTabBar{bottom:var(--tabbar-height,50px)}.van-popup--safeTop{padding-top:env(safe-area-inset-top)}.van-popup__close-icon{color:var(--popup-close-icon-color,#969799);font-size:var(--popup-close-icon-size,18px);position:absolute;z-index:var(--popup-close-icon-z-index,1)}.van-popup__close-icon--top-left{left:var(--popup-close-icon-margin,16px);top:var(--popup-close-icon-margin,16px)}.van-popup__close-icon--top-right{right:var(--popup-close-icon-margin,16px);top:var(--popup-close-icon-margin,16px)}.van-popup__close-icon--bottom-left{bottom:var(--popup-close-icon-margin,16px);left:var(--popup-close-icon-margin,16px)}.van-popup__close-icon--bottom-right{bottom:var(--popup-close-icon-margin,16px);right:var(--popup-close-icon-margin,16px)}.van-popup__close-icon:active{opacity:.6}.van-scale-enter-active,.van-scale-leave-active{transition-property:opacity,transform}.van-scale-enter,.van-scale-leave-to{opacity:0;transform:translate3d(-50%,-50%,0) scale(.7)}.van-fade-enter-active,.van-fade-leave-active{transition-property:opacity}.van-fade-enter,.van-fade-leave-to{opacity:0}.van-center-enter-active,.van-center-leave-active{transition-property:opacity}.van-center-enter,.van-center-leave-to{opacity:0}.van-bottom-enter-active,.van-bottom-leave-active,.van-left-enter-active,.van-left-leave-active,.van-right-enter-active,.van-right-leave-active,.van-top-enter-active,.van-top-leave-active{transition-property:transform}.van-bottom-enter,.van-bottom-leave-to{transform:translate3d(0,100%,0)}.van-top-enter,.van-top-leave-to{transform:translate3d(0,-100%,0)}.van-left-enter,.van-left-leave-to{transform:translate3d(-100%,-50%,0)}.van-right-enter,.van-right-leave-to{transform:translate3d(100%,-50%,0)}
|
1
dist/stepper/index.js
vendored
1
dist/stepper/index.js
vendored
@ -99,6 +99,7 @@ VantComponent({
|
|||||||
onBlur(event) {
|
onBlur(event) {
|
||||||
const value = this.format(event.detail.value);
|
const value = this.format(event.detail.value);
|
||||||
this.setData({ currentValue: value });
|
this.setData({ currentValue: value });
|
||||||
|
this.emitChange(value);
|
||||||
this.$emit('blur', Object.assign(Object.assign({}, event.detail), { value }));
|
this.$emit('blur', Object.assign(Object.assign({}, event.detail), { value }));
|
||||||
},
|
},
|
||||||
// filter illegal characters
|
// filter illegal characters
|
||||||
|
1
dist/stepper/index.wxml
vendored
1
dist/stepper/index.wxml
vendored
@ -16,7 +16,6 @@
|
|||||||
<slot name="minus" />
|
<slot name="minus" />
|
||||||
</view>
|
</view>
|
||||||
<input
|
<input
|
||||||
always-embed="{{ false }}"
|
|
||||||
type="{{ integer ? 'number' : 'digit' }}"
|
type="{{ integer ? 'number' : 'digit' }}"
|
||||||
class="input-class {{ utils.bem('stepper__input', { disabled: disabled || disableInput }) }}"
|
class="input-class {{ utils.bem('stepper__input', { disabled: disabled || disableInput }) }}"
|
||||||
style="{{ computed.inputStyle({ buttonSize, inputWidth }) }}"
|
style="{{ computed.inputStyle({ buttonSize, inputWidth }) }}"
|
||||||
|
12
dist/tabbar-item/index.js
vendored
12
dist/tabbar-item/index.js
vendored
@ -6,6 +6,14 @@ VantComponent({
|
|||||||
name: null,
|
name: null,
|
||||||
icon: String,
|
icon: String,
|
||||||
dot: Boolean,
|
dot: Boolean,
|
||||||
|
url: {
|
||||||
|
type: String,
|
||||||
|
value: '',
|
||||||
|
},
|
||||||
|
linkType: {
|
||||||
|
type: String,
|
||||||
|
value: 'redirectTo',
|
||||||
|
},
|
||||||
iconPrefix: {
|
iconPrefix: {
|
||||||
type: String,
|
type: String,
|
||||||
value: 'van-icon',
|
value: 'van-icon',
|
||||||
@ -27,6 +35,10 @@ VantComponent({
|
|||||||
parent.$emit('change', active);
|
parent.$emit('change', active);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
const { url, linkType } = this.data;
|
||||||
|
if (url && wx[linkType]) {
|
||||||
|
return wx[linkType]({ url });
|
||||||
|
}
|
||||||
this.$emit('click');
|
this.$emit('click');
|
||||||
},
|
},
|
||||||
updateFromParent() {
|
updateFromParent() {
|
||||||
|
4
dist/toast/toast.d.ts
vendored
4
dist/toast/toast.d.ts
vendored
@ -1,7 +1,7 @@
|
|||||||
/// <reference types="miniprogram-api-typings" />
|
/// <reference types="miniprogram-api-typings" />
|
||||||
/// <reference types="miniprogram-api-typings" />
|
/// <reference types="miniprogram-api-typings" />
|
||||||
declare type ToastMessage = string | number;
|
type ToastMessage = string | number;
|
||||||
declare type ToastContext = WechatMiniprogram.Component.TrivialInstance | WechatMiniprogram.Page.TrivialInstance;
|
type ToastContext = WechatMiniprogram.Component.TrivialInstance | WechatMiniprogram.Page.TrivialInstance;
|
||||||
interface ToastOptions {
|
interface ToastOptions {
|
||||||
show?: boolean;
|
show?: boolean;
|
||||||
type?: string;
|
type?: string;
|
||||||
|
7
dist/uploader/index.js
vendored
7
dist/uploader/index.js
vendored
@ -1,6 +1,6 @@
|
|||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
import { isImageFile, chooseFile, isVideoFile } from './utils';
|
import { isImageFile, chooseFile, isVideoFile } from './utils';
|
||||||
import { chooseImageProps, chooseVideoProps, chooseMediaProps, chooseMessageFileProps, } from './shared';
|
import { imageProps, videoProps, mediaProps, messageFileProps } from './shared';
|
||||||
import { isBoolean, isPromise } from '../common/validator';
|
import { isBoolean, isPromise } from '../common/validator';
|
||||||
VantComponent({
|
VantComponent({
|
||||||
props: Object.assign(Object.assign(Object.assign(Object.assign({ disabled: Boolean, multiple: Boolean, uploadText: String, useBeforeRead: Boolean, afterRead: null, beforeRead: null, previewSize: {
|
props: Object.assign(Object.assign(Object.assign(Object.assign({ disabled: Boolean, multiple: Boolean, uploadText: String, useBeforeRead: Boolean, afterRead: null, beforeRead: null, previewSize: {
|
||||||
@ -40,7 +40,7 @@ VantComponent({
|
|||||||
}, uploadIcon: {
|
}, uploadIcon: {
|
||||||
type: String,
|
type: String,
|
||||||
value: 'photograph',
|
value: 'photograph',
|
||||||
} }, chooseImageProps), chooseVideoProps), chooseMediaProps), chooseMessageFileProps),
|
} }, imageProps), videoProps), mediaProps), messageFileProps),
|
||||||
data: {
|
data: {
|
||||||
lists: [],
|
lists: [],
|
||||||
isInCount: true,
|
isInCount: true,
|
||||||
@ -114,11 +114,12 @@ VantComponent({
|
|||||||
if (!this.data.previewFullImage)
|
if (!this.data.previewFullImage)
|
||||||
return;
|
return;
|
||||||
const { index } = event.currentTarget.dataset;
|
const { index } = event.currentTarget.dataset;
|
||||||
const { lists } = this.data;
|
const { lists, showmenu } = this.data;
|
||||||
const item = lists[index];
|
const item = lists[index];
|
||||||
wx.previewImage({
|
wx.previewImage({
|
||||||
urls: lists.filter((item) => isImageFile(item)).map((item) => item.url),
|
urls: lists.filter((item) => isImageFile(item)).map((item) => item.url),
|
||||||
current: item.url,
|
current: item.url,
|
||||||
|
showmenu,
|
||||||
fail() {
|
fail() {
|
||||||
wx.showToast({ title: '预览图片失败', icon: 'none' });
|
wx.showToast({ title: '预览图片失败', icon: 'none' });
|
||||||
},
|
},
|
||||||
|
12
dist/uploader/shared.d.ts
vendored
12
dist/uploader/shared.d.ts
vendored
@ -1,4 +1,4 @@
|
|||||||
export declare const chooseImageProps: {
|
export declare const imageProps: {
|
||||||
sizeType: {
|
sizeType: {
|
||||||
type: ArrayConstructor;
|
type: ArrayConstructor;
|
||||||
value: string[];
|
value: string[];
|
||||||
@ -7,8 +7,12 @@ export declare const chooseImageProps: {
|
|||||||
type: ArrayConstructor;
|
type: ArrayConstructor;
|
||||||
value: string[];
|
value: string[];
|
||||||
};
|
};
|
||||||
|
showmenu: {
|
||||||
|
type: BooleanConstructor;
|
||||||
|
value: boolean;
|
||||||
};
|
};
|
||||||
export declare const chooseVideoProps: {
|
};
|
||||||
|
export declare const videoProps: {
|
||||||
capture: {
|
capture: {
|
||||||
type: ArrayConstructor;
|
type: ArrayConstructor;
|
||||||
value: string[];
|
value: string[];
|
||||||
@ -26,7 +30,7 @@ export declare const chooseVideoProps: {
|
|||||||
value: string;
|
value: string;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
export declare const chooseMediaProps: {
|
export declare const mediaProps: {
|
||||||
capture: {
|
capture: {
|
||||||
type: ArrayConstructor;
|
type: ArrayConstructor;
|
||||||
value: string[];
|
value: string[];
|
||||||
@ -44,6 +48,6 @@ export declare const chooseMediaProps: {
|
|||||||
value: string;
|
value: string;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
export declare const chooseMessageFileProps: {
|
export declare const messageFileProps: {
|
||||||
extension: null;
|
extension: null;
|
||||||
};
|
};
|
||||||
|
20
dist/uploader/shared.js
vendored
20
dist/uploader/shared.js
vendored
@ -1,5 +1,5 @@
|
|||||||
// props for choose image
|
// props for image
|
||||||
export const chooseImageProps = {
|
export const imageProps = {
|
||||||
sizeType: {
|
sizeType: {
|
||||||
type: Array,
|
type: Array,
|
||||||
value: ['original', 'compressed'],
|
value: ['original', 'compressed'],
|
||||||
@ -8,9 +8,13 @@ export const chooseImageProps = {
|
|||||||
type: Array,
|
type: Array,
|
||||||
value: ['album', 'camera'],
|
value: ['album', 'camera'],
|
||||||
},
|
},
|
||||||
|
showmenu: {
|
||||||
|
type: Boolean,
|
||||||
|
value: true,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
// props for choose video
|
// props for video
|
||||||
export const chooseVideoProps = {
|
export const videoProps = {
|
||||||
capture: {
|
capture: {
|
||||||
type: Array,
|
type: Array,
|
||||||
value: ['album', 'camera'],
|
value: ['album', 'camera'],
|
||||||
@ -28,8 +32,8 @@ export const chooseVideoProps = {
|
|||||||
value: 'back',
|
value: 'back',
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
// props for choose media
|
// props for media
|
||||||
export const chooseMediaProps = {
|
export const mediaProps = {
|
||||||
capture: {
|
capture: {
|
||||||
type: Array,
|
type: Array,
|
||||||
value: ['album', 'camera'],
|
value: ['album', 'camera'],
|
||||||
@ -47,7 +51,7 @@ export const chooseMediaProps = {
|
|||||||
value: 'back',
|
value: 'back',
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
// props for choose file
|
// props for file
|
||||||
export const chooseMessageFileProps = {
|
export const messageFileProps = {
|
||||||
extension: null,
|
extension: null,
|
||||||
};
|
};
|
||||||
|
@ -54,12 +54,12 @@
|
|||||||
type="danger"
|
type="danger"
|
||||||
color="{{ color }}"
|
color="{{ color }}"
|
||||||
custom-class="van-calendar__confirm"
|
custom-class="van-calendar__confirm"
|
||||||
disabled="{{ computed.getButtonDisabled(type, currentDate) }}"
|
disabled="{{ computed.getButtonDisabled(type, currentDate, minRange) }}"
|
||||||
nativeType="text"
|
nativeType="text"
|
||||||
bind:click="onConfirm"
|
bind:click="onConfirm"
|
||||||
>
|
>
|
||||||
{{
|
{{
|
||||||
computed.getButtonDisabled(type, currentDate)
|
computed.getButtonDisabled(type, currentDate, minRange)
|
||||||
? confirmDisabledText
|
? confirmDisabledText
|
||||||
: confirmText
|
: confirmText
|
||||||
}}
|
}}
|
||||||
|
@ -119,6 +119,10 @@ var getTime = function (date) {
|
|||||||
type: null,
|
type: null,
|
||||||
value: null,
|
value: null,
|
||||||
},
|
},
|
||||||
|
minRange: {
|
||||||
|
type: Number,
|
||||||
|
value: 1,
|
||||||
|
},
|
||||||
firstDayOfWeek: {
|
firstDayOfWeek: {
|
||||||
type: Number,
|
type: Number,
|
||||||
value: 0,
|
value: 0,
|
||||||
|
@ -15,7 +15,7 @@ function getMonths(minDate, maxDate) {
|
|||||||
return months;
|
return months;
|
||||||
}
|
}
|
||||||
|
|
||||||
function getButtonDisabled(type, currentDate) {
|
function getButtonDisabled(type, currentDate, minRange) {
|
||||||
if (currentDate == null) {
|
if (currentDate == null) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -25,7 +25,7 @@ function getButtonDisabled(type, currentDate) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (type === 'multiple') {
|
if (type === 'multiple') {
|
||||||
return !currentDate.length;
|
return currentDate.length < minRange;
|
||||||
}
|
}
|
||||||
|
|
||||||
return !currentDate;
|
return !currentDate;
|
||||||
|
@ -171,6 +171,9 @@ var defaultFieldNames = {
|
|||||||
onClickTab: function (e) {
|
onClickTab: function (e) {
|
||||||
var _a = e.detail, tabIndex = _a.index, title = _a.title;
|
var _a = e.detail, tabIndex = _a.index, title = _a.title;
|
||||||
this.$emit('click-tab', { title: title, tabIndex: tabIndex });
|
this.$emit('click-tab', { title: title, tabIndex: tabIndex });
|
||||||
|
this.setData({
|
||||||
|
activeTab: tabIndex,
|
||||||
|
});
|
||||||
},
|
},
|
||||||
// 选中
|
// 选中
|
||||||
onSelect: function (e) {
|
onSelect: function (e) {
|
||||||
|
2
lib/circle/canvas.d.ts
vendored
2
lib/circle/canvas.d.ts
vendored
@ -1,4 +1,4 @@
|
|||||||
/// <reference types="miniprogram-api-typings" />
|
/// <reference types="miniprogram-api-typings" />
|
||||||
declare type CanvasContext = WechatMiniprogram.CanvasContext;
|
type CanvasContext = WechatMiniprogram.CanvasContext;
|
||||||
export declare function adaptor(ctx: CanvasContext & Record<string, unknown>): CanvasContext;
|
export declare function adaptor(ctx: CanvasContext & Record<string, unknown>): CanvasContext;
|
||||||
export {};
|
export {};
|
||||||
|
2
lib/common/relation.d.ts
vendored
2
lib/common/relation.d.ts
vendored
@ -1,5 +1,5 @@
|
|||||||
/// <reference types="miniprogram-api-typings" />
|
/// <reference types="miniprogram-api-typings" />
|
||||||
declare type TrivialInstance = WechatMiniprogram.Component.TrivialInstance;
|
type TrivialInstance = WechatMiniprogram.Component.TrivialInstance;
|
||||||
export declare function useParent(name: string, onEffect?: (this: TrivialInstance) => void): {
|
export declare function useParent(name: string, onEffect?: (this: TrivialInstance) => void): {
|
||||||
relations: {
|
relations: {
|
||||||
[x: string]: WechatMiniprogram.Component.RelationOption;
|
[x: string]: WechatMiniprogram.Component.RelationOption;
|
||||||
|
2
lib/count-down/utils.d.ts
vendored
2
lib/count-down/utils.d.ts
vendored
@ -1,4 +1,4 @@
|
|||||||
export declare type TimeData = {
|
export type TimeData = {
|
||||||
days: number;
|
days: number;
|
||||||
hours: number;
|
hours: number;
|
||||||
minutes: number;
|
minutes: number;
|
||||||
|
2
lib/definitions/index.d.ts
vendored
2
lib/definitions/index.d.ts
vendored
@ -5,7 +5,7 @@ interface VantComponentInstance {
|
|||||||
index: number;
|
index: number;
|
||||||
$emit: (name: string, detail?: unknown, options?: WechatMiniprogram.Component.TriggerEventOption) => void;
|
$emit: (name: string, detail?: unknown, options?: WechatMiniprogram.Component.TriggerEventOption) => void;
|
||||||
}
|
}
|
||||||
export declare type VantComponentOptions<Data extends WechatMiniprogram.Component.DataOption, Props extends WechatMiniprogram.Component.PropertyOption, Methods extends WechatMiniprogram.Component.MethodOption> = {
|
export type VantComponentOptions<Data extends WechatMiniprogram.Component.DataOption, Props extends WechatMiniprogram.Component.PropertyOption, Methods extends WechatMiniprogram.Component.MethodOption> = {
|
||||||
data?: Data;
|
data?: Data;
|
||||||
field?: boolean;
|
field?: boolean;
|
||||||
classes?: string[];
|
classes?: string[];
|
||||||
|
4
lib/dialog/dialog.d.ts
vendored
4
lib/dialog/dialog.d.ts
vendored
@ -1,7 +1,7 @@
|
|||||||
/// <reference types="miniprogram-api-typings" />
|
/// <reference types="miniprogram-api-typings" />
|
||||||
/// <reference types="miniprogram-api-typings" />
|
/// <reference types="miniprogram-api-typings" />
|
||||||
export declare type Action = 'confirm' | 'cancel' | 'overlay';
|
export type Action = 'confirm' | 'cancel' | 'overlay';
|
||||||
declare type DialogContext = WechatMiniprogram.Page.TrivialInstance | WechatMiniprogram.Component.TrivialInstance;
|
type DialogContext = WechatMiniprogram.Page.TrivialInstance | WechatMiniprogram.Component.TrivialInstance;
|
||||||
interface DialogOptions {
|
interface DialogOptions {
|
||||||
lang?: string;
|
lang?: string;
|
||||||
show?: boolean;
|
show?: boolean;
|
||||||
|
4
lib/mixins/page-scroll.d.ts
vendored
4
lib/mixins/page-scroll.d.ts
vendored
@ -1,6 +1,6 @@
|
|||||||
/// <reference types="miniprogram-api-typings" />
|
/// <reference types="miniprogram-api-typings" />
|
||||||
/// <reference types="miniprogram-api-typings" />
|
/// <reference types="miniprogram-api-typings" />
|
||||||
declare type IPageScrollOption = WechatMiniprogram.Page.IPageScrollOption;
|
type IPageScrollOption = WechatMiniprogram.Page.IPageScrollOption;
|
||||||
declare type Scroller = (this: WechatMiniprogram.Component.TrivialInstance, event?: IPageScrollOption) => void;
|
type Scroller = (this: WechatMiniprogram.Component.TrivialInstance, event?: IPageScrollOption) => void;
|
||||||
export declare function pageScrollMixin(scroller: Scroller): string;
|
export declare function pageScrollMixin(scroller: Scroller): string;
|
||||||
export {};
|
export {};
|
||||||
|
@ -55,6 +55,10 @@ var transition_1 = require("../mixins/transition");
|
|||||||
type: Boolean,
|
type: Boolean,
|
||||||
value: false,
|
value: false,
|
||||||
},
|
},
|
||||||
|
safeAreaTabBar: {
|
||||||
|
type: Boolean,
|
||||||
|
value: false,
|
||||||
|
},
|
||||||
lockScroll: {
|
lockScroll: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
value: true,
|
value: true,
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
/>
|
/>
|
||||||
<view
|
<view
|
||||||
wx:if="{{ inited }}"
|
wx:if="{{ inited }}"
|
||||||
class="custom-class {{ classes }} {{ utils.bem('popup', [position, { round, safe: safeAreaInsetBottom, safeTop: safeAreaInsetTop }]) }}"
|
class="custom-class {{ classes }} {{ utils.bem('popup', [position, { round, safe: safeAreaInsetBottom, safeTop: safeAreaInsetTop, safeTabBar: safeAreaTabBar }]) }}"
|
||||||
style="{{ computed.popupStyle({ zIndex, currentDuration, display, customStyle }) }}"
|
style="{{ computed.popupStyle({ zIndex, currentDuration, display, customStyle }) }}"
|
||||||
bind:transitionend="onTransitionEnd"
|
bind:transitionend="onTransitionEnd"
|
||||||
>
|
>
|
||||||
|
@ -1 +1 @@
|
|||||||
@import '../common/index.wxss';.van-popup{-webkit-overflow-scrolling:touch;animation:ease both;background-color:var(--popup-background-color,#fff);box-sizing:border-box;max-height:100%;overflow-y:auto;position:fixed;transition-timing-function:ease}.van-popup--center{left:50%;top:50%;transform:translate3d(-50%,-50%,0)}.van-popup--center.van-popup--round{border-radius:var(--popup-round-border-radius,16px)}.van-popup--top{left:0;top:0;width:100%}.van-popup--top.van-popup--round{border-radius:0 0 var(--popup-round-border-radius,var(--popup-round-border-radius,16px)) var(--popup-round-border-radius,var(--popup-round-border-radius,16px))}.van-popup--right{right:0;top:50%;transform:translate3d(0,-50%,0)}.van-popup--right.van-popup--round{border-radius:var(--popup-round-border-radius,var(--popup-round-border-radius,16px)) 0 0 var(--popup-round-border-radius,var(--popup-round-border-radius,16px))}.van-popup--bottom{bottom:0;left:0;width:100%}.van-popup--bottom.van-popup--round{border-radius:var(--popup-round-border-radius,var(--popup-round-border-radius,16px)) var(--popup-round-border-radius,var(--popup-round-border-radius,16px)) 0 0}.van-popup--left{left:0;top:50%;transform:translate3d(0,-50%,0)}.van-popup--left.van-popup--round{border-radius:0 var(--popup-round-border-radius,var(--popup-round-border-radius,16px)) var(--popup-round-border-radius,var(--popup-round-border-radius,16px)) 0}.van-popup--bottom.van-popup--safe{padding-bottom:env(safe-area-inset-bottom)}.van-popup--safeTop{padding-top:env(safe-area-inset-top)}.van-popup__close-icon{color:var(--popup-close-icon-color,#969799);font-size:var(--popup-close-icon-size,18px);position:absolute;z-index:var(--popup-close-icon-z-index,1)}.van-popup__close-icon--top-left{left:var(--popup-close-icon-margin,16px);top:var(--popup-close-icon-margin,16px)}.van-popup__close-icon--top-right{right:var(--popup-close-icon-margin,16px);top:var(--popup-close-icon-margin,16px)}.van-popup__close-icon--bottom-left{bottom:var(--popup-close-icon-margin,16px);left:var(--popup-close-icon-margin,16px)}.van-popup__close-icon--bottom-right{bottom:var(--popup-close-icon-margin,16px);right:var(--popup-close-icon-margin,16px)}.van-popup__close-icon:active{opacity:.6}.van-scale-enter-active,.van-scale-leave-active{transition-property:opacity,transform}.van-scale-enter,.van-scale-leave-to{opacity:0;transform:translate3d(-50%,-50%,0) scale(.7)}.van-fade-enter-active,.van-fade-leave-active{transition-property:opacity}.van-fade-enter,.van-fade-leave-to{opacity:0}.van-center-enter-active,.van-center-leave-active{transition-property:opacity}.van-center-enter,.van-center-leave-to{opacity:0}.van-bottom-enter-active,.van-bottom-leave-active,.van-left-enter-active,.van-left-leave-active,.van-right-enter-active,.van-right-leave-active,.van-top-enter-active,.van-top-leave-active{transition-property:transform}.van-bottom-enter,.van-bottom-leave-to{transform:translate3d(0,100%,0)}.van-top-enter,.van-top-leave-to{transform:translate3d(0,-100%,0)}.van-left-enter,.van-left-leave-to{transform:translate3d(-100%,-50%,0)}.van-right-enter,.van-right-leave-to{transform:translate3d(100%,-50%,0)}
|
@import '../common/index.wxss';.van-popup{-webkit-overflow-scrolling:touch;animation:ease both;background-color:var(--popup-background-color,#fff);box-sizing:border-box;max-height:100%;overflow-y:auto;position:fixed;transition-timing-function:ease}.van-popup--center{left:50%;top:50%;transform:translate3d(-50%,-50%,0)}.van-popup--center.van-popup--round{border-radius:var(--popup-round-border-radius,16px)}.van-popup--top{left:0;top:0;width:100%}.van-popup--top.van-popup--round{border-radius:0 0 var(--popup-round-border-radius,var(--popup-round-border-radius,16px)) var(--popup-round-border-radius,var(--popup-round-border-radius,16px))}.van-popup--right{right:0;top:50%;transform:translate3d(0,-50%,0)}.van-popup--right.van-popup--round{border-radius:var(--popup-round-border-radius,var(--popup-round-border-radius,16px)) 0 0 var(--popup-round-border-radius,var(--popup-round-border-radius,16px))}.van-popup--bottom{bottom:0;left:0;width:100%}.van-popup--bottom.van-popup--round{border-radius:var(--popup-round-border-radius,var(--popup-round-border-radius,16px)) var(--popup-round-border-radius,var(--popup-round-border-radius,16px)) 0 0}.van-popup--left{left:0;top:50%;transform:translate3d(0,-50%,0)}.van-popup--left.van-popup--round{border-radius:0 var(--popup-round-border-radius,var(--popup-round-border-radius,16px)) var(--popup-round-border-radius,var(--popup-round-border-radius,16px)) 0}.van-popup--bottom.van-popup--safe{padding-bottom:env(safe-area-inset-bottom)}.van-popup--bottom.van-popup--safeTabBar{bottom:var(--tabbar-height,50px)}.van-popup--safeTop{padding-top:env(safe-area-inset-top)}.van-popup__close-icon{color:var(--popup-close-icon-color,#969799);font-size:var(--popup-close-icon-size,18px);position:absolute;z-index:var(--popup-close-icon-z-index,1)}.van-popup__close-icon--top-left{left:var(--popup-close-icon-margin,16px);top:var(--popup-close-icon-margin,16px)}.van-popup__close-icon--top-right{right:var(--popup-close-icon-margin,16px);top:var(--popup-close-icon-margin,16px)}.van-popup__close-icon--bottom-left{bottom:var(--popup-close-icon-margin,16px);left:var(--popup-close-icon-margin,16px)}.van-popup__close-icon--bottom-right{bottom:var(--popup-close-icon-margin,16px);right:var(--popup-close-icon-margin,16px)}.van-popup__close-icon:active{opacity:.6}.van-scale-enter-active,.van-scale-leave-active{transition-property:opacity,transform}.van-scale-enter,.van-scale-leave-to{opacity:0;transform:translate3d(-50%,-50%,0) scale(.7)}.van-fade-enter-active,.van-fade-leave-active{transition-property:opacity}.van-fade-enter,.van-fade-leave-to{opacity:0}.van-center-enter-active,.van-center-leave-active{transition-property:opacity}.van-center-enter,.van-center-leave-to{opacity:0}.van-bottom-enter-active,.van-bottom-leave-active,.van-left-enter-active,.van-left-leave-active,.van-right-enter-active,.van-right-leave-active,.van-top-enter-active,.van-top-leave-active{transition-property:transform}.van-bottom-enter,.van-bottom-leave-to{transform:translate3d(0,100%,0)}.van-top-enter,.van-top-leave-to{transform:translate3d(0,-100%,0)}.van-left-enter,.van-left-leave-to{transform:translate3d(-100%,-50%,0)}.van-right-enter,.van-right-leave-to{transform:translate3d(100%,-50%,0)}
|
@ -112,6 +112,7 @@ function equal(value1, value2) {
|
|||||||
onBlur: function (event) {
|
onBlur: function (event) {
|
||||||
var value = this.format(event.detail.value);
|
var value = this.format(event.detail.value);
|
||||||
this.setData({ currentValue: value });
|
this.setData({ currentValue: value });
|
||||||
|
this.emitChange(value);
|
||||||
this.$emit('blur', __assign(__assign({}, event.detail), { value: value }));
|
this.$emit('blur', __assign(__assign({}, event.detail), { value: value }));
|
||||||
},
|
},
|
||||||
// filter illegal characters
|
// filter illegal characters
|
||||||
|
@ -16,7 +16,6 @@
|
|||||||
<slot name="minus" />
|
<slot name="minus" />
|
||||||
</view>
|
</view>
|
||||||
<input
|
<input
|
||||||
always-embed="{{ false }}"
|
|
||||||
type="{{ integer ? 'number' : 'digit' }}"
|
type="{{ integer ? 'number' : 'digit' }}"
|
||||||
class="input-class {{ utils.bem('stepper__input', { disabled: disabled || disableInput }) }}"
|
class="input-class {{ utils.bem('stepper__input', { disabled: disabled || disableInput }) }}"
|
||||||
style="{{ computed.inputStyle({ buttonSize, inputWidth }) }}"
|
style="{{ computed.inputStyle({ buttonSize, inputWidth }) }}"
|
||||||
|
@ -8,6 +8,14 @@ var relation_1 = require("../common/relation");
|
|||||||
name: null,
|
name: null,
|
||||||
icon: String,
|
icon: String,
|
||||||
dot: Boolean,
|
dot: Boolean,
|
||||||
|
url: {
|
||||||
|
type: String,
|
||||||
|
value: '',
|
||||||
|
},
|
||||||
|
linkType: {
|
||||||
|
type: String,
|
||||||
|
value: 'redirectTo',
|
||||||
|
},
|
||||||
iconPrefix: {
|
iconPrefix: {
|
||||||
type: String,
|
type: String,
|
||||||
value: 'van-icon',
|
value: 'van-icon',
|
||||||
@ -29,6 +37,10 @@ var relation_1 = require("../common/relation");
|
|||||||
parent.$emit('change', active);
|
parent.$emit('change', active);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
var _a = this.data, url = _a.url, linkType = _a.linkType;
|
||||||
|
if (url && wx[linkType]) {
|
||||||
|
return wx[linkType]({ url: url });
|
||||||
|
}
|
||||||
this.$emit('click');
|
this.$emit('click');
|
||||||
},
|
},
|
||||||
updateFromParent: function () {
|
updateFromParent: function () {
|
||||||
|
4
lib/toast/toast.d.ts
vendored
4
lib/toast/toast.d.ts
vendored
@ -1,7 +1,7 @@
|
|||||||
/// <reference types="miniprogram-api-typings" />
|
/// <reference types="miniprogram-api-typings" />
|
||||||
/// <reference types="miniprogram-api-typings" />
|
/// <reference types="miniprogram-api-typings" />
|
||||||
declare type ToastMessage = string | number;
|
type ToastMessage = string | number;
|
||||||
declare type ToastContext = WechatMiniprogram.Component.TrivialInstance | WechatMiniprogram.Page.TrivialInstance;
|
type ToastContext = WechatMiniprogram.Component.TrivialInstance | WechatMiniprogram.Page.TrivialInstance;
|
||||||
interface ToastOptions {
|
interface ToastOptions {
|
||||||
show?: boolean;
|
show?: boolean;
|
||||||
type?: string;
|
type?: string;
|
||||||
|
@ -53,7 +53,7 @@ var validator_1 = require("../common/validator");
|
|||||||
}, uploadIcon: {
|
}, uploadIcon: {
|
||||||
type: String,
|
type: String,
|
||||||
value: 'photograph',
|
value: 'photograph',
|
||||||
} }, shared_1.chooseImageProps), shared_1.chooseVideoProps), shared_1.chooseMediaProps), shared_1.chooseMessageFileProps),
|
} }, shared_1.imageProps), shared_1.videoProps), shared_1.mediaProps), shared_1.messageFileProps),
|
||||||
data: {
|
data: {
|
||||||
lists: [],
|
lists: [],
|
||||||
isInCount: true,
|
isInCount: true,
|
||||||
@ -129,11 +129,12 @@ var validator_1 = require("../common/validator");
|
|||||||
if (!this.data.previewFullImage)
|
if (!this.data.previewFullImage)
|
||||||
return;
|
return;
|
||||||
var index = event.currentTarget.dataset.index;
|
var index = event.currentTarget.dataset.index;
|
||||||
var lists = this.data.lists;
|
var _a = this.data, lists = _a.lists, showmenu = _a.showmenu;
|
||||||
var item = lists[index];
|
var item = lists[index];
|
||||||
wx.previewImage({
|
wx.previewImage({
|
||||||
urls: lists.filter(function (item) { return (0, utils_1.isImageFile)(item); }).map(function (item) { return item.url; }),
|
urls: lists.filter(function (item) { return (0, utils_1.isImageFile)(item); }).map(function (item) { return item.url; }),
|
||||||
current: item.url,
|
current: item.url,
|
||||||
|
showmenu: showmenu,
|
||||||
fail: function () {
|
fail: function () {
|
||||||
wx.showToast({ title: '预览图片失败', icon: 'none' });
|
wx.showToast({ title: '预览图片失败', icon: 'none' });
|
||||||
},
|
},
|
||||||
|
12
lib/uploader/shared.d.ts
vendored
12
lib/uploader/shared.d.ts
vendored
@ -1,4 +1,4 @@
|
|||||||
export declare const chooseImageProps: {
|
export declare const imageProps: {
|
||||||
sizeType: {
|
sizeType: {
|
||||||
type: ArrayConstructor;
|
type: ArrayConstructor;
|
||||||
value: string[];
|
value: string[];
|
||||||
@ -7,8 +7,12 @@ export declare const chooseImageProps: {
|
|||||||
type: ArrayConstructor;
|
type: ArrayConstructor;
|
||||||
value: string[];
|
value: string[];
|
||||||
};
|
};
|
||||||
|
showmenu: {
|
||||||
|
type: BooleanConstructor;
|
||||||
|
value: boolean;
|
||||||
};
|
};
|
||||||
export declare const chooseVideoProps: {
|
};
|
||||||
|
export declare const videoProps: {
|
||||||
capture: {
|
capture: {
|
||||||
type: ArrayConstructor;
|
type: ArrayConstructor;
|
||||||
value: string[];
|
value: string[];
|
||||||
@ -26,7 +30,7 @@ export declare const chooseVideoProps: {
|
|||||||
value: string;
|
value: string;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
export declare const chooseMediaProps: {
|
export declare const mediaProps: {
|
||||||
capture: {
|
capture: {
|
||||||
type: ArrayConstructor;
|
type: ArrayConstructor;
|
||||||
value: string[];
|
value: string[];
|
||||||
@ -44,6 +48,6 @@ export declare const chooseMediaProps: {
|
|||||||
value: string;
|
value: string;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
export declare const chooseMessageFileProps: {
|
export declare const messageFileProps: {
|
||||||
extension: null;
|
extension: null;
|
||||||
};
|
};
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
exports.chooseMessageFileProps = exports.chooseMediaProps = exports.chooseVideoProps = exports.chooseImageProps = void 0;
|
exports.messageFileProps = exports.mediaProps = exports.videoProps = exports.imageProps = void 0;
|
||||||
// props for choose image
|
// props for image
|
||||||
exports.chooseImageProps = {
|
exports.imageProps = {
|
||||||
sizeType: {
|
sizeType: {
|
||||||
type: Array,
|
type: Array,
|
||||||
value: ['original', 'compressed'],
|
value: ['original', 'compressed'],
|
||||||
@ -11,9 +11,13 @@ exports.chooseImageProps = {
|
|||||||
type: Array,
|
type: Array,
|
||||||
value: ['album', 'camera'],
|
value: ['album', 'camera'],
|
||||||
},
|
},
|
||||||
|
showmenu: {
|
||||||
|
type: Boolean,
|
||||||
|
value: true,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
// props for choose video
|
// props for video
|
||||||
exports.chooseVideoProps = {
|
exports.videoProps = {
|
||||||
capture: {
|
capture: {
|
||||||
type: Array,
|
type: Array,
|
||||||
value: ['album', 'camera'],
|
value: ['album', 'camera'],
|
||||||
@ -31,8 +35,8 @@ exports.chooseVideoProps = {
|
|||||||
value: 'back',
|
value: 'back',
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
// props for choose media
|
// props for media
|
||||||
exports.chooseMediaProps = {
|
exports.mediaProps = {
|
||||||
capture: {
|
capture: {
|
||||||
type: Array,
|
type: Array,
|
||||||
value: ['album', 'camera'],
|
value: ['album', 'camera'],
|
||||||
@ -50,7 +54,7 @@ exports.chooseMediaProps = {
|
|||||||
value: 'back',
|
value: 'back',
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
// props for choose file
|
// props for file
|
||||||
exports.chooseMessageFileProps = {
|
exports.messageFileProps = {
|
||||||
extension: null,
|
extension: null,
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user