prodComm.wxml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <view class="">
  2. <view class="box">
  3. <!-- 内容填写 -->
  4. <view class="item-con">
  5. <textarea placeholder="把使用心得分享给想买的他们吧" value="{{content}}" bindinput="onContentInput" data-index="{{index}}" maxlength="150">{{ content }}</textarea>
  6. <!-- 添加图片 -->
  7. <view class="img-box">
  8. <view class="img-item" wx:for="{{orderItemInfo.images}}" wx:key="*this" wx:for-index="idx" wx:for-item="imgItem">
  9. <image src="../../images/icon/del.png" data-idx="{{idx}}" bindtap="removeImage" mode="" class="del"/>
  10. <image src="{{imgItem.url}}" mode="aspectFill" class="img" data-idx="{{idx}}" bindtap="comPicPreView"/>
  11. </view>
  12. <view class="upload" bindtap="getUploadImg">
  13. <image src="../../images/icon/photo.png" mode="" class="photo"/>
  14. </view>
  15. </view>
  16. </view>
  17. <!-- 匿名评价 -->
  18. <!-- <view class="img-tip">(最多可上传9张照片)</view> -->
  19. <view class="item-btm">
  20. <checkbox bindtap="onSelectedItem" checked="{{item.isAnonymous == 1}}">匿名评价</checkbox>
  21. <view class="desc">隐藏头像和昵称</view>
  22. </view>
  23. </view>
  24. <view class="box">
  25. <!-- 评价星级 -->
  26. <view class="item-star">
  27. <view class="label">评分</view>
  28. <comm-star value="5" type="write" bind:onStarChange="onStarChange"></comm-star>
  29. <view class="num">{{orderItemInfo.score}}.0</view>
  30. </view>
  31. </view>
  32. <view class="comm-btn" bindtap="submitComm">
  33. 发布
  34. </view>
  35. </view>