evaluate.wxml 969 B

12345678910111213141516171819202122232425
  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>
  9. <radio class='blue' value="满意"></radio>
  10. <text class="margin-left-sm">满意</text>
  11. <radio class='blue margin-left-xl' value="一般"></radio>
  12. <text class="margin-left-sm">一般</text>
  13. <radio class='blue margin-left-xl' value="不满意"></radio>
  14. <text class="margin-left-sm">不满意</text>
  15. </view>
  16. </view>
  17. </radio-group>
  18. <view class="cu-form-group solid-top">
  19. <textarea maxlength="-1" bind:input="textareaAInput" placeholder="请输入评价内容"></textarea>
  20. </view>
  21. <view class="padding flex flex-direction">
  22. <button class="cu-btn lw-red margin-tb-sm lg" style="width:600rpx;" bindtap="submit">提交</button>
  23. </view>
  24. </form>