| | |
| | | <view class="box_item" style="flex-direction: column;"> |
| | | <view class="box_item_label">图片</view> |
| | | <view class="box_item_tu" v-if="info.multifileList"> |
| | | <view class="box_item_tu_item" v-for="(item, index) in info.multifileList" :key="index"> |
| | | <view class="box_item_tu_item" v-for="(item, index) in info.multifileList" :key="index" @click="previewImage(item.fileurlFull, info.multifileList.map(item => item.fileurlFull))"> |
| | | <image :src="item.fileurlFull" mode="widthFix"></image> |
| | | </view> |
| | | <view class="box_item_tu_zw"></view> |
| | |
| | | console.log(res) |
| | | this.info = res.data |
| | | }) |
| | | } |
| | | }, |
| | | previewImage(current, urls) { |
| | | uni.previewImage({ |
| | | current, |
| | | urls |
| | | }); |
| | | }, |
| | | } |
| | | } |
| | | </script> |