reportDetail.wxml 1.5 KB

123456789101112131415161718192021222324252627282930313233
  1. <view class="publishContainer">
  2. <view class='descInputBox'>
  3. <!-- <input class='descInput' placeholder='项目汇报' type='text' auto-focus='true' bindinput="bindKeyInput"></input> -->
  4. <!-- <textarea class="textarea" value="{{value}}" placeholder="{{placeholder}}" placeholder-class="placeholder" maxlength="300" auto-focus="true" auto-height="false" show-confirm-bar="true" bindinput="bindKeyInput"></textarea> -->
  5. <textarea class="textarea" disabled="true" value="{{inputValue}}" placeholder="{{placeholder}}" placeholder-class="placeholder" auto-focus="true" bindinput="bindKeyInput"></textarea>
  6. </view>
  7. <view class='photoBox'>
  8. <view class='scroll-list'>
  9. <block wx:for="{{photos}}" wx:for-item="photo" wx:key="key">
  10. <image class='item-img' data-photo='{{photo.fileName}}' src='{{photo.path}}' bindtap="imageViewEvent" mode='aspectFill'></image>
  11. </block>
  12. </view>
  13. </view>
  14. <!-- <view class='buttonBox'>
  15. <button type="primary" size="default" bindtap="sendPhoto">发布</button>
  16. </view> -->
  17. <!-- <view class="zan-popup {{ showPopup ? 'zan-popup--show' : ''}}">
  18. <view class="zan-popup__mask" bindtap="imageViewEvent"></view>
  19. <view class="zan-popup__container popup-example--center">
  20. <view class="zan-btns">
  21. <image src='{{url}}'></image>
  22. </view>
  23. </view>
  24. </view> -->
  25. </view>
  26. <modal title="图片" hidden="{{modalHidden}}" bindconfirm="modalConfirm" bindcancel="modalCandel">
  27. <view >
  28. <image class="image" src="{{url}}" mode='aspectFit'></image>
  29. </view>
  30. </modal>