index.wxml 1.1 KB

1234567891011121314151617
  1. <!-- nova-lesson/pages/lesson-detail/write-comment/index.wxml -->
  2. <nav type="back" title="撰写评论" background-color="{{activeColor ? activeColor : '#ffffff'}}"front-color="{{titleColor ? titleColor : '#000000'}}"></nav>
  3. <view class="write_info">
  4. <view class="write_top">
  5. <view class="cencle" bind:tap="confirm" data-type="cencle">取消</view>
  6. <view class="submit" bind:tap="confirm" data-type="submit">提交评价</view>
  7. </view>
  8. <view class="rate_info">
  9. <van-rate value="{{rate}}" bind:change="onChange" size="{{ 30 }}" color="#ffd21e" void-icon="star" void-color="#eee" />
  10. <view class="choose">点击星星来评价</view>
  11. </view>
  12. <textarea class="textarea" data-name="content" value="{{content}}" bindinput="blur" maxlength="250" placeholder="评价内容(请输入5-250字)" placeholder-style="font-size:30rpx;"></textarea>
  13. <view class="c_logo">
  14. <view class="label">上传图片:</view>
  15. <upload bind:onChangeFile="changeFile" fileList="{{fileList}}" accept="all" maxCount="9" uploadURL="{{uploadURL}}" domain="{{domain}}" uptokenURL="{{uptokenURL}}"></upload>
  16. </view>
  17. </view>