Selaa lähdekoodia

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

cuiyalong 2 kuukautta sitten
vanhempi
commit
1b83c45edf
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  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
     },