product/json/product.crud.json
2025-12-05 18:03:14 +08:00

41 lines
1.1 KiB
JSON

{
"tblname": "product",
"alias": "product",
"title": "产品管理",
"params": {
"sortby": ["updated_at desc"],
"browserfields": {
"exclouded": ["orgid", "detail", "meta"],
"alters": {
"status": {
"uitype": "code",
"data": [
{"value": "draft", "text": "草稿"},
{"value": "online", "text": "上架"},
{"value": "offline", "text": "下架"}
]
}
}
},
"editexclouded": ["orgid", "created_at", "updated_at"],
"subtables": [
{
"field": "product_id",
"title": "能力绑定",
"subtable": "product_capability",
"url": "{{entire_url('product_capability')}}"
},
{
"field": "product_id",
"title": "定价计划",
"subtable": "pricing_plan",
"url": "{{entire_url('pricing_plan')}}"
}
]
}
}