refactor: change conditions
This commit is contained in:
parent
8aeabac191
commit
ae5313d4c0
1 changed files with 3 additions and 4 deletions
|
|
@ -617,10 +617,9 @@ function goToRequestList(id: string) {
|
|||
:readonly="
|
||||
data.requestDataStatus === RequestDataStatus.Canceled ||
|
||||
(responsiblePersonList &&
|
||||
responsiblePersonList[pageState.currentStep].length === 0) ||
|
||||
!responsiblePersonList[pageState.currentStep].find(
|
||||
(v) => v.id === getUserId(),
|
||||
)
|
||||
!responsiblePersonList[pageState.currentStep]?.find(
|
||||
(v) => v.id === getUserId(),
|
||||
))
|
||||
"
|
||||
:order-able="value._formExpansion"
|
||||
:installment-info="getInstallmentInfo()"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue