| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- @extends('layouts.base')
- @section('title', '店铺装修')
- @section('content')
- <body>
- <link rel="stylesheet" href="//at.alicdn.com/t/c/font_432132_8u4f6lz202.css">
- <style>
- body {
- font-family: arial, 'Hiragino Sans GB', 'Microsoft Yahei', '微软雅黑', '宋体', \5b8b\4f53, Tahoma, Arial, Helvetica, STHeiti
- }
- #app {
- 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'
- }
- </style>
- <div id="app">
- <app></app>
- </div>
- <!-- 微擎版 -->
- <script src="{{$webPath}}/plugins/decorate/views/page-design{{$is_new}}/tinymce4.7.5/tinymce.min.js"></script>
- <script src="{{$webPath}}/plugins/decorate/views/page-design{{$is_new}}/bundle_ant.js"></script>
- <script src="{{$webPath}}/plugins/decorate/views/page-design{{$is_new}}/vendors~main.js"></script>
- <script src="{{$webPath}}/plugins/decorate/views/page-design{{$is_new}}/main.js"></script>
- <!-- 微擎版end -->
- <!-- 独立版 -->
- <!-- <script src="/plugins/decorate/views/page-design2/tinymce4.7.5/tinymce.min.js"></script>
- <script src="/plugins/decorate/views/page-design2/bundle_ant.js"></script>
- <script src="/plugins/decorate/views/page-design2/vendors~main.js"></script>
- <script src="/plugins/decorate/views/page-design2/main.js"></script> -->
- <!-- 独立版end -->
- <script>
- var liItems = document.getElementsByClassName("sidebar-wrapper")[1].getElementsByClassName("nav")[0].getElementsByTagName("li");
- for (j = 0, len = liItems.length; j < len; j++) {
- liItems[j].setAttribute("class", "");
- }
- if (window.location.href.indexOf("/diy_template_manage") > -1) {
- liItems[0].setAttribute("class", "active");
- } else if (window.location.href.indexOf("/home") > -1) {
- liItems[1].setAttribute("class", "active");
- } else if (window.location.href.indexOf("/top_navigation_list") > -1) {
- liItems[2].setAttribute("class", "active");
- } else if (window.location.href.indexOf("/bottom_navigation_list") > -1) {
- liItems[3].setAttribute("class", "active");
- } else if (window.location.href.indexOf("/first_banner") > -1) {
- liItems[5].setAttribute("class", "active");
- } else if (window.location.href.indexOf("/picture_design_scene") > -1 || window.location.href.indexOf("/picture_design_template") > -1) {
- liItems[6].setAttribute("class", "active");
- }
- window.onhashchange = function () {
- for (j = 0, len = liItems.length; j < len; j++) {
- liItems[j].setAttribute("class", "");
- }
- if (window.location.href.indexOf("/diy_template_manage") > -1) {
- liItems[0].setAttribute("class", "active");
- } else if (window.location.href.indexOf("/home") > -1) {
- liItems[1].setAttribute("class", "active");
- } else if (window.location.href.indexOf("/top_navigation_list") > -1) {
- liItems[2].setAttribute("class", "active");
- } else if (window.location.href.indexOf("/bottom_navigation_list") > -1) {
- liItems[3].setAttribute("class", "active");
- } else if (window.location.href.indexOf("/first_banner") > -1) {
- liItems[5].setAttribute("class", "active");
- } else if (window.location.href.indexOf("/picture_design_scene") > -1 || window.location.href.indexOf("/picture_design_template") > -1) {
- liItems[6].setAttribute("class", "active");
- }
- };
- </script>
- <script type="text/javascript">
- window._AMapSecurityConfig = {
- securityJsCode:'67200859e522bc2fcac1a2d2b11a2f77',
- }
- </script>
- <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>
- </body>
- @endsection
|