mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-03 20:48:49 +08:00
Merge branch 'master' into master
This commit is contained in:
commit
0b7e09b511
@ -2,32 +2,34 @@
|
||||
|
||||
组合模式,支持自由组合多个表单项。当设置成单选时数据格式为对象,当设置成多选时数据格式为数组,数组成员是对象(flat 模式可以直接是某个表单单项的数值)。
|
||||
|
||||
- `type` 请设置成 `combo`
|
||||
- `multiple` 默认为 `false` 配置是否为多选模式
|
||||
- `controls` 配置组合成员,所有成员都是横向展示,可以是任意 [FormItem](./FormItem.md)
|
||||
- `controls[x].columnClassName` 列的类名,可以用它配置列宽度。默认平均分配。
|
||||
- `controls[x].unique` 设置当前列值是否唯一,即不允许重复选择。
|
||||
- `maxLength` 当 multiple 为 true 的时候启用,设置可以最大项数。
|
||||
- `flat` 默认为 `false`, 是否将结果扁平化(去掉 name),只有当 controls 的 length 为 1 且 multiple 为 true 的时候才有效。
|
||||
- `joinValues` 默认为 `true` 当扁平化开启的时候,是否用分隔符的形式发送给后端,否则采用 array 的方式。
|
||||
- `delimiter` 当扁平化开启并且 joinValues 为 true 时,用什么分隔符。
|
||||
- `multiLine` 默认是横着展示一排,设置以后竖着展示
|
||||
- `addable` 是否可新增。
|
||||
- `removable` 是否可删除
|
||||
- `deleteApi` 如果配置了,则删除前会发送一个 api,请求成功才完成删除!
|
||||
- `deleteConfirmText` 默认为 `确认要删除?`,当配置 `deleteApi` 才生效!删除时用来做用户确认!
|
||||
- `draggable` 默认为 `false`, 是否可以拖动排序, 需要注意的是当启用拖动排序的时候,会多一个\$id 字段
|
||||
- `draggableTip` 可拖拽的提示文字,默认为:`"可通过拖动每行中的【交换】按钮进行顺序调整"`
|
||||
- `addButtonText` 新增按钮文字,默认为 `"新增"`。
|
||||
- `minLength` 限制最小长度。
|
||||
- `maxLength` 限制最大长度。
|
||||
- `scaffold` 单组表单项初始值。默认为 `{}`。
|
||||
- `canAccessSuperData` 指定是否可以自动获取上层的数据并映射到表单项上,默认是`false`。
|
||||
- `conditions` 数组的形式包含所有条件的渲染类型,单个数组内的`test` 为判断条件,数组内的`controls`为符合该条件后渲染的`schema`
|
||||
- `typeSwitchable` 是否可切换条件,配合`conditions`使用
|
||||
- `formClassName` 单组表单项的类名
|
||||
- `noBorder` 单组表单项是否有边框
|
||||
- **还有更多通用配置请参考** [FormItem](./FormItem.md)
|
||||
- `type` 请设置成 `combo`
|
||||
- `multiple` 默认为 `false` 配置是否为多选模式
|
||||
- `controls` 配置组合成员,所有成员都是横向展示,可以是任意 [FormItem](./FormItem.md)
|
||||
- `controls[x].columnClassName` 列的类名,可以用它配置列宽度。默认平均分配。
|
||||
- `controls[x].unique` 设置当前列值是否唯一,即不允许重复选择。
|
||||
- `maxLength` 当 multiple 为 true 的时候启用,设置可以最大项数。
|
||||
- `flat` 默认为 `false`, 是否将结果扁平化(去掉 name),只有当 controls 的 length 为 1 且 multiple 为 true 的时候才有效。
|
||||
- `joinValues` 默认为 `true` 当扁平化开启的时候,是否用分隔符的形式发送给后端,否则采用 array 的方式。
|
||||
- `delimiter` 当扁平化开启并且 joinValues 为 true 时,用什么分隔符。
|
||||
- `multiLine` 默认是横着展示一排,设置以后竖着展示
|
||||
- `addable` 是否可新增。
|
||||
- `removable` 是否可删除
|
||||
- `deleteApi` 如果配置了,则删除前会发送一个 api,请求成功才完成删除!
|
||||
- `deleteConfirmText` 默认为 `确认要删除?`,当配置 `deleteApi` 才生效!删除时用来做用户确认!
|
||||
- `draggable` 默认为 `false`, 是否可以拖动排序, 需要注意的是当启用拖动排序的时候,会多一个\$id 字段
|
||||
- `draggableTip` 可拖拽的提示文字,默认为:`"可通过拖动每行中的【交换】按钮进行顺序调整"`
|
||||
- `addButtonText` 新增按钮文字,默认为 `"新增"`。
|
||||
- `minLength` 限制最小长度。
|
||||
- `maxLength` 限制最大长度。
|
||||
- `scaffold` 单组表单项初始值。默认为 `{}`。
|
||||
- `canAccessSuperData` 指定是否可以自动获取上层的数据并映射到表单项上,默认是`false`。
|
||||
- `conditions` 数组的形式包含所有条件的渲染类型,单个数组内的`test` 为判断条件,数组内的`controls`为符合该条件后渲染的`schema`
|
||||
- `typeSwitchable` 是否可切换条件,配合`conditions`使用
|
||||
- `formClassName` 单组表单项的类名
|
||||
- `noBorder` 单组表单项是否有边框
|
||||
- `strictMode` 默认为严格模式,设置为 false 时,当其他表单项更新是,里面的表单项也可以及时获取,否则不会。
|
||||
- `syncFields` 配置同步字段。只有 strictMode 为 false 时有效。如果 combo 层级比较深,底层的获取外层的数据可能不同步。但是给 combo 配置这个属性就能同步下来。输入格式:`["os"]`
|
||||
- **还有更多通用配置请参考** [FormItem](./FormItem.md)
|
||||
|
||||
#### 单行模式
|
||||
|
||||
@ -222,14 +224,13 @@
|
||||
}
|
||||
```
|
||||
|
||||
- `conditions` Array<Condition> 数组,每个成员是一种类型
|
||||
- `conditions[x].label` 类型名称
|
||||
- `conditions[x].test` 表达式,目标成员数据是否属于这个类型?
|
||||
- `conditions[x].scaffold` 初始数据,当新增的时候直接使用此数据。
|
||||
- `conditions[x].controls` 该类型的表单设置。
|
||||
- `conditions` Array<Condition> 数组,每个成员是一种类型
|
||||
- `conditions[x].label` 类型名称
|
||||
- `conditions[x].test` 表达式,目标成员数据是否属于这个类型?
|
||||
- `conditions[x].scaffold` 初始数据,当新增的时候直接使用此数据。
|
||||
- `conditions[x].controls` 该类型的表单设置。
|
||||
- `typeSwitchable` 类型是否允许切换,如果设置成 true 会多一个类型切换的按钮。
|
||||
|
||||
|
||||
#### Tabs 模式
|
||||
|
||||
默认成员是一个一个排列的,如果数据比较多优点让人眼花缭乱。所以 Combo 支持了 tabs 的排列方式。
|
||||
|
@ -2,30 +2,26 @@
|
||||
|
||||
图片格式输入,默认 amis 会直接存储在 FEX 的 hiphoto 里面,提交到 form 是直接的图片 url。
|
||||
|
||||
- `type` 请设置成 `image`
|
||||
- `reciever` 默认 `/api/upload` 如果想自己存储,请设置此选项。
|
||||
- `multiple` 是否多选。
|
||||
- `maxLength` 默认没有限制,当设置后,一次只允许上传指定数量文件。
|
||||
- `joinValues` 多选时是否将多个值用 `delimiter` 连接起来。
|
||||
- `extractValue` 默认为 `false`, `joinValues`设置为`false`时生效, 开启后将选中的选项 value 的值封装为数组,作为当前表单项的值。
|
||||
- `delimiter` 连接符,默认是 `,`, 多选时且 `joinValues` 为 `true` 时用来连接值。
|
||||
- `autoUpload` 是否选择完就自动开始上传?默认为 `true`
|
||||
- `compress` 默认 `true` 如果想默认压缩请开启。
|
||||
- `compressOptions`
|
||||
- `maxWidth` 设置最大宽度。
|
||||
- `maxHeight` 设置最大高度。
|
||||
- `showCompressOptions` 默认为 false, 开启后,允许用户输入压缩选项。
|
||||
- `crop` 用来设置是否支持裁剪。
|
||||
- `aspectRatio` 浮点型,默认 `1` 即 `1:1`,如果要设置 `16:9` 请设置 `1.7777777777777777` 即 `16 / 9`。
|
||||
- `limit` 限制图片大小,超出不让上传。
|
||||
- `width` 限制图片宽度。
|
||||
- `height` 限制图片高度。
|
||||
- `minWidth` 限制图片最小宽度。
|
||||
- `minHeight` 限制图片最小高度。
|
||||
- `maxWidth` 限制图片最大宽度。
|
||||
- `maxHeight` 限制图片最大高度。
|
||||
- `aspectRatio` 限制图片宽高比,格式为浮点型数字,默认 `1` 即 `1:1`,如果要设置 `16:9` 请设置 `1.7777777777777777` 即 `16 / 9`。。
|
||||
- **还有更多通用配置请参考** [FormItem](./FormItem.md)
|
||||
- `type` 请设置成 `image`
|
||||
- `reciever` 默认 `/api/upload` 如果想自己存储,请设置此选项。
|
||||
- `multiple` 是否多选。
|
||||
- `maxLength` 默认没有限制,当设置后,一次只允许上传指定数量文件。
|
||||
- `joinValues` 多选时是否将多个值用 `delimiter` 连接起来。
|
||||
- `extractValue` 默认为 `false`, `joinValues`设置为`false`时生效, 开启后将选中的选项 value 的值封装为数组,作为当前表单项的值。
|
||||
- `delimiter` 连接符,默认是 `,`, 多选时且 `joinValues` 为 `true` 时用来连接值。
|
||||
- `autoUpload` 是否选择完就自动开始上传?默认为 `true`
|
||||
- `maxSize` 默认没有限制,当设置后,文件大小大于此值将不允许上传。
|
||||
- `crop` 用来设置是否支持裁剪。
|
||||
- `aspectRatio` 浮点型,默认 `1` 即 `1:1`,如果要设置 `16:9` 请设置 `1.7777777777777777` 即 `16 / 9`。
|
||||
- `limit` 限制图片大小,超出不让上传。
|
||||
- `width` 限制图片宽度。
|
||||
- `height` 限制图片高度。
|
||||
- `minWidth` 限制图片最小宽度。
|
||||
- `minHeight` 限制图片最小高度。
|
||||
- `maxWidth` 限制图片最大宽度。
|
||||
- `maxHeight` 限制图片最大高度。
|
||||
- `aspectRatio` 限制图片宽高比,格式为浮点型数字,默认 `1` 即 `1:1`,如果要设置 `16:9` 请设置 `1.7777777777777777` 即 `16 / 9`。 如果不想限制比率,请设置空字符串。
|
||||
- **还有更多通用配置请参考** [FormItem](./FormItem.md)
|
||||
|
||||
```schema:height="250" scope="form-item"
|
||||
{
|
||||
|
1202
fis-conf.js
1202
fis-conf.js
File diff suppressed because it is too large
Load Diff
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -1,7 +1,7 @@
|
||||
define('docs/renderers/Form/Color.md', function(require, exports, module) {
|
||||
|
||||
module.exports = {
|
||||
"html": "<h3><a class=\"anchor\" name=\"color\" href=\"#color\" aria-hidden=\"true\"><svg aria-hidden=\"true\" class=\"octicon octicon-link\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a>Color</h3><p>颜色选择器。</p>\n<ul>\n<li><code>type</code> 请设置成 <code>color</code></li>\n<li><code>format</code> 请选择 <code>hex</code>、<code>hls</code>、<code>rgb</code>或者<code>rgba</code>。默认为 <code>hex</code>。</li>\n<li><code>presetColors</code> 选择器底部的默认颜色<ul>\n<li>默认为<code>['#D0021B', '#F5A623', '#F8E71C', '#8B572A', '#7ED321', '#417505', '#BD10E0', '#9013FE', '#4A90E2', '#50E3C2', '#B8E986', '#000000', '#4A4A4A', '#9B9B9B', '#FFFFFF']</code>,数组内为空则不显示默认颜色</li>\n</ul>\n</li>\n<li><code>clearable</code> 是否显示清除按钮。</li>\n</ul>\n<div class=\"amis-preview\" style=\"height: 600px\"><script type=\"text/schema\" height=\"600\" scope=\"form-item\">{\n \"type\": \"color\",\n \"name\": \"color\",\n \"label\": \"颜色\"\n}\n</script></div>\n\n\n<div class=\"m-t-lg b-l b-info b-3x wrapper bg-light dk\">文档内容有误?欢迎大家一起来编写,文档地址:<i class=\"fa fa-github\"></i><a href=\"https://github.com/baidu/amis/tree/master/docs/renderers/Form/Color.md\">/docs/renderers/Form/Color.md</a>。</div>",
|
||||
"html": "<h3><a class=\"anchor\" name=\"color\" href=\"#color\" aria-hidden=\"true\"><svg aria-hidden=\"true\" class=\"octicon octicon-link\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a>Color</h3><p>颜色选择器。</p>\n<ul>\n<li><code>type</code> 请设置成 <code>color</code></li>\n<li><code>format</code> 请选择 <code>hex</code>、<code>hls</code>、<code>rgb</code>或者<code>rgba</code>。默认为 <code>hex</code>。</li>\n<li><code>presetColors</code> 选择器底部的默认颜色<ul>\n<li>默认为<code>['#D0021B', '#F5A623', '#F8E71C', '#8B572A', '#7ED321', '#417505', '#BD10E0', '#9013FE', '#4A90E2', '#50E3C2', '#B8E986', '#000000', '#4A4A4A', '#9B9B9B', '#FFFFFF']</code>,数组内为空则不显示默认颜色</li>\n</ul>\n</li>\n<li><code>allowCustomColor</code> 是否允许自定义颜色,默认为<code>true</code>,为<code>false</code>时只能选择颜色,使用 <code>presetColors</code> 设定颜色选择范围</li>\n<li><code>clearable</code> 是否显示清除按钮。</li>\n<li><code>resetValue</code> 默认为 <code>""</code>, 删除后设置此配置项给定的值。</li>\n</ul>\n<div class=\"amis-preview\" style=\"height: 600px\"><script type=\"text/schema\" height=\"600\" scope=\"form-item\">{\n \"type\": \"color\",\n \"name\": \"color\",\n \"label\": \"颜色\"\n},\n\n{\n \"type\": \"color\",\n \"name\": \"customColor\",\n \"label\": \"自定义颜色\",\n \"allowCustomColor\": false\n}\n</script></div>\n\n\n<div class=\"m-t-lg b-l b-info b-3x wrapper bg-light dk\">文档内容有误?欢迎大家一起来编写,文档地址:<i class=\"fa fa-github\"></i><a href=\"https://github.com/baidu/amis/tree/master/docs/renderers/Form/Color.md\">/docs/renderers/Form/Color.md</a>。</div>",
|
||||
"toc": {
|
||||
"label": "目录",
|
||||
"type": "toc",
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
20
gh-pages/docs/renderers/Form/Tabs_c46bd32.js
Normal file
20
gh-pages/docs/renderers/Form/Tabs_c46bd32.js
Normal file
@ -0,0 +1,20 @@
|
||||
define('docs/renderers/Form/Tabs.md', function(require, exports, module) {
|
||||
|
||||
module.exports = {
|
||||
"html": "<h3><a class=\"anchor\" name=\"tabs-formitem-\" href=\"#tabs-formitem-\" aria-hidden=\"true\"><svg aria-hidden=\"true\" class=\"octicon octicon-link\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a>Tabs(FormItem)</h3><p>多个输入框也可以通过选项卡来分组。</p>\n<ul>\n<li><code>type</code> 请设置成 <code>tabs</code></li>\n<li><code>tabs</code> 选项卡数组</li>\n<li><code>toolbar</code> 选项卡右上角工具栏,参考 <a href=\"/amis/docs/renderers/Tabs\">Tabs</a> </li>\n<li><code>toolbarClassName</code> 选项卡右上角工具栏 CSS 类名</li>\n<li><code>tabs[x].title</code> 标题</li>\n<li><code>tabs[x].controls</code> 表单项集合。</li>\n<li><code>tabs[x].body</code> 内容容器,跟 <code>controls</code> 二选一。</li>\n<li><code>tabClassName</code> 选项卡 CSS 类名。</li>\n</ul>\n<div class=\"amis-preview\" style=\"height: 700px\"><script type=\"text/schema\" height=\"700\" scope=\"form-item\">{\n \"type\": \"tabs\",\n \"tabs\": [\n {\n \"title\": \"基本配置\",\n \"controls\": [\n {\n \"name\": \"a\",\n \"type\": \"text\",\n \"label\": \"文本1\"\n },\n\n {\n \"name\": \"a\",\n \"type\": \"text\",\n \"label\": \"文本2\"\n }\n ]\n },\n\n {\n \"title\": \"其他配置\",\n \"controls\": [\n {\n \"name\": \"c\",\n \"type\": \"text\",\n \"label\": \"文本3\"\n },\n\n {\n \"name\": \"d\",\n \"type\": \"text\",\n \"label\": \"文本4\"\n }\n ]\n }\n ]\n}\n</script></div>\n\n\n<div class=\"m-t-lg b-l b-info b-3x wrapper bg-light dk\">文档内容有误?欢迎大家一起来编写,文档地址:<i class=\"fa fa-github\"></i><a href=\"https://github.com/baidu/amis/tree/master/docs/renderers/Form/Tabs.md\">/docs/renderers/Form/Tabs.md</a>。</div>",
|
||||
"toc": {
|
||||
"label": "目录",
|
||||
"type": "toc",
|
||||
"children": [
|
||||
{
|
||||
"label": "Tabs(FormItem)",
|
||||
"fragment": "tabs-formitem-",
|
||||
"fullPath": "#tabs-formitem-",
|
||||
"level": 3
|
||||
}
|
||||
],
|
||||
"level": 0
|
||||
}
|
||||
};
|
||||
|
||||
});
|
@ -1,20 +0,0 @@
|
||||
define('docs/renderers/Form/Tabs.md', function(require, exports, module) {
|
||||
|
||||
module.exports = {
|
||||
"html": "<h3><a class=\"anchor\" name=\"tabs-formitem-\" href=\"#tabs-formitem-\" aria-hidden=\"true\"><svg aria-hidden=\"true\" class=\"octicon octicon-link\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a>Tabs(FormItem)</h3><p>多个输入框也可以通过选项卡来分组。</p>\n<ul>\n<li><code>type</code> 请设置成 <code>tabs</code></li>\n<li><code>tabs</code> 选项卡数组</li>\n<li><code>tabs[x].title</code> 标题</li>\n<li><code>tabs[x].controls</code> 表单项集合。</li>\n<li><code>tabs[x].body</code> 内容容器,跟 <code>controls</code> 二选一。</li>\n<li><code>tabClassName</code> 选项卡 CSS 类名。</li>\n</ul>\n<div class=\"amis-preview\" style=\"height: 700px\"><script type=\"text/schema\" height=\"700\" scope=\"form-item\">{\n \"type\": \"tabs\",\n \"tabs\": [\n {\n \"title\": \"基本配置\",\n \"controls\": [\n {\n \"name\": \"a\",\n \"type\": \"text\",\n \"label\": \"文本1\"\n },\n\n {\n \"name\": \"a\",\n \"type\": \"text\",\n \"label\": \"文本2\"\n }\n ]\n },\n\n {\n \"title\": \"其他配置\",\n \"controls\": [\n {\n \"name\": \"c\",\n \"type\": \"text\",\n \"label\": \"文本3\"\n },\n\n {\n \"name\": \"d\",\n \"type\": \"text\",\n \"label\": \"文本4\"\n }\n ]\n }\n ]\n}\n</script></div>\n\n\n<div class=\"m-t-lg b-l b-info b-3x wrapper bg-light dk\">文档内容有误?欢迎大家一起来编写,文档地址:<i class=\"fa fa-github\"></i><a href=\"https://github.com/baidu/amis/tree/master/docs/renderers/Form/Tabs.md\">/docs/renderers/Form/Tabs.md</a>。</div>",
|
||||
"toc": {
|
||||
"label": "目录",
|
||||
"type": "toc",
|
||||
"children": [
|
||||
{
|
||||
"label": "Tabs(FormItem)",
|
||||
"fragment": "tabs-formitem-",
|
||||
"fullPath": "#tabs-formitem-",
|
||||
"level": 3
|
||||
}
|
||||
],
|
||||
"level": 0
|
||||
}
|
||||
};
|
||||
|
||||
});
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
@ -9,7 +9,7 @@
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/iconfont/iconfont.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_5b71e18.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
<link rel="stylesheet" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_ebc8609.css" />
|
||||
<link rel="stylesheet" type="text/css" href="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/style_0d9f369.css" />
|
||||
<link rel="stylesheet" title="default" href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/default_ed50278.css" />
|
||||
<link rel="stylesheet" title="cxd" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/cxd_9e0b2cb.css" />
|
||||
<link rel="stylesheet" title="dark" disabled href="https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/dark_4cf0d77.css" />
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<body>
|
||||
<div id="root" class="app-wrapper"></div>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c4d0726.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_ff90b39.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_fea9a85.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_636855b.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_6782e87.js"></script>
|
||||
<script src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/npm_c83887f.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/examples/index.html_map_366a7d6.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/app_af6e312.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rich-text_9f5420a.js"></script>
|
||||
<script type="text/javascript" src="https://bce.bdstatic.com/fex/amis-gh-pages/pkg/rest_02ea7a3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _hmt = _hmt || [];
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user