{ "options": { "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 } } ] } ] }