Commit Graph

4942 Commits

Author SHA1 Message Date
rickcole 848fc02b41 Merge remote-tracking branch 'upstream/master' 2020-08-10 19:21:41 +08:00
rickcole 590b50d774 Merge remote-tracking branch 'upstream/master' 2020-08-10 19:21:41 +08:00
RickCole 499f68638e Merge pull request #830 from DuLinRain/patch-1
fix: validateOnChange=false时,提交后修改内容,表单不校验
2020-08-10 19:21:14 +08:00
RickCole f9207d33e8
Merge pull request #830 from DuLinRain/patch-1
fix: validateOnChange=false时,提交后修改内容,表单不校验
2020-08-10 19:21:14 +08:00
2betop 4cd98a008e Merge remote-tracking branch 'baidu/master' 2020-08-10 17:54:46 +08:00
2betop 75f747f56d Merge remote-tracking branch 'baidu/master' 2020-08-10 17:54:46 +08:00
2betop a28048e7b2 修复 transfer 把外面高度撑开的问题 2020-08-10 17:54:25 +08:00
2betop b7681c0e0d 修复 transfer 把外面高度撑开的问题 2020-08-10 17:54:25 +08:00
rickcole 82f987d8fe 修复image验证导致表单提交loading问题 2020-08-10 17:16:01 +08:00
rickcole 3ea958f009 修复image验证导致表单提交loading问题 2020-08-10 17:16:01 +08:00
RickCole21 678983d77a add doc:crud.defaultParams、选择器表单项默认值数据格式一致性问题 2020-08-10 16:20:04 +08:00
RickCole21 a14fff73a2 add doc:crud.defaultParams、选择器表单项默认值数据格式一致性问题 2020-08-10 16:20:04 +08:00
liaoxuezhi 161dd17ae0 Merge pull request #833 from feizhen/editor-json-worker-fix
fix(components): 修复monaco-editor加载json worker报错问题
2020-08-10 15:16:30 +08:00
liaoxuezhi cc9fc91200
Merge pull request #833 from feizhen/editor-json-worker-fix
fix(components): 修复monaco-editor加载json worker报错问题
2020-08-10 15:16:30 +08:00
madisonlin 8d9226164b fix(components): 修复monaco-editor加载json worker报错问题
使用monaco-editor编辑json文件,且开启json验证时,有可能因为加载不到json worker,
monaco.languages对象下会没有json属性,会报undefined错误,进而导致整个编辑器无法使用
2020-08-10 09:56:00 +08:00
madisonlin a2f76d7455 fix(components): 修复monaco-editor加载json worker报错问题
使用monaco-editor编辑json文件,且开启json验证时,有可能因为加载不到json worker,
monaco.languages对象下会没有json属性,会报undefined错误,进而导致整个编辑器无法使用
2020-08-10 09:56:00 +08:00
liaoxuezhi f0b611b01d 调整样式 2020-08-09 21:50:37 +08:00
liaoxuezhi b53c2094b9 调整样式 2020-08-09 21:50:37 +08:00
liaoxuezhi bf9c0fe078 transfer 添加 maxheight 2020-08-09 17:16:41 +08:00
liaoxuezhi 3eac7cf838 transfer 添加 maxheight 2020-08-09 17:16:41 +08:00
DuLinRain 1dde199f03 fix: validateOnChange=false时,提交后修改内容,表单不校验
当配置validateOnChange=false时,如果该xiang填写正确,点击提交。这时候修改该项目的内容,让其不符合校验规则,再次点击提交,表单不会校验该项内容。

我认为this.model.valid保存的是发生变化前该项目的状态,当发生变化时,该项model也应该重置。

复现demo:  

gif:   https://github.com/DuLinRain/pictures/blob/master/amis-bug1.gif?raw=true  
mp4:   https://github.com/DuLinRain/pictures/blob/master/amis-bug1.mp4?raw=true

复现代码如下:

{
    "$schema": "https://houtai.baidu.com/v2/schemas/page.json#",
    "title": "表单验证示例",
    "toolbar": "<a target='_blank' href='/docs/renderers/Form/FormItem'>文档</a>",
    "body": [
        {
            "type": "form",
            "autoFocus": false,
            "messages": {
                "validateFailed": "请仔细检查表单规则,部分表单项没通过验证"
            },
            "title": "表单",
            "actions": [
                {
                    "type": "submit",
                    "label": "提交"
                }
            ],
            "api": "/api/mock2/form/saveFormFailed?waitSeconds=2",
            "mode": "horizontal",
            "controls": [
                {
                    "name": "minLength",
                    "type": "text",
                    "label": "长度限制",
                    "validations": "minLength:10",
                    "validateOnChange": false
                }
            ]
        }
    ]
}
2020-08-08 21:57:21 +08:00
DuLinRain b9b1f539bf
fix: validateOnChange=false时,提交后修改内容,表单不校验
当配置validateOnChange=false时,如果该xiang填写正确,点击提交。这时候修改该项目的内容,让其不符合校验规则,再次点击提交,表单不会校验该项内容。

我认为this.model.valid保存的是发生变化前该项目的状态,当发生变化时,该项model也应该重置。

复现demo:  

gif:   https://github.com/DuLinRain/pictures/blob/master/amis-bug1.gif?raw=true  
mp4:   https://github.com/DuLinRain/pictures/blob/master/amis-bug1.mp4?raw=true

复现代码如下:

{
    "$schema": "https://houtai.baidu.com/v2/schemas/page.json#",
    "title": "表单验证示例",
    "toolbar": "<a target='_blank' href='/docs/renderers/Form/FormItem'>文档</a>",
    "body": [
        {
            "type": "form",
            "autoFocus": false,
            "messages": {
                "validateFailed": "请仔细检查表单规则,部分表单项没通过验证"
            },
            "title": "表单",
            "actions": [
                {
                    "type": "submit",
                    "label": "提交"
                }
            ],
            "api": "/api/mock2/form/saveFormFailed?waitSeconds=2",
            "mode": "horizontal",
            "controls": [
                {
                    "name": "minLength",
                    "type": "text",
                    "label": "长度限制",
                    "validations": "minLength:10",
                    "validateOnChange": false
                }
            ]
        }
    ]
}
2020-08-08 21:57:21 +08:00
RickCole21 0a4eb65f74 fix setValues 2020-08-07 18:00:58 +08:00
RickCole21 f7c2e14c6d fix setValues 2020-08-07 18:00:58 +08:00
2betop 638ebfbff6 Merge remote-tracking branch 'baidu/master' 2020-08-07 16:30:39 +08:00
2betop ee56c44fd9 Merge remote-tracking branch 'baidu/master' 2020-08-07 16:30:39 +08:00
2betop e5373c64b9 form 刷新数据验证状态不更新的问题 2020-08-07 16:30:21 +08:00
2betop 0ca0e93b52 form 刷新数据验证状态不更新的问题 2020-08-07 16:30:21 +08:00
RickCole21 6ca61c0cd9 fix algolia 2020-08-07 16:20:17 +08:00
RickCole21 a6079a7f0a fix algolia 2020-08-07 16:20:17 +08:00
2betop ebe813970e 优化 tree 样式 2020-08-07 14:20:18 +08:00
2betop d1df26b307 优化 tree 样式 2020-08-07 14:20:18 +08:00
吴多益 5a62413268 Merge pull request #829 from nwind/master
增加如流群
2020-08-07 11:58:54 +08:00
吴多益 b3ba9c5861
Merge pull request #829 from nwind/master
增加如流群
2020-08-07 11:58:54 +08:00
wuduoyi 783eef7d13 增加如流群 2020-08-07 11:58:07 +08:00
wuduoyi 6484417e5a 增加如流群 2020-08-07 11:58:07 +08:00
RickCole21 3398c2a13a rebuild pages 2020-08-06 19:50:03 +08:00
RickCole21 5f68013b73 rebuild pages 2020-08-06 19:50:03 +08:00
RickCole21 23a9402935 更新 gh-pages 2020-08-06 19:48:53 +08:00
RickCole21 b1670df78f 更新 gh-pages 2020-08-06 19:48:53 +08:00
RickCole21 8c3fcdb887 add favicon 2020-08-06 19:45:56 +08:00
RickCole21 619d5d6d35 add favicon 2020-08-06 19:45:56 +08:00
RickCole21 0d38c8df2d rebuild pages 2020-08-06 19:41:25 +08:00
RickCole21 89dab764b2 rebuild pages 2020-08-06 19:41:25 +08:00
RickCole21 57a2a023de 更新 gh-pages 2020-08-06 19:40:19 +08:00
RickCole21 925b3a6fe5 更新 gh-pages 2020-08-06 19:40:19 +08:00
liaoxuezhi 29e5a1a2d1 Merge pull request #827 from RickCole21/master
添加讨论方式
2020-08-06 19:36:51 +08:00
liaoxuezhi 98c9d43571
Merge pull request #827 from RickCole21/master
添加讨论方式
2020-08-06 19:36:51 +08:00
rickcole 5655a9d4c7 fix favicon 2020-08-06 19:35:46 +08:00
rickcole 0b27947065 fix favicon 2020-08-06 19:35:46 +08:00