22 lines
1.0 KiB
Plaintext
Raw Normal View History

2024-07-30 11:17:41 +08:00
<view class="containerView public">
<view class="regionView">
<view class="topTitle">服务评价</view>
<view class="itemView" wx:for="{{3}}">
<view class="label">维修速度</view>
<van-icon class="star" wx:for="{{5}}" wx:for-item="index" wx:key="*this" name="{{index < 3 ? 'star' : 'star-o'}}" color="{{index < 3 ? '#f9d24e' : '#c9c9c9'}}" size="50rpx" />
</view>
</view>
<view class="regionView">
<view class="topTitle">留言反馈</view>
<van-field model:value="{{ value }}" type="textarea" placeholder="请输入用户名" maxlength="{{100}}" show-word-limit border="{{false}}" autosize input-class="selfTextarea" />
<!-- 上传图片 -->
<view class="uploadImgView">
<van-uploader file-list="{{ fileList }}" upload-text="点击上传照片" use-before-read bind:before-read="beforeRead" bind:after-read="afterRead" deletable="{{ true }}" bind:delete="deleteImg" max-count="1" />
</view>
</view>
<view class="submitBtn">提交</view>
</view>