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