123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <block wx:if="{{isPrivacy}}">
- <web-view wx:if="{{(platform!='windows'&&platform!='mac'&&!!type)||!type}}" bindmessage="bindmessage" src="{{webUrl}}"></web-view>
- <cover-view class="userbox" wx:if="{{userflag}}"></cover-view>
- <!-- 小红屋 -->
- <cover-view class="rightpersonbox" wx:if="{{type==1&&!!personobj.name&&platform!='windows'&&platform!='mac'&&xhwwidth}}" style="width:{{xhwwidth}}px;bottom:{{bottom}}px;">
- <cover-image class="headimg" src="{{personobj.headimgurl}}"></cover-image>
- <cover-view class="namebox">{{personobj.name}}</cover-view>
- <cover-image bindtap="callphonetap" class="mobileimg" src="../../img/mobile12.png"></cover-image>
- </cover-view>
- <!-- 酷家乐 -->
- <cover-view class="contactSales" wx:if="{{type==2&&platform!='windows'&&platform!='mac'}}">
- <cover-view class="contactSales-left">
- <cover-image class="left-avatar" src="{{personobj.headimgurl?personobj.headimgurl:'/img/default.png'}}"></cover-image>
- <cover-view class="left-msg">
- <cover-view class="left-name">
- <cover-view class="colorfff">{{personobj.name}}</cover-view>
- <cover-image class="nameCard" src="../../img/nameCard12.png" bindtap="toPageNameCard"></cover-image>
- </cover-view>
- <cover-view class="left-text">{{companyobj.company_name}}</cover-view>
- </cover-view>
- </cover-view>
- <cover-view class="contactSales-right">
- <cover-view class="right-box1" bindtap="callphonetap">
- <cover-image class="rightmobile" src="../../img/mobile121.png"></cover-image>
- <cover-view class="">电话预约</cover-view>
- </cover-view>
- <cover-view class="right-box1" bindtap="prelookimgtap">
- <cover-image class="rightmobile" src="../../img/weixin12.png"></cover-image>
- <cover-view>微信咨询</cover-view>
- </cover-view>
- </cover-view>
- </cover-view>
- <cover-view wx:if="{{platform!='windows'&&platform!='mac'&&(type==1||type==4)&&showTask}}" bindtap="casesharetap" class="housesharebox tcenter">
- <cover-image src="/img/bshareicon.png"></cover-image>
- </cover-view>
- <cover-view wx:if="{{platform!='windows'&&platform!='mac'&&type==5&&showTask}}" bindtap="casesharetap" class="housesharebox tcenter" style="bottom: 158px;">
- <cover-image src="/img/bshareicon.png"></cover-image>
- <!-- <button open-type="share">分享</button> -->
- </cover-view>
- <cover-view wx:if="{{platform!='windows'&&platform!='mac'&&type==2&&showTask}}" bindtap="casesharetap" class="panosharebox tcenter">
- <cover-image src="/img/bshareicon.png"></cover-image>
- <cover-view>分享</cover-view>
- </cover-view>
- <cover-view wx:if="{{platform!='windows'&&platform!='mac'&&type==3&&showTask}}" bindtap="casesharetap" class="tsharebox tcenter">
- <cover-image src="/img/bshareicon.png"></cover-image>
- </cover-view>
- <cover-view wx:if="{{type==3&&platform!='windows'&&platform!='mac'}}" bindtap="callphonetap" class="jeqjcoverphonebox">
- <cover-view class="jeqjphonebox">
- <cover-image src="../../img/mobile12.png"></cover-image>
- </cover-view>
- </cover-view>
- <!-- <cover-view wx:if="{{type==2&&platform!='windows'&&platform!='mac'}}" class="kjlcoverphonebox">
- <button open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumberTap">领取设计方案></button>
- </cover-view> -->
- <mustlogin wx:if="{{platform!='windows'&&platform!='mac'}}" loginFlag="{{loginFlag}}" mobileflag="{{mobileflag}}" orgname="{{companyobj.company_name}}" logo="{{companyobj.logo}}" id="loginbox" bind:run="login"></mustlogin>
- <!-- PC上的样式 -->
- <image wx:if="{{platform=='windows'|| platform=='mac'}}" class="pcunlookicon" src="{{imgUrl}}xcx/aaa/pcunlookicon.png"></image>
- <view wx:if="{{platform=='windows'|| platform=='mac'}}" class="tcenter mgt16 fontr28 lhr36 color210605">该VR只支持在手机端浏览</view>
- <wshare imgurlflag='{{true}}' wshareshow="{{wshareshow}}" bind:poster="setpostertap" bind:sendfriendcircle="sendfriendtap" bind:shareurl="shareurltap" ></wshare>
- </block>
- <!-- 隐私协议授权 -->
- <privacy-popup bind:agree="agreePrivacy"></privacy-popup>
|