index.blade.php 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. @extends('mobile.module.layouts.content')
  2. @push('meta')
  3. <meta name="csrf-token" content="{{ csrf_token() }}">
  4. @endpush
  5. @push('css')
  6. <link href="{{ theme_asset('mobile/css/personal.css') }}" rel="stylesheet">
  7. <link href="{{ theme_asset('mobile/css/jobfair_member.css') }}" rel="stylesheet">
  8. <style type="text/css">
  9. body{background-color: #fff;}
  10. ul,li {list-style-type:none;}
  11. a:link, a:visited, a:hover, a:active {color:#000; text-decoration:none;}
  12. img,input{ border:0; width: 100%;}
  13. input, select, textarea {font-size:16px;}
  14. header{margin:15px 5%; text-align: center;}
  15. .banner,.banner img{ width: 100%; }
  16. .content{ margin:20px 5% 20px 5%;}
  17. .content ul li{width: 100%; height: 50px; margin-bottom: 12px;}
  18. .content ul li a{display: block; line-height: 45px; font-size: 18px; padding-left: 55px; padding-bottom: 8px; border-bottom: #f0f0f0 solid 2px;background-size:0.8rem;}
  19. .content ul li a span{color:#b6b6b6; position: relative;}
  20. .content ul li a span span.num{ width: 26px; height: 26px; background: #ff3333; color:#FFF; border-radius: 13px; position: absolute; top: 10px; right: 25px; line-height: 26px; text-align: center; font-size: 14px; font-weight: normal;}
  21. .icon-right{ float: right; }
  22. .clear{
  23. clear: both;
  24. content: " ";
  25. display: block;
  26. font-size: 0;
  27. height: 0;
  28. visibility: hidden;
  29. }
  30. .jofair-title{color: #000;line-height: .56rem;font-size:.3rem;font-weight: bold;}
  31. .jofair-title span{color:#ff3333;margin: 0 .1rem;}
  32. .login-register{ background: url("{{ theme_asset('mobile/images/jobfair/login-register.png') }}") no-repeat;}
  33. .talented{ background: url("{{ theme_asset('mobile/images/jobfair/talented.png') }}") no-repeat;}
  34. .work{ background: url("{{ theme_asset('mobile/images/jobfair/work.png') }}") no-repeat;}
  35. .mycollect{ background: url("{{ theme_asset('mobile/images/jobfair/mycollect.png') }}") no-repeat;}
  36. .shoudao{ background: url("{{ theme_asset('mobile/images/jobfair/shoudao.png') }}") no-repeat;}
  37. footer{position:relative;}
  38. footer img{position:absolute;}
  39. </style>
  40. @endpush
  41. @section('content')
  42. <header>
  43. <div class="logo">
  44. </div>
  45. <br class="clear">
  46. <div class="jofair-title">
  47. <strong>欢迎参加</strong>
  48. <p>{{ $jobfairScene->jobfair->title }}</p>
  49. <p>您的预定的展位号为<span>{{ $jobfairScene->position_arr }}</span></p>
  50. {{--<p>现场实时求职者<span>220</span>人</p>--}}
  51. <p><a href="javascript:void(0)" onclick="location.reload()" class="qs-btn qs-btn-blue font18" style="margin-top: .3rem;display:inline-block;width:22%;height:.8rem;line-height:.8rem;color:#fff;font-size:.3rem;">刷 新</a></p>
  52. </div>
  53. </header>
  54. {{--<section>--}}
  55. {{--<div class="banner">--}}
  56. {{--<img src="{{ theme_asset('mobile/images/jobfair/jobfair-banner.png') }}">--}}
  57. {{--</div>--}}
  58. {{--</section>--}}
  59. <section>
  60. <div class="content">
  61. <ul>
  62. <li><a href="{{ route('mobile.firm.jobfair.scene.jobs',['jobfair_id'=>$jobfair_id]) }}" class="login-register">招聘会职位<span class="icon-right"><span class="num">{{$jobfairJobCount}}</span>></span></a></li>
  63. <li><a href="{{ route('mobile.firm.jobfair.scene.resumes',['jobfair_id'=>$jobfair_id]) }}" class="talented">猜你喜欢<span class="icon-right"><span class="num">{{$fitResumeCount}}</span>></span></a></li>
  64. <li><a href="{{ route('mobile.firm.jobfair.scene.interview',['jobfair_id'=>$jobfair_id]) }}" class="work">发出的面试邀请<span class="icon-right"><span class="num">{{$interviewCount}}</span>></span></a></li>
  65. <li><a href="{{ route('mobile.firm.jobfair.scene.yuyue',['jobfair_id'=>$jobfair_id]) }}" class="mycollect">收到的预约<span class="icon-right"><span class="num">{{$yuyueCount}}</span>></span></a></li>
  66. {{--<li><a href="" class="shoudao">收到的简历<span class="icon-right"><span class="num">24</span>></span></a></li>--}}
  67. </ul>
  68. </div>
  69. </section>
  70. {{--<footer>--}}
  71. {{--<img src="{{ theme_asset('mobile/images/jobfair/jobfair-foot.png') }}">--}}
  72. {{--</footer>--}}
  73. @endsection
  74. @section('script')
  75. <script>
  76. $('#logout').on('click', function () {
  77. var dialog = new QSpopout();
  78. dialog.setContent('确定退出吗?');
  79. dialog.show();
  80. dialog.getPrimaryBtn().on('click', function () {
  81. window.location.href = "{{ route('mobile.logout') }}";
  82. });
  83. });
  84. </script>
  85. @endsection