evaluate.wxml 863 B

1234567891011121314151617181920212223
  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. </view>
  14. </view>
  15. </radio-group>
  16. <view class="cu-form-group solid-top">
  17. <textarea maxlength="-1" bind:input="textareaAInput" placeholder="请输入评价内容"></textarea>
  18. </view>
  19. <view class="padding flex flex-direction">
  20. <button class="cu-btn lw-red margin-tb-sm lg" style="width:600rpx;" bindtap="submit">提交</button>
  21. </view>
  22. </form>