list.blade.php 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. @extends('layouts.base')
  2. @section('title', '店铺装修')
  3. @section('content')
  4. <body>
  5. <link rel="stylesheet" href="//at.alicdn.com/t/c/font_432132_8u4f6lz202.css">
  6. <style>
  7. body {
  8. font-family: arial, 'Hiragino Sans GB', 'Microsoft Yahei', '微软雅黑', '宋体', \5b8b\4f53, Tahoma, Arial, Helvetica, STHeiti
  9. }
  10. #app {
  11. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'
  12. }
  13. </style>
  14. <div id="app">
  15. <app></app>
  16. </div>
  17. <!-- 微擎版 -->
  18. <script src="{{$webPath}}/plugins/decorate/views/page-design{{$is_new}}/tinymce4.7.5/tinymce.min.js"></script>
  19. <script src="{{$webPath}}/plugins/decorate/views/page-design{{$is_new}}/bundle_ant.js"></script>
  20. <script src="{{$webPath}}/plugins/decorate/views/page-design{{$is_new}}/vendors~main.js"></script>
  21. <script src="{{$webPath}}/plugins/decorate/views/page-design{{$is_new}}/main.js"></script>
  22. <!-- 微擎版end -->
  23. <!-- 独立版 -->
  24. <!-- <script src="/plugins/decorate/views/page-design2/tinymce4.7.5/tinymce.min.js"></script>
  25. <script src="/plugins/decorate/views/page-design2/bundle_ant.js"></script>
  26. <script src="/plugins/decorate/views/page-design2/vendors~main.js"></script>
  27. <script src="/plugins/decorate/views/page-design2/main.js"></script> -->
  28. <!-- 独立版end -->
  29. <script>
  30. var liItems = document.getElementsByClassName("sidebar-wrapper")[1].getElementsByClassName("nav")[0].getElementsByTagName("li");
  31. for (j = 0, len = liItems.length; j < len; j++) {
  32. liItems[j].setAttribute("class", "");
  33. }
  34. if (window.location.href.indexOf("/diy_template_manage") > -1) {
  35. liItems[0].setAttribute("class", "active");
  36. } else if (window.location.href.indexOf("/home") > -1) {
  37. liItems[1].setAttribute("class", "active");
  38. } else if (window.location.href.indexOf("/top_navigation_list") > -1) {
  39. liItems[2].setAttribute("class", "active");
  40. } else if (window.location.href.indexOf("/bottom_navigation_list") > -1) {
  41. liItems[3].setAttribute("class", "active");
  42. } else if (window.location.href.indexOf("/first_banner") > -1) {
  43. liItems[5].setAttribute("class", "active");
  44. } else if (window.location.href.indexOf("/picture_design_scene") > -1 || window.location.href.indexOf("/picture_design_template") > -1) {
  45. liItems[6].setAttribute("class", "active");
  46. }
  47. window.onhashchange = function () {
  48. for (j = 0, len = liItems.length; j < len; j++) {
  49. liItems[j].setAttribute("class", "");
  50. }
  51. if (window.location.href.indexOf("/diy_template_manage") > -1) {
  52. liItems[0].setAttribute("class", "active");
  53. } else if (window.location.href.indexOf("/home") > -1) {
  54. liItems[1].setAttribute("class", "active");
  55. } else if (window.location.href.indexOf("/top_navigation_list") > -1) {
  56. liItems[2].setAttribute("class", "active");
  57. } else if (window.location.href.indexOf("/bottom_navigation_list") > -1) {
  58. liItems[3].setAttribute("class", "active");
  59. } else if (window.location.href.indexOf("/first_banner") > -1) {
  60. liItems[5].setAttribute("class", "active");
  61. } else if (window.location.href.indexOf("/picture_design_scene") > -1 || window.location.href.indexOf("/picture_design_template") > -1) {
  62. liItems[6].setAttribute("class", "active");
  63. }
  64. };
  65. </script>
  66. <script type="text/javascript">
  67. window._AMapSecurityConfig = {
  68. securityJsCode:'67200859e522bc2fcac1a2d2b11a2f77',
  69. }
  70. </script>
  71. <script src="https://webapi.amap.com/maps?v=1.4.15&key=1186e26be922287789d6218dbce587e5&plugin=AMap.Autocomplete,AMap.PlaceSearch,AMap.Geocoder" type="text/javascript" charset="utf-8"></script>
  72. </body>
  73. @endsection