a940df680fb1acfda1215ae1f3eb45b0.php 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?php /*a:2:{s:59:"D:\phpEnv\www\SCM-API\app\admin\view\auth\depart\index.html";i:1750736984;s:52:"D:\phpEnv\www\SCM-API\app\admin\view\layout\vue.html";i:1750736984;}*/ ?>
  2. <!DOCTYPE html>
  3. <html <?php if($config['elementUi']['dark']): ?>class="dark"<?php endif; ?>>
  4. <head>
  5. <meta charset="utf-8">
  6. <title><?php echo site_config('basic.sitename'); ?></title>
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
  8. <meta name="renderer" content="webkit">
  9. <meta name="referrer" content="never">
  10. <meta name="robots" content="noindex, nofollow">
  11. <link rel="shortcut icon" href="<?php echo request()->domain(); ?>/favicon.ico" />
  12. <link rel="stylesheet" href="<?php echo request()->domain(); ?>/assets/css/element-plus.css" />
  13. <link rel="stylesheet" href="<?php echo request()->domain(); ?>/assets/css/theme/dark.css" />
  14. <link rel="stylesheet" href="<?php echo request()->domain(); ?>/assets/libs/font-awesome/css/font-awesome.min.css" />
  15. <link rel="stylesheet" href="<?php echo request()->domain(); ?>/assets/css/yunqi.css" />
  16. </head>
  17. <body>
  18. <div id="app">
  19. <el-container id="container" style="display: none;">
  20. <el-main style="padding: 0px;border-radius:4px;" id="mainScrollbar">
  21. <el-scrollbar>
  22. <el-card shadow="never">
  23. <yun-table
  24. :columns="columns"
  25. :common-search="false"
  26. :pagination="false"
  27. order="asc"
  28. ref="yuntable"
  29. :is-tree="true"
  30. :tree-expand-all="true"
  31. toolbar="refresh,add,del"
  32. :auth="auth"
  33. :extend="extend">
  34. </yun-table>
  35. </el-card>
  36. </el-scrollbar>
  37. </el-main>
  38. </el-container>
  39. </div>
  40. </body>
  41. <script type="text/javascript" src="<?php echo request()->domain(); ?>/assets/js/yunqi.js?v=<?php echo htmlentities((string) $config['version']); ?>"></script>
  42. <script type="text/javascript">
  43. Yunqi.setConfig(<?php echo json_encode($config,JSON_UNESCAPED_UNICODE|JSON_UNESCAPED_SLASHES); ?>);
  44. Yunqi.setData(<?php echo build_var_json(get_defined_vars()); ?>);
  45. Yunqi.setAuth(<?php echo json_encode($auth->getBackendAuth(),JSON_UNESCAPED_UNICODE|JSON_UNESCAPED_SLASHES); ?>);
  46. </script>
  47. <script type="module">
  48. import pageinfo from '<?php echo htmlentities((string) $config['baseUrl']); ?>ajax/js/a940df680fb1acfda1215ae1f3eb45b0';
  49. import zhcn from '<?php echo request()->domain(); ?>/assets/js/zh-cn.js';
  50. try{
  51. Yunqi.setUp(pageinfo,zhcn);
  52. }catch (e){
  53. console.error(e);
  54. }
  55. </script>
  56. </html>