You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
505 B
10 lines
505 B
<view class="image-reader-item" bindtap="chooseImage" wx:if="{{!path}}">
|
|
<text class="cuIcon-cameraadd md-icon" style="font-size:50rpx"></text>
|
|
<text class="md-hint">上传图片</text>
|
|
</view>
|
|
<view class="image-reader-item" bindtap="viewImage" data-url="{{path}}" wx:else>
|
|
<image style="width:100%;height: 200rpx;border-radius: 6rpx;" src="{{path}}" mode="aspectFill"></image>
|
|
<view class="delete" catchtap="deleteImg" data-index="1">
|
|
<text class="cuIcon-close text-white"></text>
|
|
</view>
|
|
</view>
|