customer_management/wwwroot/customer_pool.ui
yumoqing 321b1b7acb 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

68 lines
2.4 KiB
XML

{
"widgettype": "Page",
"options": {
"title": "客户公海",
"height": "100vh",
"padding": "0"
},
"subwidgets": [
{
"widgettype": "VBox",
"options": {
"padding": "16px",
"flex": 1,
"overflow": "hidden"
},
"subwidgets": [
{
"widgettype": "DataGrid",
"id": "pool_grid",
"options": {
"url": "{{entire_url('api/customer_pool_list.dspy')}}",
"columns": [
{
"field": "customer_code",
"header": "客户编码",
"width": 120
},
{
"field": "customer_name",
"header": "客户名称",
"width": 200
},
{
"field": "industry",
"header": "行业",
"width": 120
},
{
"field": "recycle_reason",
"header": "回收原因",
"width": 150
},
{
"field": "pool_status",
"header": "状态",
"width": 80
},
{
"field": "recycle_time",
"header": "回收时间",
"width": 150
}
],
"toolbar": [
{
"type": "button",
"text": "领取",
"icon": "get_app",
"action": "claimCustomer('{% raw %}{{selectedRow.id}}{% endraw %}')"
}
],
"flex": 1
}
}
]
}
]
}