소스 검색

feat: 新增需求-无手机号不展示自动开通2

cuiyalong 2 달 전
부모
커밋
1b83c45edf
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/views/create-order/components/schema-form/schema-form.vue

+ 1 - 1
src/views/create-order/components/schema-form/schema-form.vue

@@ -665,7 +665,7 @@ export default {
         // 仅展示自动开通
         productAutoOpen = true
       }
-      const hasPhone = this.pageForm.noPhoneValue.length > 0
+      const hasPhone = this.pageForm.noPhoneValue.length <= 0
       const canAutoOpen = configAutoOpen && productAutoOpen && hasPhone
       return canAutoOpen
     },