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.
28 lines
602 B
28 lines
602 B
5 years ago
|
<!--pages/user/myWhistle/evaluate/index.wxml-->
|
||
|
<wxs module="whistle" src="../whistle.wxs"></wxs>
|
||
|
<view class="title">请对本次的处理进行评价</view>
|
||
|
|
||
|
<view class="rate">
|
||
|
|
||
|
<van-rate
|
||
|
value="{{ value }}"
|
||
|
size="{{ 45 }}"
|
||
|
gutter="{{ 10 }}"
|
||
|
color="#ee0a24"
|
||
|
void-color="#eee"
|
||
|
void-icon="star"
|
||
|
bind:change="rate" />
|
||
|
|
||
|
</view>
|
||
|
|
||
|
<view class="evaluate">{{whistle.getEvaluate(score)}}</view>
|
||
|
|
||
|
<view class="opinion">
|
||
|
<textarea placeholder="请填写您的建议" bindinput="opinion" />
|
||
|
</view>
|
||
|
|
||
|
<view class="btn-bottom">
|
||
|
<button class="btn1" bindtap="submit">提交</button>
|
||
|
</view>
|
||
|
|