订单评价, WIP
This commit is contained in:
13
pages/rate/rate.wxml
Normal file
13
pages/rate/rate.wxml
Normal file
@ -0,0 +1,13 @@
|
||||
<!--pages/rate/rate.wxml-->
|
||||
<view style="padding: 48rpx;">
|
||||
<view class="star-rate">
|
||||
<text class="title">商品评价</text>
|
||||
<view class="stars">
|
||||
<image wx:for="{{5}}" wx:key="item" data-stars="{{item+1}}" bind:tap="setStarNum" src="{{item >= stars ? '/icon/star-gray.svg' : '/icon/star-solid.svg'}}" class="star" />
|
||||
</view>
|
||||
</view>
|
||||
<view class="rate-description">
|
||||
<textarea placeholder="请输入评价详情" bindinput="handleTextInput" value="{{description}}"></textarea>
|
||||
</view>
|
||||
<button style="margin-top: 48rpx;" bind:tap="submitRate" type="primary">发布评价</button>
|
||||
</view>
|
Reference in New Issue
Block a user