-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
table components.md
cg33 edited this page Aug 5, 2018
·
1 revision
// 列显示配置
userTable.Info.FieldList = []FieldStruct{
{
Head: "头像",
Field: "avatar",
TypeName: "tinyint",
ExcuFun: func(model RowModel) string {
return components.GetImage().SetHeight("50")
.SetWidth("50").SetSrc(model.Value).GetContent()
},
},
}
// 列显示配置
userTable.Info.FieldList = []FieldStruct{
{
Head: "标签",
Field: "label",
TypeName: "tinyint",
ExcuFun: func(model RowModel) string {
return components.Label.GetContent(model.Value)
},
},
}