From 2d324e2da75fa7079554f71675dbd6cdc57f2878 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Wed, 6 May 2026 08:47:58 +0800 Subject: [PATCH] fix: quote entire_url arguments in CRUD json subtables (use string not variable) --- json/customers_list.json | 6 +++--- json/handover_list.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/json/customers_list.json b/json/customers_list.json index fef1740..8c68e7d 100644 --- a/json/customers_list.json +++ b/json/customers_list.json @@ -72,19 +72,19 @@ { "field": "customer_id", "title": "客户360度视图", - "url": "{{entire_url(customer_360_view)}}", + "url": "{{entire_url('customer_360_view')}}", "subtable": "customers" }, { "field": "customer_id", "title": "交接记录", - "url": "{{entire_url(handover_history_list)}}", + "url": "{{entire_url('handover_history_list')}}", "subtable": "customer_handover" }, { "field": "customer_id", "title": "公海记录", - "url": "{{entire_url(pool_history_list)}}", + "url": "{{entire_url('pool_history_list')}}", "subtable": "customer_pool" } ] diff --git a/json/handover_list.json b/json/handover_list.json index 34f2061..cde6617 100644 --- a/json/handover_list.json +++ b/json/handover_list.json @@ -47,7 +47,7 @@ { "field": "handover_id", "title": "交接项目明细", - "url": "{{entire_url(handover_items_list)}}", + "url": "{{entire_url('handover_items_list')}}", "subtable": "customer_handover_items" } ]