| 123456789101112131415161718192021222324 |
- <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 class="brightStarts">
- <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>
- <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>
- <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>
- <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>
- <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>
- </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>
|