index.wxml 4.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <view class="head-status">
  2. <view class="success">
  3. <image class="image" mode="widthFix" src="https://img.bbztx.com/miniProgram/challengeFamily/applyInvoicing/success.png"></image>
  4. <view class="enterSuccess">参与成功</view>
  5. </view>
  6. </view>
  7. <view class="modular" wx:if="{{options.coin&&options.coin>0}}">
  8. <view class="modal-label">
  9. <view class="coin-list">
  10. <!-- <view class="coin-list-l">
  11. <view class="icon-box">
  12. <text class='icon icon-coin'></text>
  13. </view>
  14. </view> -->
  15. <image class="baby" mode="widthFix" src="https://img.bbztx.com/images/upload/thumbs/20221017/logo/1665988583734015503.png"></image>
  16. <view class="coin-list-c">
  17. <view class="get-method">
  18. <text>获得宝贝币</text>
  19. </view>
  20. <view class="get-ins">恭喜获得{{options.coin}}宝贝币,宝贝币可换多种特权</view>
  21. </view>
  22. <view class="coin-list-r" data-url="/pages/account/monetaryCenter/index" bindtap="toShow">去查看</view>
  23. </view>
  24. </view>
  25. </view>
  26. <view class="modular">
  27. <view class="modal-title">投诉建议:</view>
  28. <view class="modal-label">
  29. <view>如对活动有投诉建议,可长按识别下方二维码,添加黑衣宝大大进行反馈~</view>
  30. <view>
  31. <!-- 投诉微信二维码 -->
  32. <view class="bgView">
  33. <image src="https://img.bbztx.com/miniProgram/challengeFamily/QRcode.png" mode="widthFix" show-menu-by-longpress class="code-img"></image>
  34. </view>
  35. <!-- <image src="https://img.bbztx.com/images/upload/thumbs/20221017/logo/1665987285227057905.png"></image> -->
  36. </view>
  37. </view>
  38. </view>
  39. <view class="modular">
  40. <view class="modal-title">
  41. <text>活动评价:</text>
  42. <view class="star r-float" wx:if="{{info.comment}}">
  43. <image src="{{info.comment.arating >= 1?'/images/star_real.png':'/images/star.png'}}"></image>
  44. <image src="{{info.comment.arating >= 2?'/images/star_real.png':'/images/star.png'}}"></image>
  45. <image src="{{info.comment.arating >= 3?'/images/star_real.png':'/images/star.png'}}"></image>
  46. <image src="{{info.comment.arating >= 4?'/images/star_real.png':'/images/star.png'}}"></image>
  47. <image src="{{info.comment.arating == 5?'/images/star_real.png':'/images/star.png'}}"></image>
  48. </view>
  49. </view>
  50. <view class="modal-label">
  51. <view class="comment-body">
  52. <view class="default" wx:if="{{!info.comment}}">期待您对本次活动真实的体验反馈,可<span class="subtitleColor">点击下方按钮</span>前往评价,评价后还可随机获得50~100枚宝贝币</view>
  53. <view class="comment-conent" wx:else>
  54. <view class="comment-content font14">
  55. <text>{{info.comment.content}}</text>
  56. <text class="subtitleColor">{{info.comment.tag}}</text>
  57. <view class="scoreImg" wx:if="{{info.comment.images.length>0}}">
  58. <image wx:for="{{info.comment.images}}" wx:key="unique" bindtap="previewImage" data-id="0" data-index="{{index}}" wx:for-item="itemImg" src="{{itemImg}}" mode="aspectFill"></image>
  59. </view>
  60. </view>
  61. <view class="comment-content add-comment font14" wx:if="{{info.comment.additionalComment.cid}}">
  62. <view class="font14 subtitleColor">追加评价</view>
  63. <view class="mTop10"><text>{{info.comment.additionalComment.content}}</text></view>
  64. <view class="scoreImg" wx:if="{{info.comment.additionalComment.images && info.comment.additionalComment.images.length > 0}}">
  65. <image wx:for="{{info.comment.additionalComment.images}}" wx:key="unique" data-index="{{index}}" data-id="1" wx:for-item="itemImg" src="{{itemImg}}" mode="aspectFill" bindtap="previewImage"></image>
  66. </view>
  67. </view>
  68. </view>
  69. </view>
  70. <!-- <view class="comment-btn" bindtap="jumpPage" wx:if="{{info.waitComment == 1 ||(info.waitComment == 2&&info.comment.additional==0)}}">立即评价</view> -->
  71. <button class="comment-btn" wx:if="{{info.waitComment == 0||info.waitComment==1&&info.orderStatus!=3&&info.orderStatus!=4}}" bindtap="actEvaluate">立即评价</button>
  72. <!-- <button class="comment-btn" bindtap="actEvaluate">立即评价~</button> -->
  73. <!-- 追加评价 -->
  74. <button class="comment-btn" wx:if="{{info.comment&&info.comment.additional == 0}}" bindtap="editEvaluate">追加评价</button>
  75. </view>
  76. </view>