You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

56 lines
2.7 KiB

<!--pages/order/comment/index.wxml-->
<title title="填写评论"></title>
<view class="product-box" wx:if="{{info}}" wx:for="{{info.order_product_list}}">
<view class="product-top prd">
<image lazy-load src="{{item.product_img}}" mode="aspectFill"></image>
<view class="product-info">
<view class="product-title">{{item.product_title}}</view>
<view class="sku-name">{{item.sku_name}}</view>
</view>
<view class="product-price">
<view class="price"><text>¥</text>{{item.paid_money/100}}</view>
<view class="product-num">x{{item.product_num}}</view>
</view>
</view>
<view class="product-top" style="">
<text class="tip">综合评分</text>
<view bindtap="changeStar" data-index="{{index}}" data-star="{{starItem}}" wx:for="{{5}}" wx:for-item="starItem" wx:for-index="starIndex" class="iconfont icon-xingxing{{starIndex<item.star?'':' disable'}}"></view>
<!-- <text wx:for="{{5 - item.star}}" class="iconfont icon-xingxing "></text> -->
</view>
<textarea bindinput="changeContent" data-index="{{index}}" placeholder="您对产品还满意吗?您的评价会帮助更多的人哦~"></textarea>
<view class="weui-uploader">
<view class='pics' wx:for="{{imgs}}" wx:for-item="item" wx:key="*this">
<image lazy-load class='weui-uploader__img' src="{{item}}" data-index="{{index}}" mode="aspectFill" bindtap="previewImg">
<icon type='cancel' class="delete-btn" data-index="{{index}}" catchtap="deleteImg"></icon>
</image>
</view>
<view class="tp_cont {{tj_ycang?'':'hide'}}" bindtap="chooseImg">
<view class="tp_add"><image lazy-load style="width: 60rpx;" mode="widthFix" src="https://static.ticket.sz-trip.com/uploads/20220811/13f3f3558cb7e627cef42581f8a2555d.png"></image> <view>上传图片</view></view>
</view>
</view>
</view>
<checkbox-group class="checkbox" bindchange="checkboxChange" >
<label >
<checkbox value="是否匿名" checked="{{checked}}"/>是否匿名
</label>
</checkbox-group>
<view style="height:80rpx"></view>
<view class="btn" bindtap="submit">提交</view>
<view class="proad" id="box4">
<view class="proad-title">
<image lazy-load mode="aspectFill" src="https://static.ticket.sz-trip.com/uploads/20231013/25af23290c0e6ed438f9c4f2222dd81c.png"></image>
</view>
<view class="pro-list">
<view class="proitem" wx:for="{{tjList}}" bindtap="gotoDetail" data-item="{{item}}">
<view class="item-hd">
<image lazy-load src="{{item.headimg}}"></image>
</view>
<view class="item-bm">
<view class="protitle text-overflowRows">{{item.title}}</view>
<view class="pro-price">
{{item.price/100}}
</view>
</view>
</view>
</view>
</view>