83 lines
3.7 KiB
Plaintext
83 lines
3.7 KiB
Plaintext
<cover-view>
|
|
<!-- 发布者本人 -->
|
|
<cover-view class='fixfooter' wx:if="{{ isself }}">
|
|
<cover-view class='item'>
|
|
|
|
<cover-view bindtap='toindex' class='cells'>
|
|
<cover-image class='index' src="../../img/indexblack.png"></cover-image>
|
|
</cover-view>
|
|
<cover-view class='cells' bindtap="add_to_fav">
|
|
|
|
<cover-image class='star-bottom' src="../../img/star-yellow.png" wx:if="{{ isfav }}"></cover-image>
|
|
<cover-image class='star-bottom' src="../../img/staro.png" wx:if="{{ !isfav }}"></cover-image>
|
|
|
|
</cover-view>
|
|
<cover-view class='cells' bindtap="share_pic">
|
|
<cover-image class='share' src="../../img/share.png"></cover-image>
|
|
|
|
</cover-view>
|
|
<navigator class='cells' url="../edit/edit?uniqid={{ uniqid }}&token={{ token }}&types=edit">
|
|
<cover-image class='pen' src="../../img/pen.png"></cover-image>
|
|
|
|
</navigator>
|
|
</cover-view>
|
|
|
|
</cover-view>
|
|
|
|
<!-- 不是发布者本人 -->
|
|
<cover-view class='fixfooter' wx:if="{{ !isself }}">
|
|
<cover-view class='item'>
|
|
|
|
<cover-view bindtap='toindex' class='cells'>
|
|
<cover-image class='index' src="/img/indexblack.png"></cover-image>
|
|
</cover-view>
|
|
<cover-view class='cells' bindtap="add_to_fav">
|
|
<cover-image class='star-bottom' src="/img/star-yellow.png" wx:if="{{ isfav }}"></cover-image>
|
|
<cover-image class='star-bottom' src="/img/staro.png" wx:if="{{ !isfav }}"></cover-image>
|
|
</cover-view>
|
|
<cover-view class='cells' bindtap="share_pic">
|
|
<cover-image class='share' src="/img/share.png"></cover-image>
|
|
</cover-view>
|
|
|
|
</cover-view>
|
|
<!--来源为小程序 -->
|
|
<cover-view class='item phone' wx:if="{{ info.wechat || info.tel }}" bindtap="to_message">联系方式</cover-view>
|
|
<!--来源为论坛 -->
|
|
<!-- <view class='item phone' bindtap="call_us" wx:if="{{ info.tel && info.source==0 }}">
|
|
<form bindsubmit="send_form_id" report-submit='true' data-types="confirm" class='submit-form'>
|
|
<image class='call' src="/img/call.png"/> 打电话
|
|
<button form-type="submit"hover-class="none" type="default" size="mini"></button>
|
|
</form>
|
|
</view> -->
|
|
</cover-view>
|
|
|
|
<!--分享弹层 -->
|
|
<cover-view class='share-box' wx:if="{{share }}">
|
|
<cover-view class='whitebox' bindtap="close_share"></cover-view>
|
|
<cover-view class='box'>
|
|
<cover-view class='name'>分享</cover-view>
|
|
<cover-view wx:if="{{ show_naviagate }}" class='item' url="../share/share" bindtap="to_share" >
|
|
<cover-image class='download image' src="/img/download.png"></cover-image>
|
|
<cover-view>生成分享海报</cover-view>
|
|
</cover-view>
|
|
<!-- <view class='item' wx:if="{{ !show_naviagate }}" bindtap='save_pic'>
|
|
<image class='download' src="../../img/download.png"/>
|
|
生成分享海报
|
|
</view> -->
|
|
<button class='item' open-type="share">
|
|
<cover-image class='wechat image' src="/img/wechat.png"></cover-image>
|
|
<cover-view>转发给好友</cover-view>
|
|
</button>
|
|
</cover-view>
|
|
</cover-view>
|
|
|
|
<!--保存海报图层 -->
|
|
<cover-view class='share-box' wx:if="{{ show_share_box }}">
|
|
<cover-view class='whitebox' bindtap="close_share"></cover-view>
|
|
<cover-view class='box'>
|
|
<cover-view class='title'>海报已保存到系统相册</cover-view>
|
|
<cover-view class='tips'>快去分享给小伙伴们吧</cover-view>
|
|
<cover-view class='btn' bindtap="close_share">知道了</cover-view>
|
|
</cover-view>
|
|
</cover-view>
|
|
</cover-view> |