comment.wxml 1.2 KB

1234567891011121314151617181920212223
  1. <!--pages/comment/comment.wxml-->
  2. <view class="container" style="display: flex;justify-content: start;flex-direction: column;align-items: center;">
  3. <view class="topLayout">
  4. <view class="topLayout_Item" catchtap="clickVeryGood">
  5. <image src="{{veryGoodUrls}}" class="topLayout_Item_Img"></image>
  6. <text class="{{veryGoodStatus?'topLayout_Item_Text_true':'topLayout_Item_Text_false'}}">很满意</text>
  7. </view>
  8. <view class="topLayout_Item" catchtap="clickGood">
  9. <image src="{{goodUrls}}" class="topLayout_Item_Img"></image>
  10. <text class="{{goodStatus?'topLayout_Item_Text_true':'topLayout_Item_Text_false'}}">很满意</text>
  11. </view>
  12. <view class="topLayout_Item" catchtap="clickNotGood">
  13. <image src="{{notGoodUrl}}" class="topLayout_Item_Img"></image>
  14. <text class="{{notGoodStatus?'topLayout_Item_Text_true':'topLayout_Item_Text_false'}}">很满意</text>
  15. </view>
  16. </view>
  17. <view style="border: 1rpx solid #505050; width:90%;margin-top: 57rpx;height: 444rpx;">
  18. <textarea style="padding: 20rpx;" maxlength="-1" placeholder="我要攒/吐槽" bindconfirm="commitComment" confirm-type="send" confirm-hold="{{true}}"></textarea>
  19. </view>
  20. </view>