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