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">
|
2023-09-01 02:28:39 +08:00
|
|
|
|
<text data-index="{{index}}" style="word-wrap: break-word;">{{item.name}}</text>
|
2023-08-29 21:48:51 +08:00
|
|
|
|
<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>
|