考点
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -72,7 +72,7 @@ const status = ref(0) | ... | @@ -72,7 +72,7 @@ const status = ref(0) |
| 72 | const isApplyDisabled = computed(() => { | 72 | const isApplyDisabled = computed(() => { |
| 73 | const auditStatus = String(formInfo.value?.auditStatus ?? '') | 73 | const auditStatus = String(formInfo.value?.auditStatus ?? '') |
| 74 | const isPoints = String(memberInfo.value?.isPoints ?? '') | 74 | const isPoints = String(memberInfo.value?.isPoints ?? '') |
| 75 | return isPoints === '0' || auditStatus === '1' || auditStatus === '2' | 75 | return isPoints == '0' || auditStatus == '1' |
| 76 | }) | 76 | }) |
| 77 | 77 | ||
| 78 | onShow(() => { | 78 | onShow(() => { | ... | ... |
-
Please register or sign in to post a comment