| 123456789101112131415161718192021222324252627282930313233 |
- <view class="publishContainer">
- <view class='descInputBox'>
- <!-- <input class='descInput' placeholder='项目汇报' type='text' auto-focus='true' bindinput="bindKeyInput"></input> -->
- <!-- <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> -->
- <textarea class="textarea" disabled="true" value="{{inputValue}}" placeholder="{{placeholder}}" placeholder-class="placeholder" auto-focus="true" bindinput="bindKeyInput"></textarea>
- </view>
- <view class='photoBox'>
- <view class='scroll-list'>
- <block wx:for="{{photos}}" wx:for-item="photo" wx:key="key">
- <image class='item-img' data-photo='{{photo.fileName}}' src='{{photo.path}}' bindtap="imageViewEvent" mode='aspectFill'></image>
- </block>
- </view>
- </view>
- <!-- <view class='buttonBox'>
- <button type="primary" size="default" bindtap="sendPhoto">发布</button>
- </view> -->
- <!-- <view class="zan-popup {{ showPopup ? 'zan-popup--show' : ''}}">
- <view class="zan-popup__mask" bindtap="imageViewEvent"></view>
- <view class="zan-popup__container popup-example--center">
- <view class="zan-btns">
- <image src='{{url}}'></image>
- </view>
- </view>
- </view> -->
- </view>
- <modal title="图片" hidden="{{modalHidden}}" bindconfirm="modalConfirm" bindcancel="modalCandel">
- <view >
- <image class="image" src="{{url}}" mode='aspectFit'></image>
- </view>
- </modal>
|