关于urlQueryParameters在List视图和Detail视图间传递的问题

对于同一个实体,需要在菜单中定义多个菜单项,通过urlQueryParameters传递不同的参数到List视图。
image

在List视图中,通过onQueryParametersChange事件接收参数,并设置为查询条件。
image

以上没有问题。

这个type参数,如何传递到Detail视图中呢?使用CreateAction的queryParametersProvider事件好像不行,没有调用这个事件监听函数。
image

在Detail中,有一个EntityPicker是选择上级单位的,需要再次调用List视图,这个时候仍然需要将type参数传递到EntityPicker打开的List视图中(type是查询条件),此时如何传递参数?
image
image

问题总结:
菜单设置中通过urlQueryParameters传递到List视图中的参数,如何传递到Detail视图中,又如何传递到EntityPicker组件弹出的List视图中