| 1234567891011121314151617181920212223 |
- <cu-custom bgColor="bg-lw-header" isCustom="{{true}}">
- <view slot="content">评价</view>
- </cu-custom>
- <form>
- <radio-group class="block" bind:change="RadioChange">
- <view class="cu-form-group">
- <view class="title">满意度</view>
- <view>
- <radio class='blue' value="非常满意"></radio>
- <text class="margin-left-sm">非常满意</text>
- <radio class='blue margin-left-xl' value="不满意"></radio>
- <text class="margin-left-sm">不满意</text>
- </view>
- </view>
- </radio-group>
- <view class="cu-form-group solid-top">
- <textarea maxlength="-1" bind:input="textareaAInput" placeholder="请输入评价内容"></textarea>
- </view>
- <view class="padding flex flex-direction">
- <button class="cu-btn lw-red margin-tb-sm lg" style="width:600rpx;" bindtap="submit">提交</button>
- </view>
- </form>
|