259cba25b9e72cf7bcc32cd25826420f.php 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php /*a:2:{s:58:"D:\phpEnv\www\SCM-API\app\admin\view\auth\group\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. <template #header>
  24. <el-alert effect="dark" :closable="false" title="使用说明">角色组可以有多个,角色有上下级层级关系,如果子角色有角色组和管理员的权限则可以派生属于自己组别的下级角色组或管理员</el-alert>
  25. </template>
  26. <yun-table
  27. :columns="columns"
  28. :common-search="false"
  29. :pagination="false"
  30. order="asc"
  31. ref="yuntable"
  32. :is-tree="true"
  33. :tree-expand-all="true"
  34. toolbar="refresh,add,del"
  35. :auth="auth"
  36. :extend="extend">
  37. </yun-table>
  38. </el-card>
  39. </el-scrollbar>
  40. </el-main>
  41. </el-container>
  42. </div>
  43. </body>
  44. <script type="text/javascript" src="<?php echo request()->domain(); ?>/assets/js/yunqi.js?v=<?php echo htmlentities((string) $config['version']); ?>"></script>
  45. <script type="text/javascript">
  46. Yunqi.setConfig(<?php echo json_encode($config,JSON_UNESCAPED_UNICODE|JSON_UNESCAPED_SLASHES); ?>);
  47. Yunqi.setData(<?php echo build_var_json(get_defined_vars()); ?>);
  48. Yunqi.setAuth(<?php echo json_encode($auth->getBackendAuth(),JSON_UNESCAPED_UNICODE|JSON_UNESCAPED_SLASHES); ?>);
  49. </script>
  50. <script type="module">
  51. import pageinfo from '<?php echo htmlentities((string) $config['baseUrl']); ?>ajax/js/259cba25b9e72cf7bcc32cd25826420f';
  52. import zhcn from '<?php echo request()->domain(); ?>/assets/js/zh-cn.js';
  53. try{
  54. Yunqi.setUp(pageinfo,zhcn);
  55. }catch (e){
  56. console.error(e);
  57. }
  58. </script>
  59. </html>