95d3667eb2574449e04ea513d4600a99.php 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  1. <?php /*a:2:{s:56:"D:\phpstudy_pro\WWW\CRMEB\app\admin\view\index\index.php";i:1617074462;s:57:"D:\phpstudy_pro\WWW\CRMEB\app\admin\view\public\style.php";i:1595820902;}*/ ?>
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <meta name="renderer" content="webkit">
  8. <meta http-equiv="Cache-Control" content="no-siteapp" />
  9. <title>CRMEB管理系统</title>
  10. <!--[if lt IE 9]>
  11. <meta http-equiv="refresh" content="0;ie.html" />
  12. <![endif]-->
  13. <link rel="shortcut icon" href="/favicon.ico">
  14. <link href="/system/frame/css/bootstrap.min.css" rel="stylesheet">
  15. <link href="/system/frame/css/font-awesome.min.css" rel="stylesheet">
  16. <link href="/system/frame/css/animate.min.css" rel="stylesheet">
  17. <link href="/system/frame/css/style.min.css" rel="stylesheet">
  18. <style>
  19. .swal2-container{z-index: 100000000000!important;}
  20. </style>
  21. </head>
  22. <body class="fixed-sidebar full-height-layout gray-bg" style="overflow:hidden">
  23. <div id="wrapper">
  24. <!--左侧导航开始-->
  25. <nav class="navbar-default navbar-static-side" role="navigation">
  26. <div class="nav-close"><i class="fa fa-times-circle"></i>
  27. </div>
  28. <div class="sidebar-collapse">
  29. <ul class="nav" id="side-menu">
  30. <li class="nav-header">
  31. <div class="dropdown profile-element admin_open">
  32. <span>
  33. <img alt="image" class="imgbox" src="<?php echo htmlentities($site_logo); ?>" onerror="javascript:this.src='/system/images/admin_logo.png';"/>
  34. </span>
  35. <a data-toggle="dropdown" class="dropdown-toggle" href="#">
  36. <span class="clear" style="margin-top: 20px;">
  37. <span class="block m-t-xs"><strong class="font-bold"><?php echo htmlentities($_admin['real_name']); ?></strong></span>
  38. <span class="text-muted text-xs block"><?php echo !empty($role_name['role_name']) ? htmlentities($role_name['role_name']) : '管理员'; ?><b class="caret"></b></span>
  39. </span>
  40. </a>
  41. <ul class="dropdown-menu animated fadeInRight m-t-xs">
  42. <li><a class="J_menuItem admin_close" href="<?php echo Url('setting.systemAdmin/admin_info'); ?>">个人资料</a>
  43. </li>
  44. <li><a class="admin_close" target="_blank" href="http://www.crmeb.com/">联系我们</a>
  45. </li>
  46. <li class="divider"></li>
  47. <li><a href="<?php echo Url('login/logout'); ?>">安全退出</a>
  48. </li>
  49. </ul>
  50. </div>
  51. <div class="logo-element">CB
  52. </div>
  53. </li>
  54. <!-- 菜单 -->
  55. <?php if(is_array($menuList) || $menuList instanceof \think\Collection || $menuList instanceof \think\Paginator): $i = 0; $__LIST__ = $menuList;if( count($__LIST__)==0 ) : echo "" ;else: foreach($__LIST__ as $key=>$menu): $mod = ($i % 2 );++$i;if(isset($menu['child']) && count($menu['child']) > 0){ ?>
  56. <li>
  57. <a href="#"><i class="fa fa-<?php echo htmlentities($menu['icon']); ?>"></i> <span class="nav-label"><?php echo htmlentities($menu['menu_name']); ?></span><span class="fa arrow"></span></a>
  58. <ul class="nav nav-second-level">
  59. <?php if(is_array($menu['child']) || $menu['child'] instanceof \think\Collection || $menu['child'] instanceof \think\Paginator): $i = 0; $__LIST__ = $menu['child'];if( count($__LIST__)==0 ) : echo "" ;else: foreach($__LIST__ as $key=>$child): $mod = ($i % 2 );++$i;?>
  60. <li>
  61. <?php if(isset($child['child']) && count($child['child']) > 0){ ?>
  62. <a href="#"><i class="fa fa-<?php echo htmlentities($child['icon']); ?>"></i><?php echo htmlentities($child['menu_name']); ?><span class="fa arrow"></span></a>
  63. <ul class="nav nav-third-level">
  64. <?php if(is_array($child['child']) || $child['child'] instanceof \think\Collection || $child['child'] instanceof \think\Paginator): $i = 0; $__LIST__ = $child['child'];if( count($__LIST__)==0 ) : echo "" ;else: foreach($__LIST__ as $key=>$song): $mod = ($i % 2 );++$i;?>
  65. <li><a class="J_menuItem" href="<?php echo htmlentities($song['url']); ?>"><i class="fa fa-<?php echo htmlentities($song['icon']); ?>"></i> <?php echo htmlentities($song['menu_name']); ?></a></li>
  66. <?php endforeach; endif; else: echo "" ;endif; ?>
  67. </ul>
  68. <?php }else{ ?>
  69. <a class="J_menuItem" href="<?php echo htmlentities($child['url']); ?>"><i class="fa fa-<?php echo htmlentities($child['icon']); ?>"></i><?php echo htmlentities($child['menu_name']); ?></a>
  70. <?php } ?>
  71. </li>
  72. <?php endforeach; endif; else: echo "" ;endif; ?>
  73. </ul>
  74. </li>
  75. <?php } ?>
  76. <?php endforeach; endif; else: echo "" ;endif; ?>
  77. </ul>
  78. </div>
  79. </nav>
  80. <!--左侧导航结束-->
  81. <!--右侧部分开始-->
  82. <div id="page-wrapper" class="gray-bg dashbard-1">
  83. <div class="row content-tabs" @touchmove.prevent >
  84. <button class="roll-nav roll-left navbar-minimalize" style="padding: 0;margin: 0;"><i class="fa fa-bars"></i></button>
  85. <nav class="page-tabs J_menuTabs">
  86. <div class="page-tabs-content">
  87. <a href="javascript:;" class="active J_menuTab" data-id="<?php echo Url('Index/main'); ?>">首页</a>
  88. </div>
  89. </nav>
  90. <button class="roll-nav roll-right J_tabLeft"><i class="fa fa-backward"></i></button>
  91. <button class="roll-nav roll-right J_tabRight"><i class="fa fa-forward"></i></button>
  92. <a href="javascript:void(0);" class="roll-nav roll-right J_tabReply" title="返回"><i class="fa fa-reply"></i> </a>
  93. <a href="javascript:void(0);" class="roll-nav roll-right J_tabRefresh" title="刷新"><i class="fa fa-refresh"></i> </a>
  94. <a href="javascript:void(0);" class="roll-nav roll-right J_tabFullScreen" title="全屏"><i class="fa fa-arrows"></i> </a>
  95. <a href="javascript:void(0);" class="roll-nav roll-right J_notice" data-toggle="dropdown" aria-expanded="true" title="消息"><i class="fa fa-bell"></i> <span class="badge badge-danger" id="msgcount">0</span></a>
  96. <ul class="dropdown-menu dropdown-alerts dropdown-menu-right" >
  97. <li>
  98. <a class="J_menuItem" href="<?php echo Url('order.store_order/index'); ?>">
  99. <div>
  100. <i class="fa fa-building-o"></i> 待发货
  101. <span class="pull-right text-muted small" id="ordernum">0个</span>
  102. </div>
  103. </a>
  104. </li>
  105. <li class="divider"></li>
  106. <li>
  107. <a class="J_menuItem" href="<?php echo Url('store.store_product/index',array('type'=>5)); ?>">
  108. <div>
  109. <i class="fa fa-pagelines"></i> 库存预警 <span class="pull-right text-muted small" id="inventory">0个</span>
  110. </div>
  111. </a>
  112. </li>
  113. <li class="divider"></li>
  114. <li>
  115. <a class="J_menuItem" href="<?php echo Url('store.store_product_reply/index'); ?>">
  116. <div>
  117. <i class="fa fa-comments-o"></i> 新评论 <span class="pull-right text-muted small" id="commentnum">0个</span>
  118. </div>
  119. </a>
  120. </li>
  121. <li class="divider"></li>
  122. <li>
  123. <a class="J_menuItem" href="<?php echo Url('finance.user_extract/index'); ?>">
  124. <div>
  125. <i class="fa fa-cny"></i> 申请提现 <span class="pull-right text-muted small" id="reflectnum">0个</span>
  126. </div>
  127. </a>
  128. </li>
  129. </ul>
  130. <a href="javascript:void(0);" class="roll-nav roll-right J_tabSetting right-sidebar-toggle" title="更多"><i class="fa fa-tasks"></i></a>
  131. <div class="btn-group roll-nav roll-right">
  132. <button class="dropdown J_tabClose" data-toggle="dropdown">关闭<span class="caret"></span>
  133. </button>
  134. <ul role="menu" class="dropdown-menu dropdown-menu-right">
  135. <li class="J_tabShowActive"><a>定位当前选项卡</a>
  136. </li>
  137. <li class="divider"></li>
  138. <li class="J_tabCloseAll"><a>关闭全部选项卡</a>
  139. </li>
  140. <li class="J_tabCloseOther"><a>关闭其他选项卡</a>
  141. </li>
  142. </ul>
  143. </div>
  144. </div>
  145. <!--内容展示模块-->
  146. <div class="row J_mainContent" id="content-main">
  147. <iframe class="J_iframe" name="iframe_crmeb_main" width="100%" height="100%" src="<?php echo Url('Index/main'); ?>" frameborder="0" data-id="<?php echo Url('Index/main'); ?>" seamless></iframe>
  148. </div>
  149. <!--底部版权-->
  150. <div class="footer" @touchmove.prevent>
  151. <div class="pull-right">© 2017-2021 <a href="http://www.crmeb.com/" target="_blank">CRMEB</a>
  152. </div>
  153. </div>
  154. </div>
  155. <!--右侧部分结束-->
  156. <!--右侧边栏开始-->
  157. <div id="right-sidebar">
  158. <div class="sidebar-container">
  159. <ul class="nav nav-tabs navs-3">
  160. <!-- <li class="active">-->
  161. <!-- <a data-toggle="tab" href="#tab-1">-->
  162. <!-- <i class="fa fa-bell"></i>通知-->
  163. <!-- </a>-->
  164. <!-- </li>-->
  165. <li class="active">
  166. <a data-toggle="tab" href="#tab-1">
  167. <i class="fa fa-gear"></i> 设置
  168. </a>
  169. </li>
  170. </ul>
  171. <div class="tab-content">
  172. <!-- <div id="tab-1" class="tab-pane active">-->
  173. <!-- <div class="sidebar-title">-->
  174. <!-- <h3><i class="fa fa-comments-o"></i> 最新通知</h3>-->
  175. <!-- <small><i class="fa fa-tim"></i> 您当前有0条未读信息</small>-->
  176. <!-- </div>-->
  177. <!-- <div>-->
  178. <!-- </div>-->
  179. <!-- </div>-->
  180. <div id="tab-1" class="tab-pane active">
  181. <div class="sidebar-title">
  182. <h3><i class="fa fa-comments-o"></i> 提示</h3>
  183. <small><i class="fa fa-tim"></i> 你可以从这里选择和预览主题的布局和样式,这些设置会被保存在本地,下次打开的时候会直接应用这些设置。</small>
  184. </div>
  185. <div class="skin-setttings">
  186. <div class="title">设置</div>
  187. <div class="setings-item">
  188. <span>收起左侧菜单</span>
  189. <div class="switch">
  190. <div class="onoffswitch">
  191. <input type="checkbox" name="collapsemenu" class="onoffswitch-checkbox" id="collapsemenu">
  192. <label class="onoffswitch-label" for="collapsemenu">
  193. <span class="onoffswitch-inner"></span> <span class="onoffswitch-switch"></span>
  194. </label>
  195. </div>
  196. </div>
  197. </div>
  198. <div class="setings-item">
  199. <span>固定宽度</span>
  200. <div class="switch">
  201. <div class="onoffswitch">
  202. <input type="checkbox" name="boxedlayout" class="onoffswitch-checkbox" id="boxedlayout">
  203. <label class="onoffswitch-label" for="boxedlayout">
  204. <span class="onoffswitch-inner"></span> <span class="onoffswitch-switch"></span>
  205. </label>
  206. </div>
  207. </div>
  208. </div>
  209. <div class="setings-item">
  210. <span>菜单点击刷新</span>
  211. <div class="switch">
  212. <div class="onoffswitch">
  213. <input type="checkbox" name="refresh" class="onoffswitch-checkbox" id="refresh">
  214. <label class="onoffswitch-label" for="refresh">
  215. <span class="onoffswitch-inner"></span> <span class="onoffswitch-switch"></span>
  216. </label>
  217. </div>
  218. </div>
  219. </div>
  220. <div class="title">皮肤选择</div>
  221. <div class="setings-item default-skin nb">
  222. <span class="skin-name ">
  223. <a href="#" class="s-skin-0">
  224. 默认皮肤
  225. </a>
  226. </span>
  227. </div>
  228. <div class="setings-item blue-skin nb">
  229. <span class="skin-name ">
  230. <a href="#" class="s-skin-1">
  231. 蓝色主题
  232. </a>
  233. </span>
  234. </div>
  235. <div class="setings-item yellow-skin nb">
  236. <span class="skin-name ">
  237. <a href="#" class="s-skin-3">
  238. 黄色/紫色主题
  239. </a>
  240. </span>
  241. </div>
  242. </div>
  243. </div>
  244. </div>
  245. </div>
  246. </div>
  247. <!--右侧边栏结束-->
  248. </div>
  249. <!--vue调用不能删除-->
  250. <div id="vm"></div>
  251. <script src="/system/frame/js/jquery.min.js"></script>
  252. <script src="/system/frame/js/bootstrap.min.js"></script>
  253. <script src="/static/plug/helper.js"></script>
  254. <script src="/system/frame/js/plugins/metisMenu/jquery.metisMenu.js"></script>
  255. <script src="/system/frame/js/plugins/slimscroll/jquery.slimscroll.min.js"></script>
  256. <script src="/system/frame/js/plugins/layer/layer.min.js"></script>
  257. <script src="/system/frame/js/hplus.min.js"></script>
  258. <script src="/system/frame/js/contabs.min.js"></script>
  259. <script src="/system/frame/js/plugins/pace/pace.min.js"></script>
  260. <!--<script type="text/javascript" src="/static/plug/basket.js"></script>-->
  261. <script type="text/javascript" src="/static/plug/requirejs/require.js"></script>
  262. <?php /* <script type="text/javascript" src="/static/plug/requirejs/require-basket-load.js"></script> */ ?>
  263. <script>
  264. var hostname = location.hostname;
  265. if(location.port) hostname += ':' + location.port;
  266. requirejs.config({
  267. map: {
  268. '*': {
  269. 'css': '/static/plug/requirejs/require-css.js'
  270. }
  271. },
  272. shim:{
  273. 'iview':{
  274. deps:['css!iviewcss']
  275. },
  276. 'layer':{
  277. deps:['css!layercss']
  278. }
  279. },
  280. baseUrl:'//'+hostname+'/',
  281. paths: {
  282. 'static':'static',
  283. 'system':'system',
  284. 'vue':'static/plug/vue/dist/vue.min',
  285. 'axios':'static/plug/axios.min',
  286. 'iview':'static/plug/iview/dist/iview.min',
  287. 'iviewcss':'static/plug/iview/dist/styles/iview',
  288. 'lodash':'static/plug/lodash',
  289. 'layer':'static/plug/layer/layer',
  290. 'layercss':'static/plug/layer/theme/default/layer',
  291. 'jquery':'static/plug/jquery/jquery.min',
  292. 'moment':'static/plug/moment',
  293. 'sweetalert':'static/plug/sweetalert2/sweetalert2.all.min',
  294. 'formCreate':'/static/plug/form-create/form-create.min',
  295. },
  296. basket: {
  297. excludes:['system/js/index','system/util/mpVueComponent','system/util/mpVuePackage']
  298. // excludes:['system/util/mpFormBuilder','system/js/index','system/util/mpVueComponent','system/util/mpVuePackage']
  299. }
  300. });
  301. </script>
  302. <script type="text/javascript" src="/system/util/mpFrame.js"></script>
  303. <script>
  304. window.newOrderAudioLink= '<?php echo htmlentities($new_order_audio_link); ?>';
  305. window.workermanPort = '<?php echo htmlentities($workermanPort); ?>';
  306. </script>
  307. <script src="/system/frame/js/index.js"></script>
  308. </body>
  309. </html>