evaluate.wxml 1.6 KB

123456789101112131415161718192021222324
  1. <cu-custom bgColor="bg-lw-header" isCustom="{{true}}">
  2. <view slot="content">评价</view>
  3. </cu-custom>
  4. <form>
  5. <radio-group class="block" bind:change="RadioChange">
  6. <view class="cu-form-group">
  7. <view class="title">满意度</view>
  8. <view class="brightStarts">
  9. <image class="image-item" src="{{1<=form.rate? '../../../common/images/talent/icon_star_full.png' : '../../../common/images/talent/icon_star.png'}}" data-index="1" bindtap="changePic"></image>
  10. <image class="image-item" src="{{2<=form.rate? '../../../common/images/talent/icon_star_full.png' : '../../../common/images/talent/icon_star.png'}}" data-index="2" bindtap="changePic"></image>
  11. <image class="image-item" src="{{3<=form.rate? '../../../common/images/talent/icon_star_full.png' : '../../../common/images/talent/icon_star.png'}}" data-index="3" bindtap="changePic"></image>
  12. <image class="image-item" src="{{4<=form.rate? '../../../common/images/talent/icon_star_full.png' : '../../../common/images/talent/icon_star.png'}}" data-index="4" bindtap="changePic"></image>
  13. <image class="image-item" src="{{5<=form.rate? '../../../common/images/talent/icon_star_full.png' : '../../../common/images/talent/icon_star.png'}}" data-index="5" bindtap="changePic"></image>
  14. </view>
  15. </view>
  16. </radio-group>
  17. <view class="cu-form-group solid-top">
  18. <textarea maxlength="-1" bind:input="textareaAInput" placeholder="请输入评价内容"></textarea>
  19. </view>
  20. <view class="padding flex flex-direction">
  21. <button class="cu-btn lw-red margin-tb-sm lg" style="width:600rpx;" bindtap="submit">提交</button>
  22. </view>
  23. </form>