eOrder.wxml 1.1 KB

<view class='container'>
  <view class='top'>
    <textarea placeholder='宝贝满足您的期待吗?说说您的意见或者建议把!' placeholder-style='color:#999999' bindinput="entertext"></textarea>
    <view class='top_bottom'>
      <view></view>
      <view class='top_bottom_right'>
        500/500
      </view>

    </view>
    <!-- 图片 -->
    <view class='top_item'>
      <!-- <view class='top_item_pic' bindtap='chooseImage'>
        <image src='../../../img/tianjiatupian@2x.png'></image>
      </view> -->
      <view class="top_item_pic" wx:for="{{images}}" wx:key="">
            <image src="{{item}}" data-src="{{item}}" bindtap="previewImage" mode="aspectFill" />

            <!-- 删除按钮 -->
            <view class="delete" bindtap="delete" data-index="{{index}}">X</view>
        </view>
        <view class="top_item_pic" bindtap="chooseImage">
            <image src='../../../img/tianjiatupian@3x.png'></image>
        </view>
      
    </view>

  </view>

  <view class='bottom'>
    <view class='bottom_btn' bindtap='submitComment'>
      发表评价
    </view>
  </view>

</view>