fix: quote entire_url arguments in CRUD json subtables (use string not variable)

This commit is contained in:
yumoqing 2026-05-06 08:47:58 +08:00
parent a3cf3ae02a
commit 2d324e2da7
2 changed files with 4 additions and 4 deletions

View File

@ -72,19 +72,19 @@
{ {
"field": "customer_id", "field": "customer_id",
"title": "客户360度视图", "title": "客户360度视图",
"url": "{{entire_url(customer_360_view)}}", "url": "{{entire_url('customer_360_view')}}",
"subtable": "customers" "subtable": "customers"
}, },
{ {
"field": "customer_id", "field": "customer_id",
"title": "交接记录", "title": "交接记录",
"url": "{{entire_url(handover_history_list)}}", "url": "{{entire_url('handover_history_list')}}",
"subtable": "customer_handover" "subtable": "customer_handover"
}, },
{ {
"field": "customer_id", "field": "customer_id",
"title": "公海记录", "title": "公海记录",
"url": "{{entire_url(pool_history_list)}}", "url": "{{entire_url('pool_history_list')}}",
"subtable": "customer_pool" "subtable": "customer_pool"
} }
] ]

View File

@ -47,7 +47,7 @@
{ {
"field": "handover_id", "field": "handover_id",
"title": "交接项目明细", "title": "交接项目明细",
"url": "{{entire_url(handover_items_list)}}", "url": "{{entire_url('handover_items_list')}}",
"subtable": "customer_handover_items" "subtable": "customer_handover_items"
} }
] ]