2024-07-30 11:17:41 +08:00
|
|
|
<view class="containerView public">
|
|
|
|
|
|
|
|
<view class="regionView">
|
|
|
|
<view class="topTitle">服务评价</view>
|
2024-08-15 14:59:35 +08:00
|
|
|
<view class="itemView">
|
|
|
|
<view class="label">评价</view>
|
|
|
|
<van-icon class="star" wx:for="{{5}}" wx:for-item="index" wx:key="*this" name="{{index < form.evalService ? 'star' : 'star-o'}}" color="{{index < form.evalService ? '#f9d24e' : '#c9c9c9'}}" size="50rpx" data-index="{{index}}" bind:tap="selectStar" />
|
2024-07-30 11:17:41 +08:00
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
<view class="regionView">
|
|
|
|
<view class="topTitle">留言反馈</view>
|
2024-08-15 14:59:35 +08:00
|
|
|
<van-field model:value="{{ form.feedback }}" bind:input="fieldInput" data-name="feedback" clearable type="textarea" placeholder="请输入" maxlength="{{100}}" show-word-limit border="{{false}}" autosize input-class="selfTextarea" />
|
2024-07-30 11:17:41 +08:00
|
|
|
<!-- 上传图片 -->
|
|
|
|
<view class="uploadImgView">
|
2024-08-15 14:59:35 +08:00
|
|
|
<van-uploader file-list="{{ fileList }}" upload-text="点击上传" bind:after-read="fileAfterRead" deletable="{{ true }}" bind:delete="deleteImg" max-count="6" accept="media" multiple />
|
2024-07-30 11:17:41 +08:00
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
|
2024-08-15 14:59:35 +08:00
|
|
|
<view class="submitBtn" bind:tap="submitData">提交</view>
|
2024-07-30 11:17:41 +08:00
|
|
|
|
2024-08-15 14:59:35 +08:00
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 消息通知 -->
|
|
|
|
<van-notify id="van-notify" />
|