fix: quote entire_url arguments in CRUD json subtables (use string not variable)
This commit is contained in:
parent
a3cf3ae02a
commit
2d324e2da7
@ -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"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@ -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"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user