mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 10:22:44 +08:00
fix(Upload): fix image upload in wxwork (#5581)
This commit is contained in:
parent
3e6e157c6a
commit
f98cf75027
@ -115,3 +115,6 @@ export function getCurrentPage<T>() {
|
||||
}
|
||||
|
||||
export const isPC = ['mac', 'windows'].includes(getSystemInfoSync().platform);
|
||||
|
||||
// 是否企业微信
|
||||
export const isWxWork = getSystemInfoSync().environment === 'wxwork';
|
||||
|
@ -1,10 +1,17 @@
|
||||
let systemInfo: WechatMiniprogram.SystemInfo;
|
||||
interface WxWorkSystemInfo extends WechatMiniprogram.SystemInfo {
|
||||
environment?: 'wxwork';
|
||||
}
|
||||
|
||||
interface SystemInfo extends WxWorkSystemInfo, WechatMiniprogram.SystemInfo {}
|
||||
|
||||
let systemInfo: SystemInfo;
|
||||
|
||||
export function getSystemInfoSync() {
|
||||
if (systemInfo == null) {
|
||||
systemInfo = wx.getSystemInfoSync();
|
||||
}
|
||||
|
||||
return systemInfo;
|
||||
return systemInfo as SystemInfo;
|
||||
}
|
||||
|
||||
function compareVersion(v1, v2) {
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { pickExclude, isPC } from '../common/utils';
|
||||
import { pickExclude, isPC, isWxWork } from '../common/utils';
|
||||
import { isImageUrl, isVideoUrl } from '../common/validator';
|
||||
|
||||
export interface File {
|
||||
@ -103,7 +103,7 @@ export function chooseFile({
|
||||
return new Promise<File | File[]>((resolve, reject) => {
|
||||
switch (accept) {
|
||||
case 'image':
|
||||
if (isPC) {
|
||||
if (isPC || isWxWork) {
|
||||
wx.chooseImage({
|
||||
count: multiple ? Math.min(maxCount, 9) : 1,
|
||||
sourceType: capture,
|
||||
|
Loading…
x
Reference in New Issue
Block a user