mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-29 18:48:45 +08:00
4f4ca56008
* 修复 office-viewer 本地文件加载出错 * 尝试修复 coverage 报错 * 去掉 console.log * numbering 每个层级重置 * 忽略 cnfStyle
70 lines
1.9 KiB
HTML
70 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>amis app 模式</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<link
|
|
type="image/x-icon"
|
|
rel="shortcut icon"
|
|
href="../static/favicon.png"
|
|
/>
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1, maximum-scale=1"
|
|
/>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
|
|
<link rel="stylesheet" href="../static/iconfont.css" />
|
|
<link rel="stylesheet" href="../static/officefont.css" />
|
|
<link
|
|
rel="stylesheet"
|
|
href="../../node_modules/@fortawesome/fontawesome-free/css/all.css"
|
|
/>
|
|
<link
|
|
rel="stylesheet"
|
|
href="../../node_modules/@fortawesome/fontawesome-free/css/v4-shims.css"
|
|
/>
|
|
<style>
|
|
.app-wrapper,
|
|
.schema-wrapper {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
<script type="module">
|
|
let theme = localStorage.getItem('amis-theme') || 'cxd';
|
|
if (theme === 'default') {
|
|
theme = 'cxd';
|
|
}
|
|
|
|
['ang', 'cxd', 'dark', 'antd'].forEach(key => {
|
|
const link = document.createElement('link');
|
|
link.setAttribute('rel', 'stylesheet');
|
|
link.setAttribute('title', key);
|
|
if (theme !== key) {
|
|
link.setAttribute('disabled', 'disabled');
|
|
}
|
|
link.setAttribute(
|
|
'href',
|
|
new URL(
|
|
`../../packages/amis-ui/scss/themes/${key}.scss`,
|
|
import.meta.url
|
|
).href
|
|
);
|
|
document.head.appendChild(link);
|
|
});
|
|
</script>
|
|
<link rel="stylesheet" href="../../packages/amis-ui/scss/helper.scss" />
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root" class="app-wrapper"></div>
|
|
<script type="module">
|
|
import {bootstrap} from './index.jsx';
|
|
const initialState = {};
|
|
bootstrap(document.getElementById('root'), initialState);
|
|
</script>
|
|
</body>
|
|
</html>
|