mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
build: compile 1.11.2
This commit is contained in:
parent
d869a8149f
commit
c3ae27b4b0
2
dist/calendar/calendar.wxml
vendored
2
dist/calendar/calendar.wxml
vendored
@ -1,3 +1,5 @@
|
|||||||
|
<wxs src="./index.wxs" module="computed" />
|
||||||
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
<view class="van-calendar">
|
<view class="van-calendar">
|
||||||
<header
|
<header
|
||||||
title="{{ title }}"
|
title="{{ title }}"
|
||||||
|
1
dist/common/utils.d.ts
vendored
1
dist/common/utils.d.ts
vendored
@ -18,3 +18,4 @@ export declare function addNumber(num1: any, num2: any): number;
|
|||||||
export declare const clamp: (num: any, min: any, max: any) => number;
|
export declare const clamp: (num: any, min: any, max: any) => number;
|
||||||
export declare function getCurrentPage<T>(): T & WechatMiniprogram.OptionalInterface<WechatMiniprogram.Page.ILifetime> & WechatMiniprogram.Page.InstanceProperties & WechatMiniprogram.Page.InstanceMethods<WechatMiniprogram.IAnyObject> & WechatMiniprogram.Page.Data<WechatMiniprogram.IAnyObject> & WechatMiniprogram.IAnyObject;
|
export declare function getCurrentPage<T>(): T & WechatMiniprogram.OptionalInterface<WechatMiniprogram.Page.ILifetime> & WechatMiniprogram.Page.InstanceProperties & WechatMiniprogram.Page.InstanceMethods<WechatMiniprogram.IAnyObject> & WechatMiniprogram.Page.Data<WechatMiniprogram.IAnyObject> & WechatMiniprogram.IAnyObject;
|
||||||
export declare const isPC: boolean;
|
export declare const isPC: boolean;
|
||||||
|
export declare const isWxWork: boolean;
|
||||||
|
2
dist/common/utils.js
vendored
2
dist/common/utils.js
vendored
@ -82,3 +82,5 @@ export function getCurrentPage() {
|
|||||||
return pages[pages.length - 1];
|
return pages[pages.length - 1];
|
||||||
}
|
}
|
||||||
export const isPC = ['mac', 'windows'].includes(getSystemInfoSync().platform);
|
export const isPC = ['mac', 'windows'].includes(getSystemInfoSync().platform);
|
||||||
|
// 是否企业微信
|
||||||
|
export const isWxWork = getSystemInfoSync().environment === 'wxwork';
|
||||||
|
8
dist/common/version.d.ts
vendored
8
dist/common/version.d.ts
vendored
@ -1,5 +1,10 @@
|
|||||||
/// <reference types="miniprogram-api-typings" />
|
/// <reference types="miniprogram-api-typings" />
|
||||||
export declare function getSystemInfoSync(): WechatMiniprogram.SystemInfo;
|
interface WxWorkSystemInfo extends WechatMiniprogram.SystemInfo {
|
||||||
|
environment?: 'wxwork';
|
||||||
|
}
|
||||||
|
interface SystemInfo extends WxWorkSystemInfo, WechatMiniprogram.SystemInfo {
|
||||||
|
}
|
||||||
|
export declare function getSystemInfoSync(): SystemInfo;
|
||||||
export declare function canIUseModel(): boolean;
|
export declare function canIUseModel(): boolean;
|
||||||
export declare function canIUseFormFieldButton(): boolean;
|
export declare function canIUseFormFieldButton(): boolean;
|
||||||
export declare function canIUseAnimate(): boolean;
|
export declare function canIUseAnimate(): boolean;
|
||||||
@ -7,3 +12,4 @@ export declare function canIUseGroupSetData(): boolean;
|
|||||||
export declare function canIUseNextTick(): boolean;
|
export declare function canIUseNextTick(): boolean;
|
||||||
export declare function canIUseCanvas2d(): boolean;
|
export declare function canIUseCanvas2d(): boolean;
|
||||||
export declare function canIUseGetUserProfile(): boolean;
|
export declare function canIUseGetUserProfile(): boolean;
|
||||||
|
export {};
|
||||||
|
2
dist/dialog/index.wxml
vendored
2
dist/dialog/index.wxml
vendored
@ -57,6 +57,7 @@
|
|||||||
show-message-card="{{ showMessageCard }}"
|
show-message-card="{{ showMessageCard }}"
|
||||||
app-parameter="{{ appParameter }}"
|
app-parameter="{{ appParameter }}"
|
||||||
bindagreeprivacyauthorization="onAgreePrivacyAuthorization"
|
bindagreeprivacyauthorization="onAgreePrivacyAuthorization"
|
||||||
|
bindgetRealTimePhoneNumber="onGetRealTimePhoneNumber"
|
||||||
bind:click="onConfirm"
|
bind:click="onConfirm"
|
||||||
bindgetuserinfo="onGetUserInfo"
|
bindgetuserinfo="onGetUserInfo"
|
||||||
bindcontact="onContact"
|
bindcontact="onContact"
|
||||||
@ -107,6 +108,7 @@
|
|||||||
show-message-card="{{ showMessageCard }}"
|
show-message-card="{{ showMessageCard }}"
|
||||||
app-parameter="{{ appParameter }}"
|
app-parameter="{{ appParameter }}"
|
||||||
bindagreeprivacyauthorization="onAgreePrivacyAuthorization"
|
bindagreeprivacyauthorization="onAgreePrivacyAuthorization"
|
||||||
|
bindgetRealTimePhoneNumber="onGetRealTimePhoneNumber"
|
||||||
bind:click="onConfirm"
|
bind:click="onConfirm"
|
||||||
bindgetuserinfo="onGetUserInfo"
|
bindgetuserinfo="onGetUserInfo"
|
||||||
bindcontact="onContact"
|
bindcontact="onContact"
|
||||||
|
1
dist/field/input.wxml
vendored
1
dist/field/input.wxml
vendored
@ -1,3 +1,4 @@
|
|||||||
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
<input
|
<input
|
||||||
id="{{ name }}"
|
id="{{ name }}"
|
||||||
class="{{ utils.bem('field__control', [inputAlign, { disabled, error }]) }} input-class"
|
class="{{ utils.bem('field__control', [inputAlign, { disabled, error }]) }} input-class"
|
||||||
|
2
dist/field/textarea.wxml
vendored
2
dist/field/textarea.wxml
vendored
@ -1,3 +1,5 @@
|
|||||||
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
<wxs src="./index.wxs" module="computed" />
|
||||||
<textarea
|
<textarea
|
||||||
id="{{ name }}"
|
id="{{ name }}"
|
||||||
class="{{ utils.bem('field__control', [inputAlign, type, { disabled, error }]) }} input-class"
|
class="{{ utils.bem('field__control', [inputAlign, type, { disabled, error }]) }} input-class"
|
||||||
|
1
dist/goods-action-button/index.wxml
vendored
1
dist/goods-action-button/index.wxml
vendored
@ -25,6 +25,7 @@
|
|||||||
bindopensetting="onOpenSetting"
|
bindopensetting="onOpenSetting"
|
||||||
bindgetuserinfo="onGetUserInfo"
|
bindgetuserinfo="onGetUserInfo"
|
||||||
bindagreeprivacyauthorization="onAgreePrivacyAuthorization"
|
bindagreeprivacyauthorization="onAgreePrivacyAuthorization"
|
||||||
|
bindgetRealTimePhoneNumber="onGetRealTimePhoneNumber"
|
||||||
bindgetphonenumber="onGetPhoneNumber"
|
bindgetphonenumber="onGetPhoneNumber"
|
||||||
bindlaunchapp="onLaunchApp"
|
bindlaunchapp="onLaunchApp"
|
||||||
>
|
>
|
||||||
|
2
dist/icon/index.wxss
vendored
2
dist/icon/index.wxss
vendored
File diff suppressed because one or more lines are too long
2
dist/popup/popup.wxml
vendored
2
dist/popup/popup.wxml
vendored
@ -1,3 +1,5 @@
|
|||||||
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
<wxs src="./index.wxs" module="computed" />
|
||||||
<view
|
<view
|
||||||
wx:if="{{ inited }}"
|
wx:if="{{ inited }}"
|
||||||
class="custom-class {{ classes }} {{ utils.bem('popup', [position, { round, safe: safeAreaInsetBottom, safeTop: safeAreaInsetTop, safeTabBar: safeAreaTabBar }]) }}"
|
class="custom-class {{ classes }} {{ utils.bem('popup', [position, { round, safe: safeAreaInsetBottom, safeTop: safeAreaInsetTop, safeTabBar: safeAreaTabBar }]) }}"
|
||||||
|
4
dist/uploader/utils.js
vendored
4
dist/uploader/utils.js
vendored
@ -1,4 +1,4 @@
|
|||||||
import { pickExclude, isPC } from '../common/utils';
|
import { pickExclude, isPC, isWxWork } from '../common/utils';
|
||||||
import { isImageUrl, isVideoUrl } from '../common/validator';
|
import { isImageUrl, isVideoUrl } from '../common/validator';
|
||||||
export function isImageFile(item) {
|
export function isImageFile(item) {
|
||||||
if (item.isImage != null) {
|
if (item.isImage != null) {
|
||||||
@ -42,7 +42,7 @@ export function chooseFile({ accept, multiple, capture, compressed, maxDuration,
|
|||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
switch (accept) {
|
switch (accept) {
|
||||||
case 'image':
|
case 'image':
|
||||||
if (isPC) {
|
if (isPC || isWxWork) {
|
||||||
wx.chooseImage({
|
wx.chooseImage({
|
||||||
count: multiple ? Math.min(maxCount, 9) : 1,
|
count: multiple ? Math.min(maxCount, 9) : 1,
|
||||||
sourceType: capture,
|
sourceType: capture,
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
<wxs src="./index.wxs" module="computed" />
|
||||||
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
<view class="van-calendar">
|
<view class="van-calendar">
|
||||||
<header
|
<header
|
||||||
title="{{ title }}"
|
title="{{ title }}"
|
||||||
|
1
lib/common/utils.d.ts
vendored
1
lib/common/utils.d.ts
vendored
@ -18,3 +18,4 @@ export declare function addNumber(num1: any, num2: any): number;
|
|||||||
export declare const clamp: (num: any, min: any, max: any) => number;
|
export declare const clamp: (num: any, min: any, max: any) => number;
|
||||||
export declare function getCurrentPage<T>(): T & WechatMiniprogram.OptionalInterface<WechatMiniprogram.Page.ILifetime> & WechatMiniprogram.Page.InstanceProperties & WechatMiniprogram.Page.InstanceMethods<WechatMiniprogram.IAnyObject> & WechatMiniprogram.Page.Data<WechatMiniprogram.IAnyObject> & WechatMiniprogram.IAnyObject;
|
export declare function getCurrentPage<T>(): T & WechatMiniprogram.OptionalInterface<WechatMiniprogram.Page.ILifetime> & WechatMiniprogram.Page.InstanceProperties & WechatMiniprogram.Page.InstanceMethods<WechatMiniprogram.IAnyObject> & WechatMiniprogram.Page.Data<WechatMiniprogram.IAnyObject> & WechatMiniprogram.IAnyObject;
|
||||||
export declare const isPC: boolean;
|
export declare const isPC: boolean;
|
||||||
|
export declare const isWxWork: boolean;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
exports.isPC = exports.getCurrentPage = exports.clamp = exports.addNumber = exports.toPromise = exports.groupSetData = exports.getAllRect = exports.getRect = exports.pickExclude = exports.requestAnimationFrame = exports.addUnit = exports.nextTick = exports.range = exports.getSystemInfoSync = exports.isDef = void 0;
|
exports.isWxWork = exports.isPC = exports.getCurrentPage = exports.clamp = exports.addNumber = exports.toPromise = exports.groupSetData = exports.getAllRect = exports.getRect = exports.pickExclude = exports.requestAnimationFrame = exports.addUnit = exports.nextTick = exports.range = exports.getSystemInfoSync = exports.isDef = void 0;
|
||||||
var validator_1 = require("./validator");
|
var validator_1 = require("./validator");
|
||||||
var version_1 = require("./version");
|
var version_1 = require("./version");
|
||||||
var validator_2 = require("./validator");
|
var validator_2 = require("./validator");
|
||||||
@ -105,3 +105,5 @@ function getCurrentPage() {
|
|||||||
}
|
}
|
||||||
exports.getCurrentPage = getCurrentPage;
|
exports.getCurrentPage = getCurrentPage;
|
||||||
exports.isPC = ['mac', 'windows'].includes((0, version_1.getSystemInfoSync)().platform);
|
exports.isPC = ['mac', 'windows'].includes((0, version_1.getSystemInfoSync)().platform);
|
||||||
|
// 是否企业微信
|
||||||
|
exports.isWxWork = (0, version_1.getSystemInfoSync)().environment === 'wxwork';
|
||||||
|
8
lib/common/version.d.ts
vendored
8
lib/common/version.d.ts
vendored
@ -1,5 +1,10 @@
|
|||||||
/// <reference types="miniprogram-api-typings" />
|
/// <reference types="miniprogram-api-typings" />
|
||||||
export declare function getSystemInfoSync(): WechatMiniprogram.SystemInfo;
|
interface WxWorkSystemInfo extends WechatMiniprogram.SystemInfo {
|
||||||
|
environment?: 'wxwork';
|
||||||
|
}
|
||||||
|
interface SystemInfo extends WxWorkSystemInfo, WechatMiniprogram.SystemInfo {
|
||||||
|
}
|
||||||
|
export declare function getSystemInfoSync(): SystemInfo;
|
||||||
export declare function canIUseModel(): boolean;
|
export declare function canIUseModel(): boolean;
|
||||||
export declare function canIUseFormFieldButton(): boolean;
|
export declare function canIUseFormFieldButton(): boolean;
|
||||||
export declare function canIUseAnimate(): boolean;
|
export declare function canIUseAnimate(): boolean;
|
||||||
@ -7,3 +12,4 @@ export declare function canIUseGroupSetData(): boolean;
|
|||||||
export declare function canIUseNextTick(): boolean;
|
export declare function canIUseNextTick(): boolean;
|
||||||
export declare function canIUseCanvas2d(): boolean;
|
export declare function canIUseCanvas2d(): boolean;
|
||||||
export declare function canIUseGetUserProfile(): boolean;
|
export declare function canIUseGetUserProfile(): boolean;
|
||||||
|
export {};
|
||||||
|
@ -57,6 +57,7 @@
|
|||||||
show-message-card="{{ showMessageCard }}"
|
show-message-card="{{ showMessageCard }}"
|
||||||
app-parameter="{{ appParameter }}"
|
app-parameter="{{ appParameter }}"
|
||||||
bindagreeprivacyauthorization="onAgreePrivacyAuthorization"
|
bindagreeprivacyauthorization="onAgreePrivacyAuthorization"
|
||||||
|
bindgetRealTimePhoneNumber="onGetRealTimePhoneNumber"
|
||||||
bind:click="onConfirm"
|
bind:click="onConfirm"
|
||||||
bindgetuserinfo="onGetUserInfo"
|
bindgetuserinfo="onGetUserInfo"
|
||||||
bindcontact="onContact"
|
bindcontact="onContact"
|
||||||
@ -107,6 +108,7 @@
|
|||||||
show-message-card="{{ showMessageCard }}"
|
show-message-card="{{ showMessageCard }}"
|
||||||
app-parameter="{{ appParameter }}"
|
app-parameter="{{ appParameter }}"
|
||||||
bindagreeprivacyauthorization="onAgreePrivacyAuthorization"
|
bindagreeprivacyauthorization="onAgreePrivacyAuthorization"
|
||||||
|
bindgetRealTimePhoneNumber="onGetRealTimePhoneNumber"
|
||||||
bind:click="onConfirm"
|
bind:click="onConfirm"
|
||||||
bindgetuserinfo="onGetUserInfo"
|
bindgetuserinfo="onGetUserInfo"
|
||||||
bindcontact="onContact"
|
bindcontact="onContact"
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
<input
|
<input
|
||||||
id="{{ name }}"
|
id="{{ name }}"
|
||||||
class="{{ utils.bem('field__control', [inputAlign, { disabled, error }]) }} input-class"
|
class="{{ utils.bem('field__control', [inputAlign, { disabled, error }]) }} input-class"
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
<wxs src="./index.wxs" module="computed" />
|
||||||
<textarea
|
<textarea
|
||||||
id="{{ name }}"
|
id="{{ name }}"
|
||||||
class="{{ utils.bem('field__control', [inputAlign, type, { disabled, error }]) }} input-class"
|
class="{{ utils.bem('field__control', [inputAlign, type, { disabled, error }]) }} input-class"
|
||||||
|
@ -25,6 +25,7 @@
|
|||||||
bindopensetting="onOpenSetting"
|
bindopensetting="onOpenSetting"
|
||||||
bindgetuserinfo="onGetUserInfo"
|
bindgetuserinfo="onGetUserInfo"
|
||||||
bindagreeprivacyauthorization="onAgreePrivacyAuthorization"
|
bindagreeprivacyauthorization="onAgreePrivacyAuthorization"
|
||||||
|
bindgetRealTimePhoneNumber="onGetRealTimePhoneNumber"
|
||||||
bindgetphonenumber="onGetPhoneNumber"
|
bindgetphonenumber="onGetPhoneNumber"
|
||||||
bindlaunchapp="onLaunchApp"
|
bindlaunchapp="onLaunchApp"
|
||||||
>
|
>
|
||||||
|
File diff suppressed because one or more lines are too long
@ -1,3 +1,5 @@
|
|||||||
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
<wxs src="./index.wxs" module="computed" />
|
||||||
<view
|
<view
|
||||||
wx:if="{{ inited }}"
|
wx:if="{{ inited }}"
|
||||||
class="custom-class {{ classes }} {{ utils.bem('popup', [position, { round, safe: safeAreaInsetBottom, safeTop: safeAreaInsetTop, safeTabBar: safeAreaTabBar }]) }}"
|
class="custom-class {{ classes }} {{ utils.bem('popup', [position, { round, safe: safeAreaInsetBottom, safeTop: safeAreaInsetTop, safeTabBar: safeAreaTabBar }]) }}"
|
||||||
|
@ -59,7 +59,7 @@ function chooseFile(_a) {
|
|||||||
return new Promise(function (resolve, reject) {
|
return new Promise(function (resolve, reject) {
|
||||||
switch (accept) {
|
switch (accept) {
|
||||||
case 'image':
|
case 'image':
|
||||||
if (utils_1.isPC) {
|
if (utils_1.isPC || utils_1.isWxWork) {
|
||||||
wx.chooseImage({
|
wx.chooseImage({
|
||||||
count: multiple ? Math.min(maxCount, 9) : 1,
|
count: multiple ? Math.min(maxCount, 9) : 1,
|
||||||
sourceType: capture,
|
sourceType: capture,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user