help2.blade.php 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>帮助中心-星优办公软件</title>
  5. @include('home.http.common.head')
  6. <link href="/static/ebook/ebook.css" rel="stylesheet" type="text/css">
  7. <style>
  8. .head{
  9. background: none;
  10. }
  11. </style>
  12. </head>
  13. <body>
  14. <div class="header">
  15. @include('home.http.common.header')
  16. </div>
  17. <div style="height: 68px;"></div>
  18. @include('home.http.common.banner')
  19. <div class="container">
  20. <!--- 解决方案 --->
  21. <div class="index-about">
  22. <div class="width-1200">
  23. <div class="index-title">
  24. <div class="name">常见问题-使用技巧</div>
  25. </div>
  26. @foreach ($data as $item)
  27. @if($item['product'] ->id >= 12 )
  28. <div class="flex-between qa-item">
  29. <div class="qa-soft flex-start">
  30. <img src="{{ $item['product']->logo }}" class="qa-soft-img" />
  31. <div>
  32. <div class="qa-title">{{ $item['category']->name }}</div>
  33. <a href="{{ '/news/category/' . $item['category']->mid }}">
  34. <div class="qa-more">查看全部</div>
  35. </a>
  36. </div>
  37. </div>
  38. <div class="qa-list flex-between">
  39. @foreach ($item['news'] as $key => $row)
  40. <div class="question-item overflow">
  41. <a
  42. href="{{ '/news/detail/' . $row->mid }}">{{ $key + 1 }}、{{ $row->title }}</a>
  43. </div>
  44. @endforeach
  45. </div>
  46. </div>
  47. @endif
  48. @endforeach
  49. </div>
  50. </div>
  51. </div>
  52. @include('home.http.common.footer')
  53. <script>
  54. new Swiper('.swiper-container', {
  55. loop: true,
  56. // 如果需要分页器
  57. navigation: {
  58. nextEl: ".swiper-button-next",
  59. prevEl: ".swiper-button-prev",
  60. }
  61. })
  62. </script>
  63. </body>
  64. </html>