文件上传后展示自定义的提示信息
参考页:https://aisuda.bce.baidu.com/amis/zh-CN/docs/concepts/event-action
"onEvent": {
"success": {
"actions": [
{
"actionType": "toast",
"args": {
"msgType": "info",
"msg": "上传成功"
}
}
]
}
}
想换成弹窗只需要更换action即可
"onEvent": {
"success": {
"actions": [{
"actionType": "dialog",
"dialog": {
"title": "弹框",
"body": "这是个简单的弹框。"
}
}
]
}
}
问题没有解决?请留言提问

