uni.chooseFile
uni.chooseImage()
//限制圖片類型以及過濾git圖
let resType = res.tempFiles[0].type.substring(0,5)
if(resType!='image' || res.tempFiles[0].type.substring(6,7) == 'g'){
uni.showToast({
title: "限制圖片類型以及過濾git圖",
icon: 'none',
duration: 2000,
mask: true
});
return
}