jhwxapp/miniprogram/pages/components/file-uploader-copy/index.wxml

19 lines
904 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<!--components/fillings/index.wxml-->
<view class="filling_selector_max">
<!-- 上传图片 -->
<view class="in-img-max">
<view class="in-img-div" wx:for="{{uploaderList}}" wx:key="index" style="border: 1px solid green;">
<image bindtap='showImg' data-index="{{index}}" src='{{item}}' style="width:164px;height:107px;"></image>
<view class="in-delete" bindtap='clearImg' data-index="{{index}}">×</view>
</view>
<view class="in-add" wx:if="{{scr != ''}}">
<view class="in-add-click" bindtap='upload' wx:if="{{showUpload}}" style="width:164px;height:107px;background:url({{scr}}) no-repeat center/100%;"></view>
</view>
<view class="in-add" wx:if="{{scr == ''}}">
<view class="in-add-click" bindtap='upload' wx:if="{{showUpload}}"></view>
</view>
</view>
</view>