原文:
https://www.cnblogs.com/longsanshi/p/13163265.html
事件
https://avuejs.com/doc/form/form-event
下拉選擇字典項
{
label: "通知類型",
type: "select",
dicUrl: "/api/blade-system/dict/dictionary?code=notice",
props: {
label: "dictValue",
value: "dictKey"
},
slot: true,
prop: "category",
search: true,
rules: [{
required: true,
message: "請輸入通知類型",
trigger: "blur"
}]
},
字段在列上隱藏
hide: true
字段在Form表單上隱藏
方式1
addDisplay: false,// 添加頁面 隱藏
editDisplay: false,// 編輯頁面 隱藏
viewDisplay: false,// 查看頁面 隱藏
方式2
display:false,
在Form表單上獨占一行
span: 24
:在form表單上,占滿一行
自定義表單、表格
https://blog.csdn.net/weixin_44770377/article/details/103372028
https://avuejs.com/doc/crud/crud-doc
https://www.jianshu.com/p/fe1331e41d19
默認值
value: 0,
1