1
0

refactor(web): 重构审核流程

- 移除 AuthenticationRepository 和 ConfirmationRepository 中的 updateStateById 方法
- 更新 AuthenticationService 和 ConfirmationService 中的状态更新逻辑
- 修改 CheckOrder 实体,使用 State 枚举替代布尔型 over 字段
- 更新相关前端组件,适应新的审核状态
This commit is contained in:
2024-12-09 10:38:21 +08:00
parent 6ec672ebfa
commit 3e43d437e6
13 changed files with 76 additions and 59 deletions

View File

@@ -63,7 +63,7 @@ export function tabPermissions() {
...authenticationDetailDialog(),
},
{
visibleOn: arrayInCheck([checkState.ownerChecking, checkState.checking], checkState),
visibleOn: arrayInCheck([checkState.ownerChecking, checkState.checking], 'state'),
type: 'action',
label: '撤销',
level: 'link',