From 68a786b9fe102fd891e9016417decd18ee64f5d9 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Wed, 13 Jan 2021 17:55:16 +0000 Subject: [PATCH] --- ayanova/src/components/pick-list.vue | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) 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); } },