diff --git a/ayanova/src/components/pick-list.vue b/ayanova/src/components/pick-list.vue index afdbe77d..f0daf591 100644 --- a/ayanova/src/components/pick-list.vue +++ b/ayanova/src/components/pick-list.vue @@ -203,6 +203,27 @@ export default { } let urlParams = "?ayaType=" + vm.ayaType + "&preId=" + vm.value + variantSegment; + /* + [FromBody] + public AyaType AyaType { get; set; } + + [FromBody] + public string Query { get; set; } + + [FromBody] + public bool Inactive { get; set; } + + [FromBody] + public List PreselectedIds { get; set; } + + [FromBody] + public string ListVariant { get; set; } + + //"{\"ayaType\":8,\"preselectedIds\":[1,3,5,7]}" + } + + */ + vm.getList(urlParams); } },