mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-29 18:48:45 +08:00
6aa492309e
ansi-to-react 到 6.1.6 exceljs 到 4.3.0 hls.js 到 1.0.10 sortablejs 到 1.14.0 tinymce 到 5.9.1 fontawesome 到 5.14.4 copy-to-clipboard 到 3.3.1 去掉 animate.css 依赖 playground 使用 json5 支持非标准 json 格式
114 lines
3.7 KiB
HTML
114 lines
3.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>amis - 低代码前端框架</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="@fortawesome/fontawesome-free/css/all.css" />
|
|
<link
|
|
rel="stylesheet"
|
|
href="@fortawesome/fontawesome-free/css/v4-shims.css"
|
|
/>
|
|
<link rel="stylesheet" href="prismjs/themes/prism.css" />
|
|
<!--DEPENDENCIES_INJECT_PLACEHOLDER-->
|
|
<link rel="stylesheet" href="./doc.css" />
|
|
|
|
<link rel="stylesheet" href="./style.scss" />
|
|
<!--STYLE_PLACEHOLDER-->
|
|
<style>
|
|
.app-wrapper,
|
|
.schema-wrapper {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
<script type="text/x-jsx">
|
|
let theme = localStorage.getItem('theme') || 'cxd';
|
|
if (theme === 'default') {
|
|
theme = 'cxd';
|
|
}
|
|
|
|
// 非 IE 模式
|
|
if (window.navigator.userAgent.indexOf('Trident') === -1) {
|
|
document.write(
|
|
`<link rel="stylesheet" title="ang" ${
|
|
theme !== 'ang' ? 'disabled' : ''
|
|
} href="${__uri('../scss/themes/ang.scss')}" />`
|
|
);
|
|
document.write(
|
|
`<link rel="stylesheet" title="cxd" ${
|
|
theme !== 'cxd' ? 'disabled' : ''
|
|
} href="${__uri('../scss/themes/cxd.scss')}" />`
|
|
);
|
|
document.write(
|
|
`<link rel="stylesheet" title="dark" ${
|
|
theme !== 'dark' ? 'disabled' : ''
|
|
} href="${__uri('../scss/themes/dark.scss')}" />`
|
|
);
|
|
document.write(
|
|
`<link rel="stylesheet" title="antd" ${
|
|
theme !== 'antd' ? 'disabled' : ''
|
|
} href="${__uri('../scss/themes/antd.scss')}" />`
|
|
);
|
|
} else {
|
|
document.write(
|
|
`<link rel="stylesheet" title="ang" ${
|
|
theme !== 'ang' ? 'disabled' : ''
|
|
} href="${__uri('../scss/themes/ang-ie11.scss')}" />`
|
|
);
|
|
document.write(
|
|
`<link rel="stylesheet" title="cxd" ${
|
|
theme !== 'cxd' ? 'disabled' : ''
|
|
} href="${__uri('../scss/themes/cxd-ie11.scss')}" />`
|
|
);
|
|
document.write(
|
|
`<link rel="stylesheet" title="dark" ${
|
|
theme !== 'dark' ? 'disabled' : ''
|
|
} href="${__uri('../scss/themes/dark-ie11.scss')}" />`
|
|
);
|
|
document.write(
|
|
`<link rel="stylesheet" title="antd" ${
|
|
theme !== 'antd' ? 'disabled' : ''
|
|
} href="${__uri('../scss/themes/antd-ie11.scss')}" />`
|
|
);
|
|
}
|
|
</script>
|
|
<!--ignore-->
|
|
<link rel="stylesheet" href="../scss/helper.scss" />
|
|
<!--ignore-->
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root" class="app-wrapper"></div>
|
|
<script src="./mod.js"></script>
|
|
<script type="text/javascript">
|
|
if (location.hostname !== 'localhost') {
|
|
var _hmt = _hmt || [];
|
|
|
|
// 百度统计
|
|
(function () {
|
|
var hm = document.createElement('script');
|
|
hm.src =
|
|
'https://hm.baidu.com/hm.js?286766a21abb57abefedbd5257a26dc8';
|
|
var s = document.getElementsByTagName('script')[0];
|
|
s.parentNode.insertBefore(hm, s);
|
|
})();
|
|
}
|
|
|
|
/* @require ./index.jsx 标记为同步依赖,提前加载 */
|
|
amis.require(['./index.jsx'], function (app) {
|
|
var initialState = {};
|
|
app.bootstrap(document.getElementById('root'), initialState);
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|