uploadPics.wxml 1.0 KB

123456789101112131415161718192021222324252627282930
  1. <view class="bory gapleft inleft row crosscenter">
  2. <text>标题   </text>
  3. <input placeholder="请添加一个标题" bindinput="inputTitle" class="flexible"></input>
  4. </view>
  5. <view class="borbot gapleft inleft row">
  6. <view>
  7. <text>图片   </text>
  8. </view>
  9. <view class="row flexible wrap">
  10. <view class="themerad imgbox col center gaprt" wx:for="{{article.imgs}}" wx:key bindtap="clickImg" data-i="{{index}}">
  11. <image src="{{imgUrl + item.url}}" mode="aspectFit" class="full"></image>
  12. </view>
  13. <view class="themerad imgbox col center gaprt" bindtap="clickAddpic">
  14. <text>+</text>
  15. </view>
  16. </view>
  17. </view>
  18. <view class="borbot wrp row">
  19. <view>
  20. <text>正文   </text>
  21. </view>
  22. <view class="flexible">
  23. <textarea class="fullx" placeholder="文字符号限制100字之内" maxlength="100" bindinput="inputContent"></textarea>
  24. </view>
  25. </view>
  26. <view class="row bot maincenter flexible" style="padding-bottom: 2.4rem">
  27. <view class="btn danger" bindtap="clickUpload">提交审核</view>
  28. </view>