houses-info.vue 25 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037
  1. <template>
  2. <view class="houses-info">
  3. <view class="index-bg"></view>
  4. <view class="swiper-box">
  5. <u-swiper :list="swiperlisi" height="367" border-radius="20"></u-swiper>
  6. </view>
  7. <view class="houses-tabs u-flex u-row-between">
  8. <view class="tabs-item u-flex-col u-col-center" @click="opendijia">
  9. <image src="../../static/images/tabs1.png" mode=""></image>
  10. <text>底价详情</text>
  11. </view>
  12. <view class="tabs-item u-flex-col u-col-center" @click="torizhao">
  13. <image src="../../static/images/tabs2.png" mode=""></image>
  14. <text>日照测评</text>
  15. </view>
  16. <view class="tabs-item u-flex-col u-col-center" @click="toyifang">
  17. <image src="../../static/images/tabs3.png" mode=""></image>
  18. <text>一房一价</text>
  19. </view>
  20. <view class="tabs-item u-flex-col u-col-center" @click="tovideo">
  21. <image src="../../static/images/tabs4.png" mode=""></image>
  22. <text>抖音视频</text>
  23. </view>
  24. </view>
  25. <view class="houses-box">
  26. <view class="box-header u-flex u-row-between">
  27. <text>{{detail.name}}</text>
  28. <text @click="toinfo()">详情>></text>
  29. </view>
  30. <view class="box-tips">
  31. 备案名:{{detail.record_name}}
  32. </view>
  33. <view class="u-flex price">
  34. <text>参考均价</text>
  35. <text>{{detail.avg_price}}元/㎡</text>
  36. </view>
  37. <view class="houses-data u-flex u-flex-wrap u-row-between">
  38. <view class="data-item u-flex-col u-col-center">
  39. <text>{{detail.floor_area}}</text>
  40. <text>占地面积</text>
  41. </view>
  42. <view class="data-item u-flex-col u-col-center">
  43. <text>{{detail.covered_area}}</text>
  44. <text>总建筑面积</text>
  45. </view>
  46. <view class="data-item u-flex-col u-col-center">
  47. <text>{{detail.house_min_area}}㎡-{{detail.house_max_area}}㎡</text>
  48. <text>户型面积</text>
  49. </view>
  50. <view class="data-item u-flex-col u-col-center">
  51. <text>{{detail.greening_rate}}</text>
  52. <text>绿化率</text>
  53. </view>
  54. <view class="data-item u-flex-col u-col-center">
  55. <text>{{detail.plot_ratio}}</text>
  56. <text>容积率</text>
  57. </view>
  58. </view>
  59. <view class="houses-label u-flex u-flex-wrap">
  60. <text v-for="(item,index) in detail.trait" :key="index"
  61. :style="{color:color[index % 5],border:`2rpx solid ${color[index % 4]}`}">{{item}}</text>
  62. </view>
  63. <view class="kaifa-box">
  64. <view style="margin-bottom: 24rpx;">开盘日期: {{detail.sale_time}}</view>
  65. <view>开发商: {{detail.developers}}</view>
  66. </view>
  67. </view>
  68. <view class="address-box u-flex">
  69. <u-icon name="map-fill" color="#131415"></u-icon>
  70. <text class="text">{{detail.project_address}}</text>
  71. </view>
  72. <view class="fangchan-wenda" v-if="detail.comment_switch == 1">
  73. <view class="wenda-title u-flex u-row-between">
  74. <text>房产问答</text>
  75. <text @click="tomore" v-if="pinglundata.id">更多问答>></text>
  76. </view>
  77. <view v-if="pinglundata.id" @click="topingluninfo">
  78. <view class="wenda-box">
  79. <view class="box-top u-flex u-row-between">
  80. <text class="text1">问</text>
  81. <image class="img" :src="pinglundata.user_headimg" mode=""></image>
  82. <text class="text2 u-flex-1">{{pinglundata.user_name}}</text>
  83. <text class="text3">{{pinglundata.create_time}}</text>
  84. </view>
  85. <view class="table-header u-flex u-row-center" v-if="pinglundata.quiz_type == 2">
  86. <input type="text" placeholder="请输入" class="u-flex-1"
  87. :value="JSON.parse(pinglundata.content).title" :disabled="true">
  88. </view>
  89. <scroll-view v-if="pinglundata.quiz_type == 2" scroll-y="true" scroll-x="true" class="wenda-table">
  90. <view class="table-row" v-for="(a,b) in JSON.parse(pinglundata.content).list" :key="b">
  91. <view class="table-col u-line-1" v-for="(c,d) in a" :key="d">{{c.value}}</view>
  92. </view>
  93. </scroll-view>
  94. <view v-if="pinglundata.quiz_type == 1" class="wenda-text">
  95. {{pinglundata.content}}
  96. </view>
  97. </view>
  98. <view class="wenda-box" v-if="pinglundata.apply_info">
  99. <view class="box-top u-flex u-row-between">
  100. <text class="text1" style="background-color: #04B578;">答</text>
  101. <image class="img" :src="pinglundata.apply_info.user_headimg" mode=""></image>
  102. <text class="text2 u-flex-1">{{pinglundata.apply_info.user_name}}</text>
  103. <text class="text3">{{pinglundata.apply_info.create_time}}</text>
  104. </view>
  105. <view class="wenda-text">
  106. {{pinglundata.apply_info.content}}
  107. </view>
  108. </view>
  109. <view class="wenda-more">
  110. {{pinglundata.apply_num}}人参与回复
  111. </view>
  112. </view>
  113. <view v-else class="not-wenda u-flex-col u-col-center u-row-center">
  114. <image class="img" src="../../static/images/not-wenda.png" mode=""></image>
  115. <text class="text1">当前楼房还没有问答?</text>
  116. <text class="text2" @click="tomore">前往发布提问 >></text>
  117. </view>
  118. </view>
  119. <view class="map-box" v-if="detail.latitude && detail.longitude">
  120. <view class="map-title">
  121. 区域地图
  122. </view>
  123. <map @click="tomap" style="width: 100%;height: 376rpx;" :latitude="latitude" :longitude="longitude"
  124. :markers="[{id:1,latitude:latitude,longitude:longitude,width:20,height:30}]"></map>
  125. </view>
  126. <view class="huxing-box" v-if="detail.house_type.length > 0">
  127. <view class="huixng-title">
  128. 在售户型
  129. </view>
  130. <view class="scroll-box1" style="position: relative;">
  131. <u-icon name="arrow-left" style="position: absolute;top: 100rpx;left: -20rpx;z-index: 1;"></u-icon>
  132. <scroll-view scroll-x="true" class="huxing-list">
  133. <view class="huxing-item" v-for="(item,index) in detail.house_type" :key="index">
  134. <image :src="item.logo" @click="openimg(item)" class="huxing-img" mode=""></image>
  135. <view class="name">
  136. {{item.house_type_name}}
  137. </view>
  138. <view class="jianyi">
  139. 建面:约{{item.area}}㎡
  140. </view>
  141. </view>
  142. </scroll-view>
  143. <u-icon name="arrow-right" style="position: absolute;top: 100rpx;right: -20rpx;z-index: 1;"></u-icon>
  144. </view>
  145. </view>
  146. <view class="" style="height: 170rpx;"></view>
  147. <view class="houses-btn u-flex u-row-between">
  148. <text @click="opentel" :style="{'width':(preempt_switch != 1 ? '328rpx':'218rpx')}" v-if="online_consultant_switch==1">隐私电话</text>
  149. <text @click="baobei" v-if="preempt_switch == 1">客户报备</text>
  150. <text @click="tochat" :style="{'width':(preempt_switch != 1 ? '328rpx':'218rpx')}" v-if="online_consultant_switch==1">在线咨询</text>
  151. </view>
  152. <u-popup v-model="showdijia" mode="center" background="rgba(0,0,0,0)">
  153. <view class="dijia-box u-flex-col u-col-center">
  154. <image class="dijia-img" src="../../static/images/dijia-bg.png" mode=""></image>
  155. <view class="u-flex-col u-col-center dijia-text">
  156. <text>{{detail.discounts_policy}}</text>
  157. </view>
  158. <u-icon name="close-circle-fill" color="#fff" size="100" @click="showdijia = false"></u-icon>
  159. </view>
  160. </u-popup>
  161. <u-popup v-model="showtocall" mode="center" background="rgba(0,0,0,0)">
  162. <view class="tocall-box u-flex-col u-col-center">
  163. <image class="tocall-img" src="../../static/images/popup1-1.png" mode=""></image>
  164. <view class="u-flex-col u-col-center tocall-text">您是否进行呼叫?</view>
  165. <view class="u-flex u-row-between tocall-btn">
  166. <text @click="showtocall = false">取消</text>
  167. <text @click="totel">确定</text>
  168. </view>
  169. </view>
  170. </u-popup>
  171. <u-popup v-model="showlogin" mode="center" background="rgba(0,0,0,0)">
  172. <view class="tocall-box u-flex-col u-col-center">
  173. <image class="tocall-img" src="../../static/images/popup1-1.png" mode=""></image>
  174. <view class="u-flex-col u-col-center tocall-text">你目前处于未登录状态请前往登录</view>
  175. <view class="u-flex u-row-between tocall-btn">
  176. <text @click="showlogin = false">取消</text>
  177. <text @click="tologin">确定</text>
  178. </view>
  179. </view>
  180. </u-popup>
  181. <u-popup v-model="shownotkaifang" mode="center" background="rgba(0,0,0,0)" :closeable="true" closeTop="80rpx"
  182. closeIconColor="#fff">
  183. <view class="tocall-box u-flex-col u-col-center">
  184. <image class="tocall-img" src="../../static/images/popup1-1.png" mode=""></image>
  185. <view class="u-flex-col u-col-center tocall-text" style="margin-top: 50rpx;">
  186. <text>此板块暂未开放</text>
  187. <text>敬请期待</text>
  188. </view>
  189. </view>
  190. </u-popup>
  191. <gf-chat ref="chatlist" @over="getuser"></gf-chat>
  192. <gf-tel ref="tellist" @over="getuser"></gf-tel>
  193. </view>
  194. </template>
  195. <script>
  196. import {
  197. mapState
  198. } from "vuex"
  199. export default {
  200. //分享
  201. onShareAppMessage(res) {
  202. this.$u.get('/api/Member/transmit').then(res => {
  203. })
  204. return {
  205. title: this.detail.name,
  206. path: "pages/index/houses-info?id="+this.id ,
  207. imageUrl: this.swiperlisi[0],
  208. }
  209. },
  210. //分享朋友圈
  211. onShareTimeline(res) {
  212. this.$u.get('/api/Member/transmit').then(res => {
  213. })
  214. return {
  215. title: this.detail.name,
  216. path: "pages/index/houses-info?id="+this.id,
  217. imageUrl: this.swiperlisi[0],
  218. }
  219. },
  220. data() {
  221. return {
  222. swiperlisi: [],
  223. online_consultant_switch:"",
  224. showdijia: false,
  225. showtocall: false,
  226. id: '',
  227. detail: {
  228. house_type: []
  229. },
  230. showlogin: false,
  231. pinglundata: {},
  232. worker_id: 0,
  233. worker_phone: '',
  234. worker_hx_username: '',
  235. sunshine_info: 0,
  236. build_info: 0,
  237. video_list: 0,
  238. configs: {},
  239. shownotkaifang: false,
  240. detailName: "",
  241. preempt_switch:0
  242. }
  243. },
  244. onLoad(option) {
  245. this.id = option.id
  246. this.detailName = option.name
  247. this.getdata()
  248. this.getpinglun()
  249. this.configs = uni.getStorageSync("config")
  250. this.platform_config()
  251. },
  252. onReady() {
  253. },
  254. onShow() {
  255. if (uni.getStorageSync("token")) {
  256. this.getuser()
  257. }
  258. },
  259. computed: {
  260. ...mapState(['config', 'defaultcity']),
  261. latitude() {
  262. return Number(this.detail.latitude) > Number(this.detail.longitude) ? this.detail.longitude : this.detail
  263. .latitude
  264. },
  265. longitude() {
  266. return Number(this.detail.latitude) > Number(this.detail.longitude) ? this.detail.latitude : this.detail
  267. .longitude
  268. },
  269. color() {
  270. return this.$color
  271. },
  272. },
  273. methods: {
  274. opendijia() {
  275. if (!this.detail.discounts_policy) {
  276. // this.$u.toast("此板块暂未开放,敬请期待")
  277. this.shownotkaifang = true
  278. return
  279. }
  280. if (!uni.getStorageSync("token")) {
  281. if (this.configs.floor_price_switch == 1) {
  282. if (this.configs.floor_price_num > 0) {
  283. this.configs.floor_price_num = this.configs.floor_price_num - 1
  284. this.showdijia = true
  285. uni.setStorageSync("config", this.configs)
  286. this.$u.post('/api/Property/click_discounts_policy', {
  287. id: this.id
  288. })
  289. } else {
  290. this.showlogin = true
  291. }
  292. } else {
  293. this.showlogin = true
  294. }
  295. return
  296. }
  297. this.$u.post('/api/Property/click_discounts_policy', {
  298. id: this.id
  299. })
  300. this.showdijia = true
  301. },
  302. getuser() {
  303. this.$u.post('/api/Member/member_info').then(res => {
  304. this.worker_id = res.data.worker_id
  305. this.worker_phone = res.data.worker_phone
  306. this.worker_hx_username = res.data.worker_hx_username
  307. })
  308. },
  309. platform_config() {
  310. this.$u.post('/api/Index/platform_config').then(res => {
  311. this.online_consultant_switch = res.data.online_consultant_switch
  312. })
  313. },
  314. topingluninfo() {
  315. uni.navigateTo({
  316. url: "/pagesA/index/wenda-info?id=" + this.pinglundata.id + "&louid=" + this.id
  317. })
  318. },
  319. getpinglun() {
  320. this.$u.post('/api/Comment/consult_comment_list', {
  321. id: this.id
  322. }).then(res => {
  323. if (res.code == 1) {
  324. this.pinglundata = res.data[0] || {}
  325. }
  326. })
  327. },
  328. tomore() {
  329. uni.navigateTo({
  330. url: "/pagesA/index/wenda-list?id=" + this.id
  331. })
  332. },
  333. tomap() {
  334. uni.openLocation({
  335. latitude: Number(this.latitude),
  336. longitude: Number(this.longitude)
  337. })
  338. },
  339. openimg(item) {
  340. uni.previewImage({
  341. urls: [item.logo]
  342. })
  343. },
  344. tologin() {
  345. this.showlogin = false
  346. uni.navigateTo({
  347. url: "/pages/mine/login"
  348. })
  349. },
  350. opentel() {
  351. if (uni.getStorageSync("token")) {
  352. this.showtocall = true
  353. } else {
  354. this.showlogin = true
  355. }
  356. },
  357. getdata() {
  358. this.$u.post('/api/Property/property_detail', {
  359. id: this.id
  360. }).then(res => {
  361. this.swiperlisi = res.data.banner
  362. this.detail = res.data
  363. this.detailName = res.data.name
  364. this.preempt_switch = res.data.preempt_switch
  365. })
  366. this.$u.get('/api/Property/sunshine_info', {
  367. id: this.id
  368. }).then(res => {
  369. this.sunshine_info = res.data.build_info.length
  370. })
  371. this.$u.post('/api/Property/build_info', {
  372. id: this.id
  373. }).then(res => {
  374. this.build_info = res.data.length
  375. })
  376. this.$u.post('/api/Property/video_list', {
  377. id: this.id,
  378. page: 1,
  379. page_num: 20
  380. }).then(res => {
  381. this.video_list = res.data.length
  382. })
  383. },
  384. tovideo() {
  385. if (this.video_list == 0) {
  386. // this.$u.toast("此板块暂未开放,敬请期待")
  387. this.shownotkaifang = true
  388. return
  389. }
  390. uni.navigateTo({
  391. url: "./video?id=" + this.id
  392. })
  393. },
  394. toinfo() {
  395. uni.navigateTo({
  396. url: "./info?id=" + this.id
  397. })
  398. },
  399. tochat() {
  400. if (uni.getStorageSync("token")) {
  401. if (this.worker_id == 0) {
  402. this.$refs.chatlist.open(this.id)
  403. } else {
  404. this.$u.post('/api/Member/consult_record', {
  405. type: 2
  406. })
  407. uni.navigateTo({
  408. url: "/pages/index/chat?hx_username=" + this.worker_hx_username + "&worker_id=" + this
  409. .worker_id
  410. })
  411. }
  412. } else {
  413. this.showlogin = true
  414. }
  415. },
  416. baobei() {
  417. uni.setStorageSync('detailName', this.detail.name);
  418. if (uni.getStorageSync("token")) {
  419. uni.navigateTo({
  420. url: "/pages/index/report?id=" + this.id
  421. })
  422. } else {
  423. this.showlogin = true
  424. }
  425. },
  426. toyifang() {
  427. if (this.build_info == 0) {
  428. // this.$u.toast("此板块暂未开放,敬请期待")
  429. this.shownotkaifang = true
  430. return
  431. }
  432. if (!uni.getStorageSync("token")) {
  433. if (this.configs.room_price_switch == 1) {
  434. if (this.configs.room_price_num > 0) {
  435. this.configs.room_price_num = this.configs.room_price_num - 1
  436. uni.navigateTo({
  437. url: "/pagesA/index/yifang?id=" + this.id
  438. })
  439. uni.setStorageSync("config", this.configs)
  440. } else {
  441. this.showlogin = true
  442. }
  443. } else {
  444. this.showlogin = true
  445. }
  446. return
  447. }
  448. uni.navigateTo({
  449. url: "/pagesA/index/yifang?id=" + this.id
  450. })
  451. },
  452. torizhao() {
  453. if (this.sunshine_info == 0) {
  454. // this.$u.toast("此板块暂未开放,敬请期待")
  455. this.shownotkaifang = true
  456. return
  457. }
  458. if (!uni.getStorageSync("token")) {
  459. if (this.configs.sunlight_appraisal_switch == 1) {
  460. if (this.configs.sunlight_appraisal_num > 0) {
  461. this.configs.sunlight_appraisal_num = this.configs.sunlight_appraisal_num - 1
  462. uni.navigateTo({
  463. url: "/pagesA/index/rizhao?id=" + this.id
  464. })
  465. uni.setStorageSync("config", this.configs)
  466. } else {
  467. this.showlogin = true
  468. }
  469. } else {
  470. this.showlogin = true
  471. }
  472. return
  473. }
  474. uni.navigateTo({
  475. url: "/pagesA/index/rizhao?id=" + this.id
  476. })
  477. },
  478. totel() {
  479. if (uni.getStorageSync("token")) {
  480. this.showtocall = false
  481. if (this.worker_id == 0) {
  482. this.$refs.tellist.open(this.id)
  483. } else {
  484. this.$u.post('/api/Member/consult_record', {
  485. type: 1
  486. })
  487. uni.makePhoneCall({
  488. phoneNumber: this.worker_phone
  489. })
  490. }
  491. } else {
  492. this.showlogin = true
  493. }
  494. }
  495. }
  496. }
  497. </script>
  498. <style lang="scss">
  499. page {
  500. background-color: #F6F6F6;
  501. }
  502. .houses-info {
  503. position: relative;
  504. padding: 1rpx 0;
  505. .fangchan-wenda {
  506. width: 702rpx;
  507. background: #FFFFFF;
  508. border-radius: 20rpx;
  509. margin: 20rpx auto;
  510. padding: 0 24rpx 20rpx 24rpx;
  511. .wenda-more {
  512. font-size: 24rpx;
  513. font-family: PingFangSC-Regular, PingFang SC;
  514. font-weight: 400;
  515. color: #666666;
  516. padding: 0 20rpx;
  517. }
  518. .not-wenda {
  519. height: 280rpx;
  520. .img {
  521. width: 142rpx;
  522. height: 142rpx;
  523. }
  524. .text1 {
  525. font-size: 24rpx;
  526. font-family: PingFangSC-Regular, PingFang SC;
  527. font-weight: 400;
  528. color: #CCCCCC;
  529. margin-bottom: 8rpx;
  530. }
  531. .text2 {
  532. font-size: 24rpx;
  533. font-family: PingFangSC-Regular, PingFang SC;
  534. font-weight: 400;
  535. color: #1677FF;
  536. }
  537. }
  538. .wenda-box {
  539. padding: 0 20rpx;
  540. .table-header {
  541. width: 620rpx;
  542. height: 94rpx;
  543. border: 2rpx solid #F0F0F0;
  544. input {
  545. text-align: center;
  546. color: red;
  547. }
  548. }
  549. .wenda-table {
  550. width: 620rpx;
  551. max-height: 378rpx;
  552. border-radius: 16rpx;
  553. margin-bottom: 20rpx;
  554. .table-row {
  555. white-space: nowrap;
  556. height: 94rpx;
  557. .table-col {
  558. width: 155rpx;
  559. line-height: 94rpx;
  560. height: 94rpx;
  561. border-bottom: 2rpx solid #F0F0F0;
  562. border-left: 2rpx solid #F0F0F0;
  563. padding: 0 16rpx;
  564. display: inline-block;
  565. font-size: 24rpx;
  566. font-family: PingFangSC-Regular, PingFang SC;
  567. font-weight: 400;
  568. color: rgba(102, 102, 102, 0.88);
  569. }
  570. .table-col:last-child {
  571. border-right: 2rpx solid #F0F0F0;
  572. }
  573. }
  574. .table-row:last-child {
  575. .table-col {
  576. border-bottom: 2rpx solid #F0F0F0;
  577. }
  578. }
  579. }
  580. .wenda-text {
  581. font-size: 24rpx;
  582. font-family: PingFangSC-Regular, PingFang SC;
  583. font-weight: 400;
  584. color: #666666;
  585. margin-bottom: 20rpx;
  586. }
  587. .box-top {
  588. margin-bottom: 20rpx;
  589. .text2 {
  590. font-size: 24rpx;
  591. font-family: PingFangSC-Regular, PingFang SC;
  592. font-weight: 400;
  593. color: #666666;
  594. margin-right: 20rpx;
  595. }
  596. .text3 {
  597. font-size: 24rpx;
  598. font-family: PingFangSC-Regular, PingFang SC;
  599. font-weight: 400;
  600. color: #999999;
  601. }
  602. .img {
  603. width: 36rpx;
  604. height: 36rpx;
  605. border-radius: 100rpx;
  606. margin: 0 20rpx;
  607. }
  608. .text1 {
  609. width: 36rpx;
  610. line-height: 36rpx;
  611. background: #1677FF;
  612. border-radius: 8rpx;
  613. text-align: center;
  614. font-size: 24rpx;
  615. font-family: PingFangSC-Semibold, PingFang SC;
  616. font-weight: 600;
  617. color: #FFFFFF;
  618. }
  619. }
  620. }
  621. .wenda-title {
  622. padding: 20rpx 0 30rpx 0;
  623. text:first-child {
  624. font-size: 28rpx;
  625. font-family: PingFangSC-Medium, PingFang SC;
  626. font-weight: 500;
  627. color: #131415;
  628. }
  629. text:last-child {
  630. font-size: 24rpx;
  631. font-family: PingFangSC-Medium, PingFang SC;
  632. font-weight: 500;
  633. color: #1677FF;
  634. }
  635. }
  636. }
  637. .tocall-box {
  638. position: relative;
  639. .tocall-img {
  640. width: 650rpx;
  641. height: 476rpx;
  642. }
  643. .tocall-btn {
  644. position: absolute;
  645. bottom: 70rpx;
  646. left: 0;
  647. width: 100%;
  648. padding: 0 48rpx;
  649. text:first-child {
  650. width: 254rpx;
  651. line-height: 80rpx;
  652. background: #FFA120;
  653. border-radius: 20rpx;
  654. text-align: center;
  655. font-size: 34rpx;
  656. font-family: PingFangSC-Medium, PingFang SC;
  657. font-weight: 500;
  658. color: #FFFFFF;
  659. }
  660. text:last-child {
  661. width: 254rpx;
  662. line-height: 80rpx;
  663. background: #1F7EFF;
  664. border-radius: 20rpx;
  665. text-align: center;
  666. font-size: 34rpx;
  667. font-family: PingFangSC-Medium, PingFang SC;
  668. font-weight: 500;
  669. color: #FFFFFF;
  670. }
  671. }
  672. .tocall-text {
  673. text-align: center;
  674. font-size: 24rpx;
  675. font-family: PingFangSC-Regular, PingFang SC;
  676. font-weight: 400;
  677. color: #999999;
  678. position: absolute;
  679. top: 244rpx;
  680. left: 0;
  681. z-index: 10;
  682. width: 100%;
  683. }
  684. }
  685. .dijia-box {
  686. position: relative;
  687. .dijia-text {
  688. position: absolute;
  689. z-index: 10;
  690. top: 120rpx;
  691. left: 0;
  692. width: 100%;
  693. font-size: 28rpx;
  694. font-family: PingFangSC-Medium, PingFang SC;
  695. font-weight: 500;
  696. color: #EC9234;
  697. padding: 0 150rpx;
  698. }
  699. .dijia-img {
  700. width: 650rpx;
  701. height: 520rpx;
  702. margin-bottom: 52rpx;
  703. }
  704. }
  705. .houses-btn {
  706. position: fixed;
  707. bottom: 0;
  708. left: 0;
  709. width: 750rpx;
  710. height: 166rpx;
  711. background: #FFFFFF;
  712. padding: 0 24rpx 54rpx 24rpx;
  713. z-index: 1;
  714. text:first-child {
  715. width: 218rpx;
  716. line-height: 84rpx;
  717. background: #FFA120;
  718. border-radius: 20rpx;
  719. text-align: center;
  720. font-size: 28rpx;
  721. font-family: PingFangSC-Regular, PingFang SC;
  722. font-weight: 400;
  723. color: #FFFFFF;
  724. }
  725. text:nth-child(2) {
  726. width: 218rpx;
  727. line-height: 84rpx;
  728. background: #5BC22A;
  729. border-radius: 20rpx;
  730. text-align: center;
  731. font-size: 28rpx;
  732. font-family: PingFangSC-Regular, PingFang SC;
  733. font-weight: 400;
  734. color: #FFFFFF;
  735. }
  736. text:last-child {
  737. width: 218rpx;
  738. line-height: 84rpx;
  739. background: #1F7EFF;
  740. border-radius: 20rpx;
  741. text-align: center;
  742. font-size: 28rpx;
  743. font-family: PingFangSC-Regular, PingFang SC;
  744. font-weight: 400;
  745. color: #FFFFFF;
  746. }
  747. }
  748. .huxing-box {
  749. width: 702rpx;
  750. // height: 450rpx;
  751. background: #FFFFFF;
  752. border-radius: 20rpx;
  753. margin: 20rpx auto;
  754. padding: 0 20rpx 30rpx 20rpx;
  755. .huxing-list {
  756. white-space: nowrap;
  757. .huxing-item {
  758. margin-right: 20rpx;
  759. display: inline-block;
  760. .jianyi {
  761. font-size: 24rpx;
  762. font-family: PingFangSC-Regular, PingFang SC;
  763. font-weight: 400;
  764. color: #999999;
  765. }
  766. .name {
  767. margin: 24rpx 0 10rpx 0;
  768. font-size: 24rpx;
  769. font-family: PingFangSC-Medium, PingFang SC;
  770. font-weight: 500;
  771. color: #333333;
  772. }
  773. .huxing-img {
  774. width: 206rpx;
  775. height: 206rpx;
  776. }
  777. }
  778. }
  779. .huixng-title {
  780. padding: 24rpx 0;
  781. font-size: 28rpx;
  782. font-family: PingFangSC-Medium, PingFang SC;
  783. font-weight: 500;
  784. color: #131415;
  785. }
  786. }
  787. .map-box {
  788. width: 702rpx;
  789. background: #FFFFFF;
  790. border-radius: 20rpx;
  791. margin: 20rpx auto;
  792. padding: 0 20rpx 24rpx 20rpx;
  793. .map-title {
  794. padding: 24rpx 0;
  795. font-size: 28rpx;
  796. font-family: PingFangSC-Medium, PingFang SC;
  797. font-weight: 500;
  798. color: #131415;
  799. }
  800. }
  801. .address-box {
  802. width: 702rpx;
  803. height: 82rpx;
  804. background: #FFFFFF;
  805. border-radius: 20rpx;
  806. margin: 20rpx auto;
  807. padding: 0 22rpx;
  808. .text {
  809. flex: 1;
  810. margin-left: 10rpx;
  811. font-size: 24rpx;
  812. font-family: PingFangSC-Regular, PingFang SC;
  813. font-weight: 400;
  814. color: #131415;
  815. }
  816. }
  817. .houses-box {
  818. width: 702rpx;
  819. height: 594rpx;
  820. background: #FFFFFF;
  821. border-radius: 20rpx;
  822. margin: 20rpx auto;
  823. padding: 0 20rpx;
  824. .kaifa-box {
  825. padding: 24rpx 20rpx;
  826. background: #F5F5F5;
  827. border-radius: 20rpx;
  828. view {
  829. font-size: 24rpx;
  830. font-family: PingFangSC-Regular, PingFang SC;
  831. font-weight: 400;
  832. color: #666666;
  833. }
  834. }
  835. .houses-label {
  836. padding: 24rpx 0 14rpx 0;
  837. text {
  838. line-height: 40rpx;
  839. background: #fff;
  840. border-radius: 8rpx;
  841. padding: 0 10rpx;
  842. font-size: 20rpx;
  843. font-family: PingFangSC-Regular, PingFang SC;
  844. font-weight: 400;
  845. color: #999999;
  846. margin-right: 10rpx;
  847. margin-bottom: 10rpx;
  848. }
  849. }
  850. .houses-data {
  851. padding: 20rpx 0;
  852. // height: 126rpx;
  853. border-bottom: 2rpx solid #F5F5F5;
  854. .data-item {
  855. // width: 134rpx;
  856. // flex: 1;
  857. // margin-right: 22rpx;
  858. // margin-right: 10rpx;
  859. text:first-child {
  860. font-size: 30rpx;
  861. font-family: PingFangSC-Medium, PingFang SC;
  862. font-weight: 500;
  863. color: #131415;
  864. margin-bottom: 8rpx;
  865. white-space: nowrap;
  866. }
  867. text:last-child {
  868. font-size: 18rpx;
  869. font-family: PingFangSC-Regular, PingFang SC;
  870. font-weight: 400;
  871. color: #999999;
  872. }
  873. }
  874. .data-item:last-child {
  875. margin-right: 0;
  876. }
  877. }
  878. .price {
  879. padding-bottom: 24rpx;
  880. border-bottom: 2rpx solid #F5F5F5;
  881. text:first-child {
  882. font-size: 20rpx;
  883. font-family: PingFangSC-Regular, PingFang SC;
  884. font-weight: 400;
  885. color: #999999;
  886. margin-right: 8rpx;
  887. }
  888. text:last-child {
  889. font-size: 32rpx;
  890. font-family: DINAlternate-Bold, DINAlternate;
  891. font-weight: bold;
  892. color: #FF3B30;
  893. }
  894. }
  895. .box-tips {
  896. font-size: 24rpx;
  897. font-family: PingFangSC-Medium, PingFang SC;
  898. font-weight: 500;
  899. color: #666666;
  900. margin-bottom: 20rpx;
  901. }
  902. .box-header {
  903. padding: 24rpx 0 12rpx 0;
  904. text:first-child {
  905. font-size: 36rpx;
  906. font-family: PingFangSC-Medium, PingFang SC;
  907. font-weight: 500;
  908. color: #131415;
  909. }
  910. text:last-child {
  911. font-size: 24rpx;
  912. font-family: PingFangSC-Regular, PingFang SC;
  913. font-weight: 400;
  914. color: #1F7EFF;
  915. }
  916. }
  917. }
  918. .houses-tabs {
  919. width: 702rpx;
  920. height: 218rpx;
  921. background: #FFFFFF;
  922. border-radius: 20rpx;
  923. margin: 20rpx auto;
  924. .tabs-item {
  925. flex: 1;
  926. image {
  927. width: 84rpx;
  928. height: 84rpx;
  929. margin-bottom: 20rpx;
  930. }
  931. text {
  932. // margin-top: -34rpx;
  933. font-size: 24rpx;
  934. font-family: PingFangSC-Regular, PingFang SC;
  935. font-weight: 400;
  936. color: #131415;
  937. }
  938. }
  939. }
  940. .swiper-box {
  941. width: 702rpx;
  942. margin: 20rpx auto;
  943. }
  944. .index-bg {
  945. position: absolute;
  946. top: 0;
  947. left: 0;
  948. width: 750rpx;
  949. height: 556rpx;
  950. background: linear-gradient(180deg, #1E7DFF 0%, #F6F6F6 100%);
  951. z-index: -1;
  952. }
  953. }
  954. </style>