Как закрыть экран Vuesax PopUp при нажатии кнопки? - PullRequest
1 голос
/ 06 мая 2020

Я создал форму внутри экрана VueSax PopUp, и форма отправляется при нажатии кнопки, но PopUp не закрывается после отправки от. Пожалуйста, помогите с кодом.

После нажатия кнопки отправки происходит переход к указанному ниже методу.

  createRecord() {

        this.$vs.loading();


          jwt.createLeads(this.newRecord).then((response) => {

            this.$vs.loading.close();

            this.$store.dispatch("userManagement/upsertToState", { type: "Leads", data: response.data.leads });

            this.newRecord.leadtype = this.newRecord.first_name = this.newRecord.last_name = this.newRecord.email_id = this.newRecord.phone_number = this.newRecord.location = this.newRecord.postcode = this.newRecord.lead_address = this.newRecord.gender = this.newRecord.lead_source = this.newRecord.required_sub = this.newRecord.teach_mode = this.newRecord.location_pref = this.newRecord.lead_frequency = this.newRecord.session_duration = this.newRecord.pref_days = this.newRecord.pref_time_slot = this.newRecord.tutor_pref = this.newRecord.lead_owner = this.newRecord.notes = ''

           alert("Lead Creation Success");
           location.reload();
        }).catch((error) => {
            console.log(error)

            this.$vs.loading.close();


            this.$vs.notify({
                title: 'Error',
                text: 'There was an error creating the Lead',
                iconPack: 'feather',
                icon: 'icon-alert-circle',
                color: 'danger'
            });
        });

    },

1 Ответ

1 голос
/ 22 мая 2020

В документации vuesax в разделе API я вижу, что опора «active.syn c» определяет, является ли всплывающее окно активным (видимым), изменив значение этого свойства, вы можете закрыть всплывающее окно. Документация Vuesax

...