<!--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}}" style="word-wrap: break-word;">{{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>