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

15 lines
535 B
Plaintext
Raw Normal View History

2023-08-29 21:48:51 +08:00
<!--components/fillings/index.wxml-->
<view class="filling_selector_max">
<!-- 上传图片 -->
<view class="file">
<view class="files" wx:for="{{uploaderList}}" wx:key="index">
<text data-index="{{index}}">{{item.name}}</text>
<view class="in-delete" bindtap='clearImg' data-index="{{index}}">×</view>
</view>
<view class="in-add">
<view class="in-add-click" bindtap='upload' wx:if="{{showUpload}}"></view>
</view>
</view>
</view>