Last active
May 21, 2018 01:00
-
-
Save tghelere/d96dcf618cf428605e008b649b76bd64 to your computer and use it in GitHub Desktop.
formulário de solicitação de orçamento
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div> | |
<a @click="modalShow = !modalShow" v-show="!modalShow" class="link-quote" title="Solicite um orçamento"><span>Solicite um orçamento</span></a> | |
<!-- Modal Component --> | |
<b-modal ref="reqAQuote" v-model="modalShow" hide-footer hide-header id="modal"> | |
<loading :active.sync="isLoading" :can-cancel="false"></loading> | |
<b-link class="seta" @click="hideModal"></b-link> | |
<b-row> | |
<b-col md="7"><h4 class="text-uppercase">Solicitação de orçamento</h4></b-col> | |
</b-row> | |
<p>Agradecemos pelo seu interesse em nossos serviços. Preencha os campos abaixo para que possamos conhecer suas necessidades.</p> | |
<b-form @submit="onSubmit"> | |
<b-form-group> | |
<b-form-select id="segment" :options="solutions" required v-model="form.segment"> | |
<template slot="first"> | |
<option :value="null" disabled>Segmento de atuação *</option> | |
</template> | |
</b-form-select> | |
</b-form-group> | |
<b-form-group label="Número de colaboradores"> | |
<b-form-radio-group id="contributors" v-model="form.contributors" required> | |
<b-form-radio value="1 a 10">1 a 10</b-form-radio> | |
<b-form-radio value="10 a 20">10 a 20</b-form-radio> | |
<b-form-radio value="20 a 30">20 a 30</b-form-radio> | |
<b-form-radio value="acima de 30">acima de 30</b-form-radio> | |
</b-form-radio-group> | |
</b-form-group> | |
<b-form-group label="Modalidade de serviço (selecione uma ou mais)"> | |
<b-form-checkbox-group id="modality" v-model="form.modality" :options="services"></b-form-checkbox-group> | |
</b-form-group> | |
<b-form-group> | |
<b-form-input id="name" type="text" v-model="form.name" required placeholder="Pessoa para contato *"></b-form-input> | |
</b-form-group> | |
<b-form-group> | |
<b-form-input id="email" type="email" v-model="form.email" required placeholder="Email *"></b-form-input> | |
</b-form-group> | |
<b-row> | |
<b-col md="5" class="no-pad-right"> | |
<b-form-group> | |
<b-form-input id="phone" type="tel" v-model="form.phone" required placeholder="Telefone para contato *"></b-form-input> | |
</b-form-group> | |
</b-col> | |
<b-col md="2" class="no-pad-left no-pad-right"> | |
<b-form-group> | |
<b-form-select @input="getCities(form.state.id)" id="states" required v-model="form.state" :options="states"> | |
<template slot="first"> | |
<option :value="null" disabled>UF *</option> | |
</template> | |
</b-form-select> | |
</b-form-group> | |
</b-col> | |
<b-col md="5" class="no-pad-left"> | |
<b-form-group> | |
<b-form-select id="cities" :disabled="form.state == null" required v-model="form.city" :options="cities"> | |
<template slot="first"> | |
<option :value="null" disabled>Cidade *</option> | |
</template> | |
</b-form-select> | |
</b-form-group> | |
</b-col> | |
</b-row> | |
<b-row> | |
<b-col md="12"> | |
<b-button class="float-right" type="submit" variant="primary">Enviar</b-button> | |
</b-col> | |
</b-row> | |
</b-form> | |
</b-modal> | |
</div> | |
</template> | |
<script> | |
import BootstrapVue from 'bootstrap-vue' | |
import 'bootstrap-vue/dist/bootstrap-vue.css' | |
import Loading from 'vue-loading-overlay'; | |
import 'vue-loading-overlay/dist/vue-loading.min.css'; | |
Vue.use(BootstrapVue) | |
export default { | |
data () { | |
return { | |
isLoading: false, | |
modalShow: false, | |
solutions: [], | |
services: [], | |
states: [], | |
cities: [], | |
form: { | |
segment: null, | |
contributors: '', | |
modality: [], | |
name: '', | |
email: '', | |
phone: '', | |
state: null, | |
city: null, | |
}, | |
} | |
}, | |
created () { | |
this.getSolutions(), | |
this.getServices(), | |
this.getStates() | |
}, | |
methods: { | |
onSubmit (evt) { | |
evt.preventDefault() | |
// this.isLoading = true | |
const action1 = '/orcamento/' //envia o email | |
const action2 = '/api/budget/' //salva o dado no banco pela api | |
const token = document.head.querySelector('meta[name="csrf-token"]'); | |
window.axios.defaults.headers.common['X-CSRF-TOKEN'] = token.content; | |
axios.post(action1, this.form).then(response => { | |
console.log(response) | |
}).catch(error => { | |
console.error(error.message) | |
}) | |
axios.post(action2, this.form).then(response => { | |
console.log(response) | |
}).catch(error => { | |
console.error(error.message) | |
}) | |
// this.form.segment = null | |
// this.form.contributors = '' | |
// this.form.modality = [] | |
// this.form.name = '' | |
// this.form.email = '' | |
// this.form.phone = '' | |
// this.form.city = null | |
// this.form.state = null | |
// this.isLoading = false | |
}, | |
hideModal () { | |
this.$refs.reqAQuote.hide() | |
}, | |
getSolutions(){ | |
const action = '/api/solutions' | |
axios.get(action).then(response => { | |
this.solutions = [...response.data.data.map(solution => ({ value: {id: solution.id, name: solution.title}, text: solution.title }))] | |
}).catch(error => { | |
console.error(error) | |
}) | |
}, | |
getServices(){ | |
const action = '/api/services' | |
axios.get(action).then(response => { | |
this.services = [...response.data.data.map(service => (service.title))] | |
}).catch(error => { | |
console.error(error) | |
}) | |
}, | |
getStates(){ | |
const action = '/api/states' | |
axios.get(action).then(response => { | |
this.states = response.data.data.map(state => ({ value: {id: state.id, name: state.name}, text: state.abbr})) | |
}).catch(error => { | |
console.error(error) | |
}) | |
}, | |
getCities(id){ | |
this.isLoading = true | |
const action = '/api/cities/state/' + id | |
axios.get(action).then(response => { | |
this.cities = [...response.data.data.map(city => ({ value: {id: city.id, name: city.name}, text: city.name }))] | |
this.isLoading = false | |
}).catch(error => { | |
console.error(error) | |
this.isLoading = false | |
}) | |
}, | |
}, | |
components: { | |
Loading | |
}, | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Tipo isso:
E se usar os interceptors do axios, fica mais enxuto ainda.