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.
23 lines
1.2 KiB
23 lines
1.2 KiB
|
5 years ago
|
<!--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">
|
||
|
|
<image 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>
|
||
|
|
<view style="height:80rpx"></view>
|
||
|
|
<view class="btn" bindtap="submit">提交</view>
|