fix
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -535,7 +535,7 @@ function fetchRegisterUrl() { | ... | @@ -535,7 +535,7 @@ function fetchRegisterUrl() { |
| 535 | }).then((res: any) => { | 535 | }).then((res: any) => { |
| 536 | docUrlLoading.value = false; | 536 | docUrlLoading.value = false; |
| 537 | if (res.code == proxy.$passCode) { | 537 | if (res.code == proxy.$passCode) { |
| 538 | const data = res.data || []; | 538 | let data = docData.value = res.data || []; |
| 539 | if (data.length) { | 539 | if (data.length) { |
| 540 | console.log(data, 'data'); | 540 | console.log(data, 'data'); |
| 541 | const promises = data.map(async (d) => { | 541 | const promises = data.map(async (d) => { | ... | ... |
-
Please register or sign in to post a comment