info.blade.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. @extends('mobile.module.layouts.content')
  2. @push('meta')
  3. @endpush
  4. @push('css')
  5. <link href="{{ theme_asset('mobile/css/members.css') }}" rel="stylesheet">
  6. <style>
  7. .set-success-tip {
  8. height: .94rem;
  9. padding: 0 0.5rem;
  10. background-image: none;
  11. background-repeat: no-repeat;
  12. background-size: auto;
  13. word-wrap: break-word;
  14. }
  15. </style>
  16. @endpush
  17. @push('js')
  18. @endpush
  19. @section('content')
  20. <div class="qs-hidden appeal_ok">
  21. <div class="set-success-tip-box qs-center">
  22. <div class="set-success-tip font16">推荐人ID:{{$id}}</div>
  23. <div class="set-success-tip font16">分享链接</div>
  24. <div class="set-success-tip font16">{{route('mobile.douyin_recruit.job.add',['id'=>$id])}}</div>
  25. </div>
  26. <div class="qs-center clip font13 txt-color-9 mt2">长按链接复制</div>
  27. </div>
  28. <script type="text/javascript" src="{{theme_asset('app/js/regular.js')}}"></script>
  29. @endsection
  30. @section('script')
  31. <script>
  32. $('.for-event').hide();
  33. $(".appeal_ok").show();
  34. </script>
  35. @endsection