mirror of
				https://github.com/YunaiV/ruoyi-vue-pro.git
				synced 2025-11-04 16:17:40 +08:00 
			
		
		
		
	使用 uview 重构实际登陆
This commit is contained in:
		
							
								
								
									
										114
									
								
								yudao-vue-ui/uni_modules/uview-ui/components/u-upload/utils.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										114
									
								
								yudao-vue-ui/uni_modules/uview-ui/components/u-upload/utils.js
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,114 @@
 | 
			
		||||
function pickExclude(obj, keys) {
 | 
			
		||||
    if (!uni.$u.test.object(obj)) {
 | 
			
		||||
        return {}
 | 
			
		||||
    }
 | 
			
		||||
    return Object.keys(obj).reduce((prev, key) => {
 | 
			
		||||
        if (!keys.includes(key)) {
 | 
			
		||||
            prev[key] = obj[key]
 | 
			
		||||
        }
 | 
			
		||||
        return prev
 | 
			
		||||
    }, {})
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
function formatImage(res) {
 | 
			
		||||
    return res.tempFiles.map((item) => ({
 | 
			
		||||
        ...pickExclude(item, ['path']),
 | 
			
		||||
        type: 'image',
 | 
			
		||||
        url: item.path,
 | 
			
		||||
        thumb: item.path
 | 
			
		||||
    }))
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
function formatVideo(res) {
 | 
			
		||||
    return [
 | 
			
		||||
        {
 | 
			
		||||
            ...pickExclude(res, ['tempFilePath', 'thumbTempFilePath', 'errMsg']),
 | 
			
		||||
            type: 'video',
 | 
			
		||||
            url: res.tempFilePath,
 | 
			
		||||
            thumb: res.thumbTempFilePath
 | 
			
		||||
        }
 | 
			
		||||
    ]
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
function formatMedia(res) {
 | 
			
		||||
    return res.tempFiles.map((item) => ({
 | 
			
		||||
        ...pickExclude(item, ['fileType', 'thumbTempFilePath', 'tempFilePath']),
 | 
			
		||||
        type: res.type,
 | 
			
		||||
        url: item.tempFilePath,
 | 
			
		||||
        thumb: res.type === 'video' ? item.thumbTempFilePath : item.tempFilePath
 | 
			
		||||
    }))
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
function formatFile(res) {
 | 
			
		||||
    return res.tempFiles.map((item) => ({ ...pickExclude(item, ['path']), url: item.path }))
 | 
			
		||||
}
 | 
			
		||||
export function chooseFile({
 | 
			
		||||
    accept,
 | 
			
		||||
    multiple,
 | 
			
		||||
    capture,
 | 
			
		||||
    compressed,
 | 
			
		||||
    maxDuration,
 | 
			
		||||
    sizeType,
 | 
			
		||||
    camera,
 | 
			
		||||
    maxCount
 | 
			
		||||
}) {
 | 
			
		||||
    return new Promise((resolve, reject) => {
 | 
			
		||||
        switch (accept) {
 | 
			
		||||
        case 'image':
 | 
			
		||||
            uni.chooseImage({
 | 
			
		||||
                count: multiple ? Math.min(maxCount, 9) : 1,
 | 
			
		||||
                sourceType: capture,
 | 
			
		||||
                sizeType,
 | 
			
		||||
                success: (res) => resolve(formatImage(res)),
 | 
			
		||||
                fail: reject
 | 
			
		||||
            })
 | 
			
		||||
            break
 | 
			
		||||
            // #ifdef MP-WEIXIN
 | 
			
		||||
            // 只有微信小程序才支持chooseMedia接口
 | 
			
		||||
        case 'media':
 | 
			
		||||
            wx.chooseMedia({
 | 
			
		||||
                count: multiple ? Math.min(maxCount, 9) : 1,
 | 
			
		||||
                sourceType: capture,
 | 
			
		||||
                maxDuration,
 | 
			
		||||
                sizeType,
 | 
			
		||||
                camera,
 | 
			
		||||
                success: (res) => resolve(formatMedia(res)),
 | 
			
		||||
                fail: reject
 | 
			
		||||
            })
 | 
			
		||||
            break
 | 
			
		||||
            // #endif
 | 
			
		||||
        case 'video':
 | 
			
		||||
            uni.chooseVideo({
 | 
			
		||||
                sourceType: capture,
 | 
			
		||||
                compressed,
 | 
			
		||||
                maxDuration,
 | 
			
		||||
                camera,
 | 
			
		||||
                success: (res) => resolve(formatVideo(res)),
 | 
			
		||||
                fail: reject
 | 
			
		||||
            })
 | 
			
		||||
            break
 | 
			
		||||
            // #ifdef MP-WEIXIN || H5
 | 
			
		||||
            // 只有微信小程序才支持chooseMessageFile接口
 | 
			
		||||
        case 'file':
 | 
			
		||||
            // #ifdef MP-WEIXIN
 | 
			
		||||
            wx.chooseMessageFile({
 | 
			
		||||
                count: multiple ? maxCount : 1,
 | 
			
		||||
                type: accept,
 | 
			
		||||
                success: (res) => resolve(formatFile(res)),
 | 
			
		||||
                fail: reject
 | 
			
		||||
            })
 | 
			
		||||
            // #endif
 | 
			
		||||
            // #ifdef H5
 | 
			
		||||
            // 需要hx2.9.9以上才支持uni.chooseFile
 | 
			
		||||
            uni.chooseFile({
 | 
			
		||||
                count: multiple ? maxCount : 1,
 | 
			
		||||
                type: accept,
 | 
			
		||||
                success: (res) => resolve(formatFile(res)),
 | 
			
		||||
                fail: reject
 | 
			
		||||
            })
 | 
			
		||||
            // #endif
 | 
			
		||||
            break
 | 
			
		||||
				// #endif
 | 
			
		||||
        }
 | 
			
		||||
    })
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user