mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-29 18:48:45 +08:00
d43922db81
* feat(editor): 表单支持外观配置 * bugfix * 优化获取cssVar逻辑 * 优化外观默认值 * 删除外观继承相关逻辑 * 更新快照 * 表单布局 * 表单默认mode优化为flex * 优化colorpicker交互 * 优化编辑器表单布局配置 * 表单静态展示外观配置 * bugfix * feat: crud2支持外观配置 * crud 外观默认值 * bugfix * 多行文本支持外观配置 * 下拉框支持外观配置 * 修复table表头无法居中对齐问题 * style: 优化表格样式 * bugfix --------- Co-authored-by: qinhaoyan <30946345+qinhaoyan@users.noreply.github.com>
58 lines
1.5 KiB
HTML
58 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>amis 可视化编辑器</title>
|
|
<link
|
|
data-react-helmet="true"
|
|
rel="shortcut icon"
|
|
href="https://avatars.githubusercontent.com/u/78204817?s=200&v=4"
|
|
/>
|
|
<link
|
|
data-react-helmet="true"
|
|
rel="shortcut icon"
|
|
href="https://avatars.githubusercontent.com/u/78204817?s=200&v=4"
|
|
/>
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://bce.bdstatic.com/iconfont/iconfont.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"
|
|
/>
|
|
<link
|
|
rel="stylesheet"
|
|
title="cxd"
|
|
id="baseStyle"
|
|
href="../amis-ui/scss/themes/cxd.scss"
|
|
/>
|
|
<link rel="stylesheet" title="cxd" href="../amis-ui/scss/helper.scss" />
|
|
<link rel="stylesheet" href="../amis-editor-core/scss/editor.scss" />
|
|
<link rel="stylesheet" href="../../../examples/doc.css" />
|
|
<link rel="stylesheet" href="./examples/style.scss" />
|
|
<style>
|
|
.app-wrapper {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module">
|
|
import {bootstrap} from './index';
|
|
|
|
var initialState = {};
|
|
bootstrap(document.getElementById('root'), initialState);
|
|
</script>
|
|
</body>
|
|
</html>
|