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="
|
:readonly="
|
||||||
data.requestDataStatus === RequestDataStatus.Canceled ||
|
data.requestDataStatus === RequestDataStatus.Canceled ||
|
||||||
(responsiblePersonList &&
|
(responsiblePersonList &&
|
||||||
responsiblePersonList[pageState.currentStep].length === 0) ||
|
!responsiblePersonList[pageState.currentStep]?.find(
|
||||||
!responsiblePersonList[pageState.currentStep].find(
|
(v) => v.id === getUserId(),
|
||||||
(v) => v.id === getUserId(),
|
))
|
||||||
)
|
|
||||||
"
|
"
|
||||||
:order-able="value._formExpansion"
|
:order-able="value._formExpansion"
|
||||||
:installment-info="getInstallmentInfo()"
|
:installment-info="getInstallmentInfo()"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue