3ff4f3660c116357c4f0f3eb693da3a1.php 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?php /*a:2:{s:59:"D:\phpEnv\www\SCM-API\app\admin\view\common\recyclebin.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" style="border:0;">
  23. <yun-table
  24. :columns='recyclebin_("init")'
  25. search="<?php echo htmlentities((string) $search); ?>"
  26. ref="yuntable"
  27. :common-search="false"
  28. :extend="extend"
  29. toolbar="refresh,restore,destroy,restoreall,clear">
  30. <template #toolbar="{tool,selections}">
  31. <el-button v-if="tool=='restore'" type="success" @click.stop="recyclebin_('restore',selections)" :disabled="selections.length == 0"><i class="fa fa-rotate-left"></i>&nbsp;还原</el-button>
  32. <el-button v-if="tool=='destroy'" type="danger" @click.stop="recyclebin_('destroy',selections)" :disabled="selections.length == 0"><i class="fa fa-remove"></i>&nbsp;彻底删除</el-button>
  33. <el-button v-if="tool=='restoreall'" type="warning" @click.stop="recyclebin_('restoreall')"><i class="fa fa-rotate-left"></i>&nbsp;全部还原</el-button>
  34. <el-button v-if="tool=='clear'" type="danger" @click.stop="recyclebin_('clear')"><i class="fa fa-remove"></i>&nbsp;全部清空</el-button>
  35. </template>
  36. </yun-table>
  37. </el-card>
  38. </el-scrollbar>
  39. </el-main>
  40. </el-container>
  41. </div>
  42. </body>
  43. <script type="text/javascript" src="<?php echo request()->domain(); ?>/assets/js/yunqi.js?v=<?php echo htmlentities((string) $config['version']); ?>"></script>
  44. <script type="text/javascript">
  45. Yunqi.setConfig(<?php echo json_encode($config,JSON_UNESCAPED_UNICODE|JSON_UNESCAPED_SLASHES); ?>);
  46. Yunqi.setData(<?php echo build_var_json(get_defined_vars()); ?>);
  47. Yunqi.setAuth(<?php echo json_encode($auth->getBackendAuth(),JSON_UNESCAPED_UNICODE|JSON_UNESCAPED_SLASHES); ?>);
  48. </script>
  49. <script type="module">
  50. import pageinfo from '<?php echo htmlentities((string) $config['baseUrl']); ?>ajax/js/3ff4f3660c116357c4f0f3eb693da3a1';
  51. import zhcn from '<?php echo request()->domain(); ?>/assets/js/zh-cn.js';
  52. try{
  53. Yunqi.setUp(pageinfo,zhcn);
  54. }catch (e){
  55. console.error(e);
  56. }
  57. </script>
  58. </html>