This commit is contained in:
2020-12-03 18:18:58 +00:00
parent ae369d770f
commit 9435550e9b
2 changed files with 2 additions and 2 deletions

View File

@@ -266,7 +266,7 @@ export default {
}
}
try {
let res = await window.$gz.api.get("pick-list/List" + urlParams);
let res = await window.$gz.api.get("pick-list/list" + urlParams);
vm.fetching = false;
//We never expect there to be no data here

View File

@@ -330,7 +330,7 @@ async function preFillSelection(vm) {
if (vm.toUsers.find(z => z.id == i)) {
continue;
}
let res = await window.$gz.api.get("pick-list/List?ayaType=3&preId=" + i);
let res = await window.$gz.api.get("pick-list/list?ayaType=3&preId=" + i);
if (res.data && res.data.length > 0) {
vm.toUsers.push(res.data[0]);
}