60ca8412ce2097f68af354ffecf026cb.php 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?php /*a:2:{s:58:"D:\phpEnv\www\SCM-API\app\admin\view\user\index\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. search="nickname,mobile"
  26. toolbar="refresh,edit,del,recyclebin,more"
  27. ref="yuntable"
  28. :auth="auth"
  29. :extend="extend">
  30. </yun-table>
  31. </el-card>
  32. </el-scrollbar>
  33. </el-main>
  34. </el-container>
  35. </div>
  36. </body>
  37. <script type="text/javascript" src="<?php echo request()->domain(); ?>/assets/js/yunqi.js?v=<?php echo htmlentities((string) $config['version']); ?>"></script>
  38. <script type="text/javascript">
  39. Yunqi.setConfig(<?php echo json_encode($config,JSON_UNESCAPED_UNICODE|JSON_UNESCAPED_SLASHES); ?>);
  40. Yunqi.setData(<?php echo build_var_json(get_defined_vars()); ?>);
  41. Yunqi.setAuth(<?php echo json_encode($auth->getBackendAuth(),JSON_UNESCAPED_UNICODE|JSON_UNESCAPED_SLASHES); ?>);
  42. </script>
  43. <script type="module">
  44. import pageinfo from '<?php echo htmlentities((string) $config['baseUrl']); ?>ajax/js/60ca8412ce2097f68af354ffecf026cb';
  45. import zhcn from '<?php echo request()->domain(); ?>/assets/js/zh-cn.js';
  46. try{
  47. Yunqi.setUp(pageinfo,zhcn);
  48. }catch (e){
  49. console.error(e);
  50. }
  51. </script>
  52. </html>