homePage.vue 29 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144
  1. <template>
  2. <view class="content" >
  3. <view class="topSection">
  4. <image class="bg_top" src="https://dm.static.elab-plus.com/yezhu/h5/backgroundImg.png" mode=""></image>
  5. <view class="liveContent">
  6. <view class="backDiv"></view>
  7. <view class="title">分享好房 · 躺平赚钱</view>
  8. <view class="subTitle" @click="setEnv">新手赚钱帮助 ></view>
  9. <view class="levelDiv"
  10. style="background: url('https://dm.static.elab-plus.com/yezhu/h5/icon_line_back.png') center/100% 100% no-repeat;">
  11. <view class="" v-if="userInfo.userId">
  12. <view class="level_top" v-if="userInfo.ownersUnion">
  13. <image class="level_icon" src="https://dm.static.elab-plus.com/yezhu/h5/icon_Level.png" mode="">
  14. </image>
  15. <view class="level_text">{{userInfo.curlevel?'Lv'+userInfo.curlevel:''}}</view>
  16. <view class="level_des">/达到 {{userInfo.nextIncome}} 收益可升级</view>
  17. <view class="level_update">
  18. <text>升级攻略</text>
  19. <image class="level_right_icon"
  20. src="https://dm.static.elab-plus.com/yezhu/h5/icon_right.png" mode=""></image>
  21. </view>
  22. </view>
  23. <view class="level_top" v-else @click="toYezhu">
  24. <image class="level_icon" src="https://dm.static.elab-plus.com/yezhu/h5/icon_Level.png" mode="">
  25. </image>
  26. <view class="level_text_login">业主认证</view>
  27. <view class="level_des"></view>
  28. <view class="level_update">
  29. <text>立即认证</text>
  30. <image class="level_right_icon"
  31. src="https://dm.static.elab-plus.com/yezhu/h5/icon_right.png" mode=""></image>
  32. </view>
  33. </view>
  34. </view>
  35. <view class="level_top" v-else @click="toLogin">
  36. <image class="level_icon" src="https://dm.static.elab-plus.com/yezhu/h5/icon_Level.png" mode="">
  37. </image>
  38. <view class="level_text_login">登录</view>
  39. <view class="level_des"></view>
  40. <view class="level_update">
  41. <text>立即登录</text>
  42. <image class="level_right_icon"
  43. src="https://dm.static.elab-plus.com/yezhu/h5/icon_right.png" mode=""></image>
  44. </view>
  45. </view>
  46. <view class="" v-if="userInfo.userId">
  47. <view class="level_bottom" v-if="userInfo.ownersUnion">
  48. <levelView :currentLevel='userInfo.curIncome' :nextLevel='userInfo.nextIncome' :currentLevelTxt='userInfo.curlevel' :nextLevelTxt='userInfo.nextLevel'>
  49. </levelView>
  50. </view>
  51. <view class="level_bottom_login" v-else >
  52. 点此进行业主认证,审核后实时等级升级
  53. </view>
  54. </view>
  55. <view class="level_bottom_login" v-else >
  56. 点此进行登录注册,开始赚钱吧
  57. </view>
  58. </view>
  59. </view>
  60. </view>
  61. <view class="content_body" :style="{background:color4}">
  62. <view class="content_beginner_guide" v-if="showGuide">
  63. <view class="title">
  64. <text class="title_txt">- 新手引导 -</text>
  65. <view class="title_right">
  66. <text class="title_right_txt" @click="upLoadView(false)">收起</text>
  67. <image class="title_right_cion" src="https://dm.static.elab-plus.com/yezhu/icon_shouqi.png"
  68. mode=""></image>
  69. </view>
  70. </view>
  71. <view class="guide_content">
  72. <view class="item_guide">
  73. <image class="guide_img" src="https://dm.static.elab-plus.com/yezhu/icon_yezhu.png" mode="">
  74. </image>
  75. <text class="guide_title" @click="clearToken">业主认证</text>
  76. <text class="guide_desc">业主认证审核\n实时等级升级</text>
  77. </view>
  78. <image class="icon_guide" src="https://dm.static.elab-plus.com/yezhu/icon_to_guide.png" mode="">
  79. </image>
  80. <view class="item_guide">
  81. <image class="guide_img" style="width: 72rpx;height: 72rpx;margin-top: 5rpx;"
  82. src="https://dm.static.elab-plus.com/yezhu/icon_pyq.png" mode=""></image>
  83. <text class="guide_title">分享项目</text>
  84. <text class="guide_desc">分享到朋友圈\n自动计算收益</text>
  85. </view>
  86. <image class="icon_guide" src="https://dm.static.elab-plus.com/yezhu/icon_to_guide.png" mode="">
  87. </image>
  88. <view class="item_guide">
  89. <image class="guide_img" style="width: 58rpx;height: 68rpx;margin-top: 9rpx;"
  90. src="https://dm.static.elab-plus.com/yezhu/icon_yz_money.png" mode=""></image>
  91. <text class="guide_title">提现到微信</text>
  92. <text class="guide_desc">实时查看收益\n快速提现到账</text>
  93. </view>
  94. </view>
  95. </view>
  96. <view class="content_beginner_guide_" v-else @click="upLoadView(true)">
  97. <text class="title_txt">展开新手引导</text>
  98. <image class="title_right_cion" src="../../static/icons/icon_down_.png"
  99. mode=""></image>
  100. </view>
  101. <view class="content_tab">
  102. <view class="tab_item" @click="toYezhu">
  103. <image class="icon_tab" src="../../static/icons/icon_zcyz_user.png" mode=""></image>
  104. <text class="txt_tab">业主认证</text>
  105. </view>
  106. <view class="tab_item" @click="toShouYiPage">
  107. <image class="icon_tab" src="../../static/icons/icon_shouyi_user.png" mode=""></image>
  108. <text class="txt_tab">收益排行榜</text>
  109. </view>
  110. <view class="tab_item" @click="goReportPage">
  111. <image class="icon_tab" src="../../static/icons/icon_report_user.png" mode=""></image>
  112. <text class="txt_tab">效果报表</text>
  113. </view>
  114. <view class="tab_item" @click="showMine">
  115. <image class="icon_tab" src="../../static/icons/icon_user_mine.png" mode=""></image>
  116. <text class="txt_tab">我的信息</text>
  117. </view>
  118. </view>
  119. <view class="content_tuiguang">
  120. <view class="content_tuiguang_city">
  121. <text class="city_num">{{userInfo.taskCount||0}}个</text>
  122. <text class="city_num_desc">推广任务</text>
  123. <view class="city_list" @click="showOptions(1)">
  124. <text class="city_name">{{city}}</text>
  125. <image class="city_more" src="https://dm.static.elab-plus.com/yezhu/icon_ios_back%402x.png"
  126. mode=""></image>
  127. </view>
  128. </view>
  129. <view class="content_tuiguang_money">
  130. <text class="money_num">¥{{Number(userInfo.surplusTaskAmount).toFixed(2)||'0.00'}}</text>
  131. <text class="money_num_des">剩余任务金额</text>
  132. <view class="money_list" @click="showOptions(2)">
  133. <text class="money_name" >{{typeName}}</text>
  134. <image class="money_more" src="https://dm.static.elab-plus.com/yezhu/icon_ios_back%402x.png"
  135. mode=""></image>
  136. </view>
  137. <image class="money_bg" src="https://dm.static.elab-plus.com/yezhu/icon_money_bg.png" mode="">
  138. </image>
  139. </view>
  140. </view>
  141. <view class="content_list">
  142. <view class="content_title">
  143. <view class="content_title_poi">
  144. </view>
  145. 任务列表
  146. </view>
  147. <view class="content_hongbao">
  148. <view class="hongbao_left">
  149. <image class="icon_hongbao" src="https://dm.static.elab-plus.com/yezhu/icon_hongbao.png"
  150. mode=""></image>
  151. <view class="hongbao_left_info">
  152. <text class="hongbao_title">邀请好友注册</text>
  153. <text class="hongbao_money">完成邀请,可获得 ¥1/人</text>
  154. </view>
  155. </view>
  156. <view class="hongbao_right" @click="toShareCard('',1)">
  157. 邀请好友
  158. </view>
  159. </view>
  160. <view class="list_item" v-for="(item,index) in houseList" :key='index'>
  161. <image class="house_img" :src="item.image" mode="aspectFill"></image>
  162. <view class="item_content" @click="goDetailAction(item,1)">
  163. <text class="house_name">{{item.name}}</text>
  164. <view class="house_hk" v-if="item.taskCategory">
  165. <text class="house_hk_" v-for="(item1,index1) in item.taskCategory" :key='index1'>{{item1.category}} ¥{{item1.unitPrice}}/人</text>
  166. </view>
  167. <text class="house_hk" v-else></text>
  168. <view class="house_address">
  169. <image src="https://dm.static.elab-plus.com/yezhu/icon_location.png" mode=""></image>
  170. <text style="width: 100%;">{{item.city}} · {{item.minPrice}}-{{item.maxPrice}}万元/m² {{item.bizFormat?'· '+item.bizFormat:''}}</text>
  171. </view>
  172. <view class="house_num">
  173. <image src="https://dm.static.elab-plus.com/yezhu/icon_family.png" mode=""></image>
  174. <text style="width: 100%;">{{item.projectLayout}}</text>
  175. </view>
  176. <text class="house_desc">{{item.shareRemark}}</text>
  177. </view>
  178. <view class="item_share" @click="toShareCard(item.projectId,2)">
  179. <image class="icon_share" src="https://dm.static.elab-plus.com/yezhu/icon_small_share.png"
  180. mode=""></image>
  181. <text class="icon_text">分享</text>
  182. </view>
  183. <view class="item_bg"></view>
  184. </view>
  185. <view class="com_noMore_text" v-if="noMore && houseList.length > 0">没有更多了</view>
  186. <view class="empty" v-if="houseList.length == 0">
  187. <image class="emptyImg" src="https://dm.static.elab-plus.com/yezhu/h5/icon_empty.png" mode=""></image>
  188. <view class="text">暂无数据</view>
  189. </view>
  190. </view>
  191. </view>
  192. <login ref='login'></login>
  193. <login-notice ref='login_notice'></login-notice>
  194. <dmMine ref='mine' :userInfo='userInfo'></dmMine>
  195. <dmHomeChoose ref='chooseType' :option='optionType' @chooiceType="chooiceType"></dmHomeChoose>
  196. </view>
  197. </template>
  198. <script>
  199. import levelView from '@/components/leve-view/leve-view.vue';
  200. import dmMine from '@/components/subComponents/dmMine.vue'
  201. import dmHomeChoose from "@/components/subComponents/dmHomeChoose.vue"
  202. let app = getApp();
  203. export default {
  204. data() {
  205. return {
  206. color4: '#F5F5F7',
  207. houseList: [],
  208. userId: "",
  209. token: "",
  210. clickCount:8,
  211. userInfo: {
  212. "userId": "",
  213. "name": null,
  214. "head": null,
  215. "curlevel": null,
  216. "curIncome": null,
  217. "nextLevel": null,
  218. "nextIncome": null,
  219. "ownersUnion": false,
  220. "totalIncome": null,
  221. "taskCount": null,
  222. "surplusTaskAmount": null,
  223. "cardNo":"",
  224. "phone":"",
  225. "room":"",
  226. "sex":""
  227. },
  228. showGuide:true,
  229. total:0,
  230. pageNo:1,
  231. pageSize:10,
  232. noMore:false,
  233. city:"城市",
  234. type:"",
  235. typeName:"类型",
  236. optionType:1
  237. }
  238. },
  239. mounted() {
  240. this.color4 = app.globalData.color4;
  241. this.getData();
  242. uni.$on("request",()=>{
  243. this.getData();
  244. this.$refs.login_notice.hide();
  245. this.$refs.login.hide();
  246. })
  247. let projectId = this.getQueryString('projectId');
  248. if(projectId){
  249. let e = {
  250. projectId
  251. }
  252. this.goDetailAction(e,2)
  253. }
  254. },
  255. onReachBottom() {
  256. if(this.houseList.length<this.total){
  257. this.pageNo ++;
  258. this.getHomePage();
  259. }
  260. },
  261. methods: {
  262. getQueryString(name){
  263. var reg = new RegExp("(^|\\?|&)"+ name +"=([^&]*)(\\s|&|$)", "i");
  264. return reg.test(location.href) ? unescape(RegExp.$2.replace(/\+/g, " ")) : ""
  265. },
  266. clearToken(){
  267. },
  268. getData(){
  269. this.pageNo = 1;
  270. this.getUserInfo();
  271. this.getHomePage();
  272. },
  273. chooiceType(e){
  274. this.city = e.city==''?"城市":e.city;
  275. this.type = e.type;
  276. this.typeName = e.typeName==''?'类型':e.typeName;
  277. this.pageNo = 1;
  278. this.getHomePage();
  279. },
  280. async getHomePage() {
  281. let ret = await this.$myRequest({
  282. url: "/project/homePage",
  283. data: {
  284. "city": this.city=='城市'?'':this.city,
  285. "pageNo": this.pageNo,
  286. "pageSize": this.pageSize,
  287. "taskCategoryId": this.type,
  288. }
  289. })
  290. if (ret.data.success) {
  291. let pageModel = ret.data.pageModel;
  292. let houseList = pageModel.resultSet || [];
  293. if(this.pageNo==1){
  294. this.houseList = [];
  295. }
  296. this.houseList = this.houseList.concat(houseList);
  297. this.total = pageModel.total||0;
  298. this.noMore = this.houseList.length==this.total
  299. }
  300. },
  301. async getUserInfo() {
  302. if(app.globalData.userId){
  303. let ret = await this.$myRequest({
  304. url: "/user/userInfo",
  305. data: {},
  306. method: "GET"
  307. });
  308. if (ret.data.success) {
  309. this.userInfo = ret.data.single || null;
  310. this.showGuide = this.userInfo.userId?this.userInfo.ownersUnion?false:true:true;
  311. }
  312. }
  313. },
  314. // 调准项目详情
  315. goDetailAction(e,type) {
  316. if(type==1){
  317. if(this.userInfo.userId){
  318. uni.navigateTo({
  319. url: '../houseDetail/houseDetail?projectId='+e.projectId
  320. })
  321. }else{
  322. uni.$emit('unLogin')
  323. }
  324. }else{
  325. uni.navigateTo({
  326. url: '../houseDetail/houseDetail?projectId='+e.projectId
  327. })
  328. }
  329. },
  330. // 跳转至效果报表
  331. goReportPage() {
  332. if(this.userInfo.userId){
  333. uni.navigateTo({
  334. url: '../reportPage/reportPage'
  335. })
  336. }else{
  337. uni.$emit('unLogin')
  338. }
  339. },
  340. toShouYiPage() {
  341. if(this.userInfo.userId){
  342. uni.navigateTo({
  343. url: '../revenueRankingPage/revenueRankingPage'
  344. })
  345. }else{
  346. uni.$emit('unLogin')
  347. }
  348. },
  349. async toYezhu(){
  350. if(this.userInfo.userId){
  351. let ret = await this.$myRequest({
  352. url: "/user/regist/get",
  353. data: {
  354. "userId": app.globalData.userId,
  355. },
  356. method:"GET"
  357. })
  358. if (ret.data.success) {
  359. let single = ret.data.single||null;//:0待审核1通过2拒绝
  360. if(single){
  361. if(single.approvalStatus==0||single.approvalStatus==1){
  362. uni.navigateTo({
  363. url: '../certificationResultPage/certificationResultPage'
  364. })
  365. }else if(single.approvalStatus==2){
  366. uni.navigateTo({
  367. url: '../ownerCertification/ownerCertification?mobile='+this.userInfo.phone
  368. })
  369. }
  370. }else{
  371. uni.navigateTo({
  372. url: '../ownerCertification/ownerCertification?mobile='+this.userInfo.phone
  373. })
  374. }
  375. }else{
  376. uni.showToast({
  377. icon:"none",
  378. title:ret.data.message
  379. })
  380. }
  381. }else{
  382. uni.$emit('unLogin')
  383. }
  384. },
  385. setEnv(){
  386. if (this.clickCount < 0) {
  387. this.clickCount = 8;
  388. uni.navigateTo({
  389. url:"../developSetting/developSetting"
  390. })
  391. } else {
  392. this.clickCount--;
  393. }
  394. },
  395. toShareCard(projectId,type){
  396. if(this.userInfo.userId){
  397. let href = location.href;
  398. if (href.indexOf("?")){
  399. href = href.split('?')[0]
  400. }
  401. uni.navigateTo({
  402. url:'../shareCardPage/shareCardPage?page='+href+"&projectId="+projectId+"&type="+type
  403. })
  404. }else{
  405. uni.$emit('unLogin')
  406. }
  407. },
  408. toLogin(){
  409. uni.$emit('login')
  410. },
  411. upLoadView(isShow){
  412. this.showGuide = isShow;
  413. },
  414. showMine(){
  415. if(this.userInfo.userId){
  416. this.$refs.mine.show()
  417. }else{
  418. uni.$emit('unLogin')
  419. }
  420. },
  421. showOptions(option){
  422. this.$refs.chooseType.setOptionType(option);
  423. this.$forceUpdate();
  424. this.$refs.chooseType.show()
  425. }
  426. },
  427. components: {
  428. levelView,
  429. dmMine,
  430. dmHomeChoose
  431. }
  432. }
  433. </script>
  434. <style lang="scss" scoped>
  435. .content {
  436. width: 100%;
  437. height: 100%;
  438. position: relative;
  439. .topSection {
  440. position: relative;
  441. z-index: 100;
  442. }
  443. .bg_top {
  444. width: 100%;
  445. height: 470rpx;
  446. position: absolute;
  447. top: 0;
  448. left: 0;
  449. z-index: 100;
  450. }
  451. .liveContent {
  452. width: 100%;
  453. height: 470rpx;
  454. z-index: 100;
  455. display: flex;
  456. flex-direction: column;
  457. align-items: center;
  458. position: relative;
  459. .backDiv {
  460. top: 0;
  461. left: 0;
  462. position: absolute;
  463. width: 100%;
  464. height: 100%;
  465. background-color: rgba($color: #000000, $alpha: 0.1);
  466. z-index: 1;
  467. }
  468. .title {
  469. margin-top: 96rpx;
  470. font-size: 44rpx;
  471. font-weight: 700;
  472. text-align: center;
  473. color: #ffffff;
  474. z-index: 2;
  475. }
  476. .subTitle {
  477. font-size: 28rpx;
  478. font-family: Verdana, Verdana-Regular;
  479. font-weight: 400;
  480. text-align: left;
  481. color: #ffffff;
  482. margin-top: 20rpx;
  483. z-index: 2;
  484. }
  485. .levelDiv {
  486. margin-top: 82rpx;
  487. width: calc(100% - 60rpx);
  488. height: 152rpx;
  489. z-index: 2;
  490. display: flex;
  491. flex-direction: column;
  492. padding: 25rpx 30rpx;
  493. box-sizing: border-box;
  494. .level_top {
  495. width: 100%;
  496. display: flex;
  497. justify-content: space-between;
  498. flex-wrap: nowrap;
  499. align-items: center;
  500. margin-top: 5rpx;
  501. .level_icon {
  502. width: 37rpx;
  503. min-width: 37rpx;
  504. max-width: 37rpx;
  505. height: 35rpx;
  506. margin-right: 13rpx;
  507. margin-top: -5rpx;
  508. }
  509. .level_text {
  510. font-size: 48rpx;
  511. font-family: FontName, FontName-Regular;
  512. font-weight: 500;
  513. text-align: left;
  514. font-style: oblique;
  515. color: #f5c8a8;
  516. line-height: 40rpx;
  517. letter-spacing: 1.92rpx;
  518. margin-right: 8rpx;
  519. margin-top: -7rpx;
  520. }
  521. .level_text_login{
  522. font-size: 40rpx;
  523. font-family: FontName, FontName-Regular;
  524. font-weight: 400;
  525. text-align: left;
  526. color: #f5c8a8;
  527. }
  528. .level_des {
  529. font-size: 22rpx;
  530. font-family: Verdana, Verdana-Regular;
  531. font-weight: 400;
  532. text-align: left;
  533. color: #f5c8a8;
  534. white-space: nowrap;
  535. flex-grow: 1;
  536. }
  537. .level_update {
  538. font-size: 24rpx;
  539. font-family: Verdana, Verdana-Bold;
  540. font-weight: 700;
  541. text-align: right;
  542. color: #f5c8a8;
  543. letter-spacing: 0.96rpx;
  544. display: flex;
  545. align-items: center;
  546. .level_right_icon {
  547. margin-left: 8rpx;
  548. width: 6rpx;
  549. height: 7rpx;
  550. }
  551. }
  552. }
  553. .level_bottom_login{
  554. font-size: 22rpx;
  555. font-family: Verdana, Verdana-Regular;
  556. font-weight: 400;
  557. text-align: left;
  558. color: #f5c8a8;
  559. margin-top: 20rpx;
  560. }
  561. }
  562. }
  563. .content_body {
  564. border-radius: 20rpx 20rpx 0rpx 0rpx;
  565. height: calc(100% - 470rpx);
  566. margin-top: -24rpx;
  567. z-index: 102;
  568. position: relative;
  569. padding: 1rpx;
  570. .content_beginner_guide {
  571. height: 354rpx;
  572. margin-left: 30rpx;
  573. margin-right: 30rpx;
  574. margin-top: 40rpx;
  575. background: #ffffff;
  576. border-radius: 16rpx;
  577. box-sizing: border-box;
  578. .title {
  579. width: 100%;
  580. position: relative;
  581. height: 110rpx;
  582. .title_txt {
  583. font-size: 32rpx;
  584. font-family: FontName, FontName-Regular;
  585. font-weight: 400;
  586. text-align: left;
  587. color: #b1b1b1;
  588. font-style: italic;
  589. position: absolute;
  590. left: 50%;
  591. top: 30rpx;
  592. transform: translateX(-50%);
  593. }
  594. .title_right {
  595. position: absolute;
  596. right: 20rpx;
  597. top: 40rpx;
  598. display: flex;
  599. align-items: center;
  600. .title_right_txt {
  601. font-size: 24rpx;
  602. font-family: Verdana, Verdana-Regular;
  603. font-weight: 400;
  604. text-align: right;
  605. color: #b1b1b1;
  606. }
  607. .title_right_cion {
  608. width: 10rpx;
  609. height: 6rpx;
  610. margin-left: 10rpx;
  611. }
  612. }
  613. }
  614. .guide_content {
  615. display: flex;
  616. padding-left: 40rpx;
  617. padding-right: 40rpx;
  618. box-sizing: border-box;
  619. justify-content: space-between;
  620. .item_guide {
  621. display: flex;
  622. flex-direction: column;
  623. align-items: center;
  624. .guide_img {
  625. width: 58rpx;
  626. height: 74rpx;
  627. margin-bottom: 17rpx;
  628. }
  629. .guide_title {
  630. font-size: 26rpx;
  631. font-family: Verdana, Verdana-Bold;
  632. font-weight: 700;
  633. text-align: center;
  634. color: #2c2c2c;
  635. margin-bottom: 8rpx;
  636. }
  637. .guide_desc {
  638. font-size: 22rpx;
  639. font-family: Verdana, Verdana-Regular;
  640. font-weight: 400;
  641. text-align: center;
  642. color: #b1b1b1;
  643. }
  644. }
  645. .icon_guide {
  646. width: 48rpx;
  647. height: 32rpx;
  648. margin-top: 20rpx;
  649. }
  650. }
  651. }
  652. .content_beginner_guide_{
  653. width: 100%;
  654. position: relative;
  655. margin-left: 30rpx;
  656. margin-right: 30rpx;
  657. margin-top: 20rpx;
  658. margin-bottom: 30rpx;
  659. display: flex;
  660. justify-content: center;
  661. align-items: center;
  662. .title_txt {
  663. font-size: 24rpx;
  664. font-family: FontName, FontName-Regular;
  665. font-weight: 400;
  666. text-align: left;
  667. color: #b1b1b1;
  668. font-style: italic;
  669. }
  670. .title_right_cion {
  671. width: 10rpx;
  672. height: 6rpx;
  673. margin-left: 10rpx;
  674. }
  675. }
  676. .content_tab {
  677. display: flex;
  678. box-sizing: border-box;
  679. height: 180rpx;
  680. background: #ffffff;
  681. border-radius: 16rpx;
  682. margin-top: 14rpx;
  683. padding-left: 40rpx;
  684. padding-right: 40rpx;
  685. margin-left: 30rpx;
  686. margin-right: 30rpx;
  687. justify-content: space-between;
  688. .tab_item {
  689. display: flex;
  690. flex-direction: column;
  691. align-items: center;
  692. justify-content: center;
  693. .icon_tab {
  694. width: 96rpx;
  695. height: 96rpx;
  696. }
  697. .txt_tab {
  698. font-size: 24rpx;
  699. font-family: Verdana, Verdana-Regular;
  700. font-weight: 400;
  701. text-align: center;
  702. color: #262626;
  703. margin-top: 2rpx;
  704. }
  705. }
  706. }
  707. .content_tuiguang {
  708. height: 220rpx;
  709. display: flex;
  710. box-sizing: border-box;
  711. background: #ffffff;
  712. border-radius: 16rpx;
  713. margin-top: 14rpx;
  714. padding-left: 40rpx;
  715. padding-right: 40rpx;
  716. margin-left: 30rpx;
  717. margin-right: 30rpx;
  718. justify-content: space-between;
  719. position: relative;
  720. .content_tuiguang_city {
  721. display: flex;
  722. flex-direction: column;
  723. justify-content: center;
  724. align-items: center;
  725. width: 50%;
  726. .city_num {
  727. font-size: 40rpx;
  728. font-family: DIN Alternate, DIN Alternate-Bold;
  729. font-weight: 700;
  730. text-align: center;
  731. color: #262626;
  732. }
  733. .city_num_desc {
  734. font-size: 24rpx;
  735. font-family: Verdana, Verdana-Regular;
  736. font-weight: 400;
  737. text-align: center;
  738. color: #b1b1b1;
  739. }
  740. .city_list {
  741. display: flex;
  742. justify-content: center;
  743. margin-top: 52rpx;
  744. align-items: center;
  745. .city_name {
  746. font-size: 26rpx;
  747. font-family: Verdana, Verdana-Regular;
  748. font-weight: 400;
  749. text-align: left;
  750. color: #262626;
  751. }
  752. .city_more {
  753. width: 26rpx;
  754. height: 26rpx;
  755. margin-left: 8rpx;
  756. }
  757. }
  758. }
  759. .content_tuiguang_money {
  760. display: flex;
  761. flex-direction: column;
  762. justify-content: center;
  763. align-items: center;
  764. width: 50%;
  765. .money_num {
  766. font-size: 40rpx;
  767. font-family: DIN Alternate, DIN Alternate-Bold;
  768. font-weight: 700;
  769. text-align: center;
  770. color: #fd8f3c;
  771. }
  772. .money_num_des {
  773. font-size: 24rpx;
  774. font-family: Verdana, Verdana-Regular;
  775. font-weight: 400;
  776. text-align: center;
  777. color: #b1b1b1;
  778. }
  779. .money_list {
  780. display: flex;
  781. justify-content: center;
  782. margin-top: 52rpx;
  783. align-items: center;
  784. z-index: 11;
  785. .money_name {
  786. font-size: 26rpx;
  787. font-family: Verdana, Verdana-Regular;
  788. font-weight: 400;
  789. text-align: left;
  790. color: #262626;
  791. }
  792. .money_more {
  793. width: 26rpx;
  794. height: 26rpx;
  795. margin-left: 8rpx;
  796. }
  797. }
  798. .money_bg {
  799. position: absolute;
  800. right: 0rpx;
  801. top: 0;
  802. width: 220rpx;
  803. height: 220rpx;
  804. }
  805. }
  806. }
  807. .content_list {
  808. margin-top: 60rpx;
  809. margin-left: 30rpx;
  810. margin-right: 30rpx;
  811. padding-bottom: 50rpx;
  812. .content_title {
  813. display: flex;
  814. font-size: 32rpx;
  815. font-family: Verdana, Verdana-Bold;
  816. font-weight: 700;
  817. text-align: left;
  818. color: #262626;
  819. align-items: center;
  820. .content_title_poi {
  821. width: 8rpx;
  822. height: 12rpx;
  823. background: #f07423;
  824. border-radius: 2rpx;
  825. margin-right: 8rpx;
  826. }
  827. }
  828. .content_hongbao {
  829. margin-top: 20rpx;
  830. height: 140rpx;
  831. background: linear-gradient(108deg, #ffb55f 9%, #f87523 96%);
  832. border-radius: 16rpx;
  833. display: flex;
  834. justify-content: space-between;
  835. align-items: center;
  836. .hongbao_left {
  837. display: flex;
  838. margin-left: 26rpx;
  839. .icon_hongbao {
  840. width: 60rpx;
  841. height: 80rpx;
  842. margin-right: 20rpx;
  843. }
  844. .hongbao_left_info {
  845. display: flex;
  846. flex-direction: column;
  847. .hongbao_title {
  848. font-size: 30rpx;
  849. font-family: Verdana, Verdana-Bold;
  850. font-weight: 700;
  851. text-align: left;
  852. color: #ffffff;
  853. }
  854. .hongbao_money {
  855. font-size: 24rpx;
  856. font-family: Verdana, Verdana-Regular;
  857. font-weight: 400;
  858. text-align: left;
  859. color: #ffead8;
  860. }
  861. }
  862. }
  863. .hongbao_right {
  864. width: 140rpx;
  865. height: 56rpx;
  866. line-height: 56rpx;
  867. background: #ffffff;
  868. border-radius: 12rpx;
  869. font-size: 24rpx;
  870. font-family: Verdana, Verdana-Bold;
  871. font-weight: 700;
  872. text-align: center;
  873. color: #f07423;
  874. margin-right: 20rpx;
  875. }
  876. }
  877. .list_item {
  878. width: 100%;
  879. min-height: 280rpx;
  880. border-radius: 16rpx;
  881. display: flex;
  882. position: relative;
  883. margin-top: 20rpx;
  884. .house_img {
  885. width: 200rpx;
  886. height: 240rpx;
  887. min-width: 200rpx;
  888. z-index: 11;
  889. margin-top: 20rpx;
  890. margin-left: 20rpx;
  891. border-radius: 10rpx;
  892. }
  893. .item_content {
  894. display: flex;
  895. flex-direction: column;
  896. margin-left: 50rpx;
  897. z-index: 11;
  898. max-width: 51%;
  899. .house_name {
  900. width: 100%;
  901. word-break:break-all;
  902. font-size: 30rpx;
  903. font-family: Verdana, Verdana-Bold;
  904. font-weight: 700;
  905. text-align: left;
  906. color: #262626;
  907. margin-top: 20rpx;
  908. }
  909. .house_hk {
  910. width: 100%;
  911. font-size: 26rpx;
  912. font-family: Verdana, Verdana-Regular;
  913. font-weight: 400;
  914. text-align: left;
  915. color: #fd8f3c;
  916. margin-top: 8rpx;
  917. .house_hk_{
  918. margin-right: 10rpx;
  919. }
  920. }
  921. .house_address {
  922. width: 100%;
  923. display: flex;
  924. font-size: 24rpx;
  925. font-family: Verdana, Verdana-Regular;
  926. font-weight: 400;
  927. text-align: left;
  928. color: #b1b1b1;
  929. margin-top: 16rpx;
  930. image {
  931. width: 20rpx;
  932. height: 28rpx;
  933. margin-right: 8rpx;
  934. margin-top: 6rpx;
  935. }
  936. text {
  937. width: 80%;
  938. }
  939. }
  940. .house_num {
  941. display: flex;
  942. font-size: 24rpx;
  943. font-family: Verdana, Verdana-Regular;
  944. font-weight: 400;
  945. text-align: left;
  946. color: #b1b1b1;
  947. margin-top: 12rpx;
  948. image {
  949. width: 24rpx;
  950. height: 26rpx;
  951. margin-right: 8rpx;
  952. margin-top: 6rpx;
  953. }
  954. text {
  955. width: 80%;
  956. }
  957. }
  958. .house_desc {
  959. margin-top: 24rpx;
  960. font-size: 24rpx;
  961. font-family: Verdana, Verdana-Regular;
  962. font-weight: 400;
  963. text-align: left;
  964. color: #b1b1b1;
  965. margin-bottom: 20rpx;
  966. word-break:break-all;
  967. }
  968. }
  969. .item_share {
  970. z-index: 11;
  971. display: flex;
  972. flex-direction: column;
  973. width: 70rpx;
  974. height: 100rpx;
  975. background: #f07423;
  976. border-radius: 12rpx;
  977. position: absolute;
  978. right: 0;
  979. top: 50%;
  980. transform: translateY(-50%);
  981. justify-content: center;
  982. align-items: center;
  983. .icon_share {
  984. width: 32rpx;
  985. height: 32rpx;
  986. margin-bottom: 6rpx;
  987. }
  988. .icon_text {
  989. font-size: 24rpx;
  990. font-family: Verdana, Verdana-Bold;
  991. font-weight: 700;
  992. text-align: center;
  993. color: #ffffff;
  994. }
  995. }
  996. .item_bg {
  997. position: absolute;
  998. left: 0;
  999. top: 0;
  1000. width: 95%;
  1001. height: 100%;
  1002. background-color: #FFFFFF;
  1003. border-radius: 16rpx;
  1004. z-index: 10;
  1005. }
  1006. }
  1007. }
  1008. }
  1009. .com_noMore_text{
  1010. margin-top: 40rpx;
  1011. font-size: 24rpx;
  1012. font-family: Verdana, Verdana-Regular;
  1013. font-weight: 400;
  1014. text-align: center;
  1015. color: #999999;
  1016. }
  1017. .empty {
  1018. display: flex;
  1019. flex-direction: column;
  1020. align-items: center;
  1021. .emptyImg {
  1022. width: 283rpx;
  1023. height: 227rpx;
  1024. margin-top: 100rpx;
  1025. }
  1026. .text {
  1027. margin-top: -20rpx;
  1028. font-size: 28rpx;
  1029. margin-bottom: 50rpx;
  1030. font-family: PingFang SC, PingFang SC-Medium;
  1031. font-weight: 500;
  1032. text-align: center;
  1033. color: #b1b3ba;
  1034. }
  1035. }
  1036. }
  1037. </style>