// 從相冊中選擇圖片
plus.gallery.pick(function(e) {
//相冊選擇清空數(shù)組從新放
PICTURES = [];//裝圖片路徑的數(shù)組
lfs = e.files;//記錄相冊選中的圖片、標記
$.each(e.files, function(index, path) {
PICTURES.push(path)//圖片的路徑
});
/*產(chǎn)品圖紙*/
console.log("path======>" + PICTURES);
}, function(e) {
console.log('取消選擇圖片');
}, {
filter: 'image',
multiple: true,
maximum: 3,
selected: lfs,
system: false,
onmaxed: function() {
plus.nativeUI.alert('最多只能選擇3張圖片');
}
}); // 最多選擇3張圖片