homePage.vue 31 KB

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