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

28 lines
697 B
JSON

{
"tblname": "product_category",
"alias": "product_category",
"uitype": "tree",
"title": "产品分类",
"params": {
"idField": "id",
"textField": "name",
"parentField": "parent_id",
"editable": true,
"sortby": ["order_idx", "name"],
"browserfields":{
"exclouded": [ "orgid" ],
"alters":{}
},
"edit_exclouded_fields": ["orgid", "created_at", "updated_at"],
"subtables": [
{
"field": "category_id",
"title": "所属产品",
"subtable": "product",
"url": "{{entire_url('product')}}"
}
]
}
}