| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- include($_SERVER['DOCUMENT_ROOT'] . "/Authorization/script/php/permission/check_right.php");
- ?>
- <!doctype html>
- <html class="fixed">
- <head>
- <?php include("bim-support-header.html"); ?>
- <!-- vue3 -->
- <script src="https://unpkg.com/vue@next"></script>
- <script src="./script/js/global.js"></script>
- <script type="application/javascript">
- var userName = "<?php echo $_SESSION['name'] ?>";
- var role = "<?php echo ($groupName); ?>";
- var right = <?php echo ($right); ?>;
- var pageHeader = '首頁';
- </script>
- </head>
- <body>
- <section class="body">
- <!-- start: header -->
- <header-menu></header-menu>
- <!-- end: header -->
- <div class="inner-wrapper">
- <!-- start: sidebar -->
- <side-bar></side-bar>
- <!-- end: sidebar -->
- <section role="main" class="content-body">
- <header class="page-header">
- <h2>{{pageHeader}}</h2>
- </header>
- <h1>BIM資訊系統</h1>
- <h4>
- BIM資源網提供元件庫、API庫以及樣版庫,使用git管理元件、API以及樣板及其之版本控制,可瀏覽所有元件、API及樣板的內容及其相關屬性,以利下載自己所需之檔案。<br>
- </h4>
- </div>
- </section>
- <script>
- vm.mount('.body');
- addUserImage(userName.charAt(0), role);
- </script>
- <?php include("bim-support-body.html"); ?>
- </body>
- </html>
|