2024-10-13 11:24:45 +08:00
|
|
|
|
<!--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">
|
|
|
|
|
<image bindtap='showImg' data-index="{{index}}" src='{{item}}'></image>
|
|
|
|
|
<view class="in-delete" bindtap='clearImg' data-index="{{index}}">×</view>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<view class="in-add">
|
2024-12-17 20:25:21 +08:00
|
|
|
|
<view class="{{ iconClass }}" bindtap='upload' wx:if="{{showUpload}}"></view>
|
2024-10-13 11:24:45 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|