mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-02 03:58:07 +08:00
0ae04ce946
* docs:将文档移动 zh-CN 目录下;为以后支持英文版做准备 * 整理 autoFill * 补充下载最新版本的说明 (#1298) * fix: 修复在新版 Firefox 下 js sdk 报错 (#1300) * 删掉可能报错的代码 (#1311) * fix: 修复 css 变量不支持数字问题 (#1302) * feat:增加 animation-duration,可以控制所有动画时长,也能用于一次性关闭所有动画效果 (#1303) * feat:增加 animation-duration,可以控制所有动画时长,也能用于一次性关闭所有动画效果 * 补充文档 * Pageleave (#1310) * form 添加页面离开提示功能 * 补充文档 Co-authored-by: 2betop <2betop.cn@gmail.com> Co-authored-by: liaoxuezhi <liaoxuezhi@baidu.com>
2.4 KiB
Executable File
2.4 KiB
Executable File
title | description | type | group | menuName | icon | order |
---|---|---|---|---|---|---|
DiffEditor 对比编辑器 | 0 | null | DiffEditor 对比编辑器 | 17 |
基本使用
{
"type": "form",
"api": "https://houtai.baidu.com/api/mock2/form/saveForm",
"controls": [
{
"type": "diff-editor",
"name": "diff",
"label": "Diff-Editor",
"diffValue": "hello world",
"value": "hello"
}
]
}
禁用编辑器
左侧编辑器始终不可编辑,右侧编辑器可以通过设置disabled
或disabledOn
,控制是否禁用
{
"type": "form",
"api": "https://houtai.baidu.com/api/mock2/form/saveForm",
"controls": [
{
"type": "diff-editor",
"name": "diff",
"label": "Diff-Editor",
"diffValue": "hello world",
"value": "hello",
"disabledOn": "this.isDisabled"
},
{
"type": "switch",
"name": "isDisabled",
"label": "是否禁用"
}
]
}
diff 数据域中的两个变量
如下例,左侧编辑器中的值,通过"diffValue": "${value1}"
获取,右侧编辑器的值,通过设置"name": "value2"
,自动映射数据域中value2
的值
{
"type": "form",
"api": "https://houtai.baidu.com/api/mock2/form/saveForm",
"data": {
"value1": "hello world",
"value2": "hello wrold"
},
"controls": [
{
"type": "diff-editor",
"name": "value2",
"label": "Diff-Editor",
"diffValue": "${value1}"
}
]
}
属性表
除了支持 普通表单项属性表 中的配置以外,还支持下面一些配置
属性名 | 类型 | 默认值 | 说明 |
---|---|---|---|
language | string |
javascript |
编辑器高亮的语言,可选 支持的语言 |
diffValue | Tpl | 左侧值 |