证件管理传dataSource
Showing
1 changed file
with
3 additions
and
1 deletions
| ... | @@ -469,7 +469,9 @@ const dialogBtnClick = (btn, info) => { | ... | @@ -469,7 +469,9 @@ const dialogBtnClick = (btn, info) => { |
| 469 | } | 469 | } |
| 470 | }) | 470 | }) |
| 471 | } | 471 | } |
| 472 | info.registerGuid = registerSelectData.value?.find(r => r.damGuid == info.damGuid)?.registerGuid; | 472 | let registerInfo = registerSelectData.value?.find(r => r.damGuid == info.damGuid); |
| 473 | info.registerGuid = registerInfo?.registerGuid; | ||
| 474 | info.dataSource = registerInfo?.dataSource; | ||
| 473 | if (dialogInfo.value.type == 'add') { | 475 | if (dialogInfo.value.type == 'add') { |
| 474 | dialogInfo.value.footer.btns[1].loading = true; | 476 | dialogInfo.value.footer.btns[1].loading = true; |
| 475 | saveCertificate(info).then((res: any) => { | 477 | saveCertificate(info).then((res: any) => { | ... | ... |
-
Please register or sign in to post a comment