index.blade.php 4.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. .manger_position{ background: url("{{ theme_asset('mobile/images/jobfair/manger_position.png') }}") no-repeat;}
  33. .tuijian{ background: url("{{ theme_asset('mobile/images/jobfair/tuijian.png') }}") no-repeat;}
  34. .xin{ background: url("{{ theme_asset('mobile/images/jobfair/xin.png') }}") no-repeat;}
  35. .mianshi{ background: url("{{ theme_asset('mobile/images/jobfair/mianshi.png') }}") no-repeat;}
  36. footer{position:relative;}
  37. footer img{position:absolute;}
  38. </style>
  39. @endpush
  40. @section('content')
  41. <header>
  42. <div class="logo">
  43. {{-- <img src="{{ theme_asset('mobile/images/jobfair/jobfair-logo.png') }}">--}}
  44. </div>
  45. <br class="clear">
  46. <div class="jofair-title">
  47. <strong>欢迎参加</strong>
  48. <p>{{$info[0]->jobfair->title}}</p>
  49. <p>现场实时参会企业<span>{{count($info)}}家</span></p>
  50. <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>
  51. </div>
  52. </header>
  53. <section>
  54. <div class="banner">
  55. <!--<img src="../public/images/jobfair/jobfair-banner.png">-->
  56. </div>
  57. </section>
  58. <section>
  59. <div class="content">
  60. <ul>
  61. <li><a href="{{route($sub_site.'mobile.jobfairCompany',['jobfair_id'=>$jobfair_id])}}" class="manger_position">参会企业<span class="icon-right"><span class="num">{{$companys->total()}}</span>></span></a></li>
  62. <li><a href="{{route($sub_site.'mobile.jobfairJobs',['jobfair_id'=>$jobfair_id])}}" class="tuijian">所有职位<span class="icon-right"><span class="num">{{$jobs->total()}}</span>></span></a></li>
  63. <li><a href="{{route($sub_site.'mobile.jobfairOrder',['jobfair_id'=>$jobfair_id])}}" class="xin">我的预约<span class="icon-right"><span class="num">{{$orders->total()}}</span>></span></a></li>
  64. <li><a href="{{route($sub_site.'mobile.jobfairInterview',['jobfair_id'=>$jobfair_id])}}" class="mianshi">收到的面试邀请<span class="icon-right"><span class="num">{{$interview->total()}}</span>></span></a></li>
  65. </ul>
  66. </div>
  67. </section>
  68. <footer>
  69. {{-- <img src="{{ theme_asset('mobile/images/jobfair/jobfair-foot.png') }}">--}}
  70. </footer>
  71. @endsection
  72. @section('script')
  73. <script>
  74. $('#logout').on('click', function () {
  75. var dialog = new QSpopout();
  76. dialog.setContent('确定退出吗?');
  77. dialog.show();
  78. dialog.getPrimaryBtn().on('click', function () {
  79. window.location.href = "{{ route($sub_site.'mobile.logout') }}";
  80. });
  81. });
  82. </script>
  83. @endsection