53 lines
2.5 KiB
Plaintext
53 lines
2.5 KiB
Plaintext
<loading wx:if="{{!show}}">加载中...</loading>
|
|
<view clas="page" wx:if="{{show}}">
|
|
<view class="fui-list-group">
|
|
<view class="fui-list-group-title">
|
|
<text class="icox icox-dianpu1"></text>
|
|
<text class="shop">{{shop.name}}</text>
|
|
</view>
|
|
<view class="fui-list">
|
|
<view class="fui-list-media">
|
|
<image src="{{log.thumb}}"></image>
|
|
</view>
|
|
<view class="fui-list-inner">
|
|
<view class="text">{{log.title}}</view>
|
|
<view class="subtitle" wx:if="{{log.optionid>0}}">{{log.optiontitle}}</view>
|
|
</view>
|
|
<view class="fui-list-angle">
|
|
<view class="text-right" style="color: #ff5555;">{{log.credit}}{{credittext}}<text wx:if="{{log.money>0}}">+¥{{log.money}}</text>
|
|
</view>
|
|
<view class="text-right">x{{log.goods_num}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="fui-title">
|
|
整单评价
|
|
</view>
|
|
<view class="fui-cell-group evaluate">
|
|
<view class="fui-cell must">
|
|
<view class="fui-cell-label">评分</view>
|
|
<text bindtap="select" class="{{key>=index?selectedSrc:normalSrc}}" data-key="{{index}}" wx:for="{{stars_class}}"></text>
|
|
<text class="{{stars_class[key]}}" style="font-size: 28rpx;">{{key!=-1?stars_text[key]:'未评价'}}</text>
|
|
</view>
|
|
<view class="fui-cell" wx:if="{{log.iscomment==0}}">
|
|
<view class="fui-cell-label">晒图</view>
|
|
<view class="fui-images fui-images-sm">
|
|
<image catchtap="upload" class="image image-sm" data-index="{{index}}" data-type="image-preview" src="{{item}}" wx:for="{{imgs}}">
|
|
<text catchtap="upload" class="image-remove" data-index="{{index}}" data-type="image-remove">
|
|
<text class="icox icox-close"></text>
|
|
</text>
|
|
</image>
|
|
</view>
|
|
<view catchtap="upload" class="fui-uploader fui-uploader-sm" data-type="image"></view>
|
|
</view>
|
|
<view class="fui-cell must">
|
|
<view class="fui-cell-label">评论</view>
|
|
<textarea bindinput="change" data-name="content" placeholder="商品满意吗?来分享你的感受吧"></textarea>
|
|
<view class="fui-cell-info"></view>
|
|
</view>
|
|
</view>
|
|
<view class="fui-footer">
|
|
<view bindtap="submit" class="nav-item btn btn-danger block">提交评价</view>
|
|
</view>
|
|
</view>
|