123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261 |
- <template>
- <div class="com-main com-width-1400 com-margin-auto">
- <el-breadcrumb separator-class="el-icon-arrow-right">
- <el-breadcrumb-item :to="{ path: '/' }">Home</el-breadcrumb-item>
- <el-breadcrumb-item>Contact Us</el-breadcrumb-item>
- </el-breadcrumb>
- <p class="title">Contact Us</p>
- <div class="line"></div>
- <div
- class="item"
- style="padding-left: 20px; font-size: 16px"
- v-html="info"></div>
- <br />
- <br />
- <br />
- <br />
- <br />
- <br />
- <div class="site-enquiry-form">
- <el-form
- :inline="true"
- :model="formData"
- :rules="rules"
- ref="form"
- label-position="top">
- <el-form-item
- v-for="item in config"
- :class="{
- 'long-form-item': item.long,
- 'short-form-item': !item.long,
- }"
- :prop="item.prop"
- :label="item.placeholder"
- :key="item.label">
- <el-input
- :rows="item.type === 'textarea' ? 6 : 1"
- :type="item.type"
- size="small"
- :name="item.prop"
- :id="item.prop"
- v-model="formData[item.prop]"></el-input>
- </el-form-item>
- <el-form-item>
- <div
- class="flex center"
- style="width: 100%">
- <el-button
- :loading="submitLoading"
- @click="submit"
- >SUBMIT</el-button
- >
- </div>
- </el-form-item>
- </el-form>
- <div
- class=""
- style="position: absolute; left: -100vw">
- <div
- class="preview-area"
- ref="previewArea">
- <div style="margin-bottom: 4px; font-weight: bold; font-size: 18px">
- Name
- </div>
- <div style="padding-left: 20px; font-size: 16px; margin-bottom: 8px">
- {{ formData.name }}
- </div>
- <div style="margin-bottom: 4px; font-weight: bold; font-size: 18px">
- Phone
- </div>
- <div style="padding-left: 20px; font-size: 16px; margin-bottom: 8px">
- {{ formData.phone }}
- </div>
- <div style="margin-bottom: 4px; font-weight: bold; font-size: 18px">
- Email
- </div>
- <div style="padding-left: 20px; font-size: 16px; margin-bottom: 8px">
- {{ formData.email }}
- </div>
- <div style="margin-bottom: 4px; font-weight: bold; font-size: 18px">
- Enquiry Details
- </div>
- <div style="padding-left: 20px; font-size: 16px; margin-bottom: 8px">
- {{ formData.enquiry }}
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- export default {
- data() {
- return {
- siteID: '',
- info: '',
- submitLoading: false,
- config: [
- {
- long: true,
- autoInput: true,
- prop: 'name',
- type: 'input',
- placeholder: 'Name',
- },
- {
- long: true,
- prop: 'phone',
- type: 'input',
- placeholder: 'Phone',
- },
- {
- long: true,
- prop: 'email',
- type: 'input',
- placeholder: 'Email',
- },
- {
- long: true,
- prop: 'enquiry',
- type: 'textarea',
- placeholder: 'Enquiry',
- },
- ],
- rules: {
- email: [
- {
- required: true,
- message: 'Please input',
- trigger: 'blur',
- },
- ],
- phone: [
- {
- required: true,
- message: 'Please input',
- trigger: 'blur',
- },
- ],
- name: [
- {
- required: true,
- message: 'Please input',
- trigger: 'blur',
- },
- ],
- enquiry: [
- {
- required: true,
- message: 'Please input',
- trigger: 'blur',
- },
- ],
- },
- formData: {
- // name: 'name',
- // email: 'peter@gmail.com',
- // phone: 'phone',
- // enquiry: 'enquiry',
- name: '',
- email: '',
- phone: '',
- enquiry: '',
- },
- }
- },
- async created() {
- await this.$store.dispatch('getShopInfo').then(res => {
- this.info = res.contactus
- this.siteID = res.id
- })
- },
- methods: {
- submit() {
- this.$refs.form.validate(valid => {
- if (!valid) return
- const f = JSON.parse(JSON.stringify(this.formData))
- f.site_id = this.siteID
- this.submitLoading = true
- this.$axios
- .post('/c-api/quote/sendenquiry', f)
- .then(() => {
- this.$message.success('submit success')
- this.formData = {
- name: '',
- email: '',
- phone: '',
- enquiry: '',
- }
- })
- .finally(() => {
- this.submitLoading = false
- })
- })
- },
- },
- }
- </script>
- <style lang="scss">
- .site-enquiry-form {
- max-width: 700px;
- .el-form-item__label {
- line-height: 28px;
- }
- .el-form-item__error {
- line-height: 6px !important;
- text-align: left;
- padding-top: 0;
- }
- .long-form-item {
- width: 96%;
- }
- .short-form-item {
- width: 47%;
- }
- .el-button {
- color: #fff;
- background-color: #e90000;
- }
- }
- </style>
- <style lang="scss" scoped>
- .title {
- height: 50px;
- font-size: 35px;
- font-family: Proxima Nova;
- font-weight: bold;
- color: #00213b;
- text-align: center;
- line-height: 50px;
- }
- .line {
- width: 99px;
- height: 4px;
- background: #e90000;
- margin: 15px auto;
- }
- :deep(.item) {
- width: 1400px;
- font-size: 14pt;
- color: #333;
- line-height: 1.2;
- p {
- word-wrap: break-word;
- }
- ul {
- list-style-type: unset;
- margin-top: 20px;
- margin-bottom: 20px;
- padding-left: 40px;
- }
- ol {
- list-style-type: decimal;
- margin-top: 20px;
- margin-bottom: 20px;
- padding-left: 40px;
- }
- }
- </style>
|