constructsite.wxml 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <view class="topbox" style="padding-top:{{top}}px;height:{{top*1+hgt*1}}px;">
  2. <view wx:if="{{!!type}}" class="leftindexbox clearfix" style="top: {{top*1+9}}px;">
  3. <image bindtap="golastap" class="leftgoto" src="../../../img/back.png"></image>
  4. </view>
  5. <view class="fontfpm fontr32 center maintitle titleStyle" style="line-height: 44px;padding-left:{{type==3?'32px':'25rpx'}};">{{siteobj.name}}</view>
  6. </view>
  7. <view class="topcoverbox" style="margin-top:{{top*1+hgt*1}}px;">
  8. <image mode="widthFix" src="{{siteobj.cover}}"></image>
  9. </view>
  10. <view class="titlebox">
  11. <view class="fontfpb bold fontr32 color333 lhr44">{{siteobj.name}}</view>
  12. <view class="startimebox fontr18 color999 lhr40 fontfpr">2022-10-11开工</view>
  13. <view class="casemsgbox clearfix fontr24 tcenter ">
  14. <view class="clearfix color333 fontfpm lhr40">
  15. <view class="pull-left width25">户型</view>
  16. <view class="pull-left width30_">风格</view>
  17. <view class="pull-left width22_">面积</view>
  18. <view class="pull-left width23_">设计师</view>
  19. </view>
  20. <view class="clearfix color28A1FF fontr28 fontfpr lhr32 casepricebox">
  21. <view class="pull-left width25">{{siteobj.housetype?siteobj.housetype.name:'未知'}}</view>
  22. <view class="pull-left width30_">{{siteobj.style?siteobj.style.name:'未知'}}</view>
  23. <view class="pull-left width22_">{{siteobj.area?siteobj.area:'未知'}}㎡</view>
  24. <view class="pull-left width23_">{{siteobj.designer?siteobj.designer.name:'未知'}}</view>
  25. </view>
  26. </view>
  27. </view>
  28. <view class="stepbox">
  29. <view class="steptitle fontfpb bold color333 fontr32 lhr44">施工进度</view>
  30. <view class="clearfix sitestep">
  31. <view wx:for="{{siteobj.step_list}}" wx:for-item="sitem" wx:for-index='sidx' class="pull-left everysteps width20_ tcenter {{sitem.upload==1||sitem.need_upload==1?'laststeps':''}}">
  32. <view class="stepnum fontr18 lhr28">
  33. <!-- {{sitem.upload==1?'✔':sidx*1+1}} -->
  34. <block wx:if="{{sitem.upload==1}}">
  35. <image src="../../../img/duihaoicon.png" class="duihaoIcon" mode="widthFix"></image>
  36. </block>
  37. <block wx:else="">
  38. {{sidx*1+1}}
  39. </block>
  40. </view>
  41. <view class="fontr22 color333 lhr40">{{sitem.name}}</view>
  42. </view>
  43. </view>
  44. </view>
  45. <!-- <view wx:if="{{phoneFlag==true}}" class="unloginlayer">
  46. <button wx:if="{{phoneFlag==true}}" open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumberTap" class="articlebtn fontfpm center">
  47. <view class="inline-block articleview">
  48. <view class="pull-left">查看全部</view>
  49. <image class="pull-left" src="../../../img/down.png"></image>
  50. </view>
  51. </button>
  52. </view> -->
  53. <view wx:for="{{siteobj.step_list}}" wx:if="{{item.upload==1&&!phoneFlag}}" class="stepmsgbox">
  54. <view class="stepmsgtitbox clearfix">
  55. <view class="pull-left fontr32 fontfpb bold color333 lhr44">{{item.name}}</view>
  56. <view class="pull-left colorA6CAE0 fontr18 lhr44 mglr14">{{item.data.addtime}}更新</view>
  57. </view>
  58. <view class="contentbox mgtr20 colorccc fontr24 lhr40 ">{{item.data.content}}</view>
  59. <view wx:if="{{item.data.type=='img'||!item.data.type}}" class="mtr16 imgbox clearfix">
  60. <image wx:for="{{item.data.img}}" wx:for-index='sidx' data-idx="{{index}}" data-img="{{mitem}}" bindtap="looktap" wx:for-item="mitem" class="pull-left" src="{{mitem}}"></image>
  61. </view>
  62. <view wx:if="{{item.data.type=='video'}}" class="mtr16 videobox clearfix">
  63. <video-list id="myVideo" vidoesrc="{{item.data.video}}" poster="{{item.data.video_cover?item.data.video_cover:item.data.video+'?x-oss-process=video/snapshot,t_100,f_jpg,w_200,m_fast'}}" objectfit="contain" showProgress="{{true}}" showBottomProgress="{{true}}" showFullscreenBtn="{{true}}"/>
  64. </view>
  65. <view wx:if="{{item.data.type=='vr'}}" class="mtr16 imgbox clearfix">
  66. <view wx:for="{{item.data.vr}}" wx:for-item="vritem" class="pull-left relative">
  67. <image class="vr-img-link" mode="widthFix" src="{{vritem.vrfirstImg}}"></image>
  68. <view data-vr="{{vritem.vrUrl}}" class="vr-box" bindtap="openVRLink">
  69. <image data-vr="{{vritem.vrUrl}}" src="../../../img/interVr.png" class="vr-image" mode="widthFix"></image>
  70. </view>
  71. </view>
  72. </view>
  73. </view>
  74. <view style="width: 100%;height:160rpx;"></view>
  75. <!-- 添加客服 -->
  76. <block wx:if="{{!!shareobj.headimgurl||!!shareobj.nickname}}">
  77. <view class="clientBox" hidden="{{!showAction}}" bindtap="operateBtn">
  78. <view class="clientBox-avatar">
  79. <image src="{{shareobj.headimgurl}}"></image>
  80. </view>
  81. <view class="clientBox-text">咨询</view>
  82. </view>
  83. <view class="contactSales" hidden="{{showAction}}">
  84. <view class="contactSales-left">
  85. <image class="left-avatar" src="{{shareobj.headimgurl}}"></image>
  86. <view class="left-msg">
  87. <view class="left-name">
  88. <text>{{shareobj.name}}</text>
  89. <image class="nameCard" src="../../../img/nameCard12.png" bindtap="toPageNameCard"></image>
  90. </view>
  91. <view class="left-text">{{companyName}}</view>
  92. </view>
  93. </view>
  94. <view class="contactSales-right">
  95. <view class="right-box1" bindtap="callphonetap">
  96. <image class="rightmobile" src="../../../img/mobile121.png"></image>
  97. <text>电话预约</text>
  98. </view>
  99. <view class="right-box1" bindtap="prelooktap">
  100. <image class="rightmobile" src="../../../img/weixin12.png"></image>
  101. <text>微信咨询</text>
  102. </view>
  103. </view>
  104. </view>
  105. </block>
  106. <!-- 添加客服 -->
  107. <scheme priceflag='{{designPlan}}' rType="Construction" curId="{{cid}}" bind:run="closeDesigntap"></scheme>
  108. <mustlogin loginFlag="{{loginFlag}}" orgname="{{companyobj.company_name}}" logo="{{companyobj.logo}}" canIUseGetUserProfile="{{canIUseGetUserProfile}}" mobileflag="{{mobileflag}}" phoneflag="{{true}}" typenum="{{0}}" id="loginbox" bind:cancelPhone="cancelGetPhone" bind:run="login"></mustlogin>