🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
>功能实现:点击选择本地图片 --wxml-- 默认设置isEmpty为true,当choose后设置为false ``` <image src="{{isEmpty? '/swiper/l1.jpg':imgUrl}}" catchtap="c_click"/> ``` --js-- ``` data: { isEmpty: true }, c_click(){ wx.chooseImage({ count: 9, sizeType: ['original','compressed'], sourceType: ['album','camera'], success: (result)=>{ var tempFilePaths = result.tempFilePaths; this.setData({ imgUrl: tempFilePaths, isEmpty: false }) } }); } ```