comment.wxml 967B

1234567891011121314151617181920212223242526
  1. <!--index.wxml-->
  2. <view class="MainPage">
  3. <view class="textarea">
  4. <textarea placeholder="请输入评论" bindinput="FormInput" data-name="commentContent"></textarea>
  5. </view>
  6. <view class="photos">
  7. <view class="flex-h">
  8. <view class="flex-item">
  9. <view class="item" wx:for="{{FormData.imgArray}}" wx:for-index="idx" wx:for-item="item" wx:key="key">
  10. <image mode="aspectFit" src="{{item}}" class="centerLabel contain"></image>
  11. <text data-index="{{idx}}" bindtap="DeleteItem"></text>
  12. </view>
  13. <view class="addBtn" wx:if="{{FormData.imgArray.length < 4}}" bindtap="AddImage">
  14. <view class="centerLabel">
  15. <image mode="widthFix" src="/assets/images/icon35.png"></image>
  16. <text>相机/相册</text>
  17. </view>
  18. </view>
  19. </view>
  20. <text>可选4张</text>
  21. </view>
  22. </view>
  23. <view class="btn">
  24. <text bindtap="SubmitForm">发布</text>
  25. </view>
  26. </view>