yao/tests/tables/importable/table.tab.json
2021-11-06 15:11:53 +08:00

75 lines
1.6 KiB
JSON

{
"name": "客户",
"version": "1.0.0",
"decription": "客户管理数据表格",
"bind": {
"model": "user"
},
"apis": {
"search": {}
},
"columns": {
"LOGO": { "@": "column.Image", "in": ["LOGO", ":logo", 40] },
"ID": { "@": "column.Label", "in": ["ID", ":id"] }
},
"filters": {
"关键词": { "@": "filter.关键词", "in": ["where.name.match"] },
"排序": { "@": "filter.排序" },
"状态": { "@": "filter.客户状态" }
},
"list": {
"primary": "id",
"layout": {
"columns": [
{ "name": "ID", "width": 80 },
{ "name": "LOGO", "width": 300 }
],
"filters": [
{ "name": "关键词" },
{ "name": "状态", "width": 3 },
{ "name": "排序", "width": 3 }
]
},
"actions": {
"create": {
"type": "button",
"props": {
"label": "添加厂商",
"icon": "fas fa-plus"
}
},
"pagination": {
"props": { "showTotal": true }
}
},
"option": {
"batch": {
"delete": {},
"columns": [
{ "name": "状态", "width": 12 },
{ "name": "类型", "width": 12 },
{ "name": "排序", "width": 12 }
]
}
}
},
"edit": {
"primary": "id",
"layout": {
"fieldset": [
{
"title": "客户资料",
"description": "",
"columns": [{ "name": "LOGO", "width": 12 }]
}
]
},
"actions": {
"cancel": {},
"save": { "@": "action.保存" },
"delete": { "@": "action.删除" }
}
},
"insert": {},
"view": {}
}