1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
| <!DOCTYPE html>
| <html>
| <head>
| <meta charset="utf-8">
| <meta http-equiv="X-UA-Compatible" content="IE=edge">
| <title>欢迎页</title>
| <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
| <script src="../../../js/paramconfig.js"></script>
| <script>
| remoteToLoadCss("BootStrap4/assets/css/style.css");
| </script>
| <style>
| .col-xl-3{
| flex:0 0 40%;
| }
| .card-box{
| padding:10px;
| margin-bottom:10px;
| }
| body {
| background-color: white;
| }
| </style>
| </head>
| <body>
| <div id="text" style="margin-top:10px">
| </div>
|
| <script>
| window.onload = function () {
| parent.mainmenu();
| }
| </script>
| </body>
|
| </html>
|
|