yumoqing 2bbb3d038e fix: flatten style to options, fix Button/Text widget properties
- Flatten nested style objects directly into options
- Text/Title use 'text', Button uses 'label'
- All paths use {{entire_url()}}
2026-05-05 19:36:11 +08:00

114 lines
3.9 KiB
XML

{
"id": "opportunity_management",
"widgettype": "VBox",
"options": {
"width": "100%",
"height": "100%",
"padding": "16px"
},
"subwidgets": [
{
"widgettype": "HBox",
"options": {
"marginBottom": "16px",
"gap": "8px"
},
"subwidgets": [
{
"widgettype": "Text",
"options": {
"text": "商机管理",
"fontSize": "20px",
"fontWeight": "bold"
}
},
{
"widgettype": "Filler",
"options": {}
},
{
"widgettype": "Button",
"id": "btn_add_opportunity",
"options": {
"label": "新增商机",
"variant": "primary"
}
}
]
},
{
"widgettype": "Tabular",
"id": "opportunity_grid",
"options": {
"data_url": "{{entire_url('api/opportunities_list.dspy')}}",
"data_method": "GET",
"row_options": {
"fields": [
{
"name": "opportunity_code",
"title": "商机编码",
"uitype": "str",
"cwidth": 12
},
{
"name": "opportunity_name",
"title": "商机名称",
"uitype": "str",
"cwidth": 15
},
{
"name": "customer_name",
"title": "客户",
"uitype": "str",
"cwidth": 12
},
{
"name": "stage",
"title": "阶段",
"uitype": "str",
"cwidth": 10
},
{
"name": "amount",
"title": "金额",
"uitype": "str",
"cwidth": 12
},
{
"name": "probability",
"title": "概率",
"uitype": "str",
"cwidth": 8
},
{
"name": "expected_close_date",
"title": "预计关闭日期",
"uitype": "str",
"cwidth": 12
}
],
"toolbar": [
{
"type": "button",
"text": "新增",
"icon": "add",
"action": "navigate('opportunity_edit.ui')"
},
{
"type": "button",
"text": "编辑",
"icon": "edit",
"action": "navigate('opportunity_edit.ui?id={{selectedRow.id}}')"
},
{
"type": "button",
"text": "删除",
"icon": "delete",
"action": "doDelete('{{selectedRow.id}}')"
}
]
}
}
}
]
}