evaluate.wxml 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <view class="content">
  2. <view class="order-item">
  3. <view class="goods-box-single">
  4. <image class="goods-img" mode="aspectFill" src="{{productInfo.image}}"></image>
  5. <view class="right position-relative">
  6. <view class="flex">
  7. <text class="title">{{productInfo.store_name}}</text>
  8. <view class="title-right">
  9. <view class="price">{{productInfo.price}}</view>
  10. <view class="attr-box">{{'x'+list.cart_num}}</view>
  11. </view>
  12. </view>
  13. </view>
  14. </view>
  15. <view>
  16. <view class="flex_item zhil">
  17. <view style="width:100%;height:40rpx;line-height:40rpx;margin-bottom:16rpx;">商品质量</view>
  18. <view>
  19. <uni-rate bind:__l="__l" bind:change="__e" data-event-opts="{{[ [ '^change',[ ['rateChange1'] ] ] ]}}" margin="10" size="20" text="1" value="{{rateValue1}}" vueId="58568d73-1"></uni-rate>
  20. </view>
  21. </view>
  22. <view class="flex_item zhil">
  23. <view style="width:100%;height:40rpx;line-height:40rpx;margin-bottom:16rpx;">服务态度</view>
  24. <view>
  25. <uni-rate bind:__l="__l" bind:change="__e" data-event-opts="{{[ [ '^change',[ ['rateChange2'] ] ] ]}}" margin="10" size="20" text="1" value="{{rateValue2}}" vueId="58568d73-2"></uni-rate>
  26. </view>
  27. </view>
  28. <view class="equity_box">
  29. <view class="text-box uni-textarea">
  30. <textarea bindblur="__e" data-event-opts="{{[ [ 'blur',[ [ 'bindTextAreaBlur',['$event'] ] ] ] ]}}" placeholder="{{placeholder}}" placeholderStyle="color:#999"></textarea>
  31. </view>
  32. <view>
  33. <view class="add-img-box flex_item">
  34. <view class="add-img-item" wx:for="{{imgList}}" wx:key="index">
  35. <image catchtap="__e" class="add-img" data-event-opts="{{[ [ 'tap',[ [ 'imgInfo',[index] ] ] ] ]}}" mode="aspectFill" src="{{item.url}}"></image>
  36. <image catchtap="__e" class="add-img-del" data-event-opts="{{[ [ 'tap',[ [ 'delImg',[index] ] ] ] ]}}" src="/static/img/delete.png"></image>
  37. </view>
  38. <view catchtap="__e" class="add-img-item" data-event-opts="{{[ [ 'tap',[ ['scImg'] ] ] ]}}" wx:if="{{imgList.length<9}}">
  39. <image class="add-img" src="/static/img/add.png"></image>
  40. </view>
  41. </view>
  42. </view>
  43. </view>
  44. </view>
  45. </view>
  46. <view catchtap="__e" class="address-box submit-box" data-event-opts="{{[ [ 'tap',[ [ 'submit',['$event'] ] ] ] ]}}">
  47. <text class="submit-btn">提交评论</text>
  48. </view>
  49. </view>