contactus.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. <template>
  2. <div class="com-main com-width-1400 com-margin-auto">
  3. <div
  4. style="padding-left: 20px; font-size: 16px"
  5. v-html="info"></div>
  6. <br />
  7. <br />
  8. <br />
  9. <br />
  10. <br />
  11. <br />
  12. <div class="site-enquiry-form">
  13. <el-form
  14. :inline="true"
  15. :model="formData"
  16. :rules="rules"
  17. ref="form"
  18. label-position="top">
  19. <el-form-item
  20. v-for="item in config"
  21. :class="{
  22. 'long-form-item': item.long,
  23. 'short-form-item': !item.long,
  24. }"
  25. :prop="item.prop"
  26. :label="item.placeholder"
  27. :key="item.label">
  28. <el-input
  29. :type="item.type"
  30. size="small"
  31. :name="item.prop"
  32. :id="item.prop"
  33. v-model="formData[item.prop]"></el-input>
  34. </el-form-item>
  35. <el-form-item>
  36. <div
  37. class="flex center"
  38. style="width: 100%">
  39. <el-button
  40. :loading="submitLoading"
  41. @click="submit"
  42. >SUBMIT</el-button
  43. >
  44. </div>
  45. </el-form-item>
  46. </el-form>
  47. <div
  48. class=""
  49. style="position: absolute; left: -100vw">
  50. <div
  51. class="preview-area"
  52. ref="previewArea">
  53. <div style="margin-bottom: 4px; font-weight: bold; font-size: 18px">
  54. Name
  55. </div>
  56. <div style="padding-left: 20px; font-size: 16px; margin-bottom: 8px">
  57. {{ formData.name }}
  58. </div>
  59. <div style="margin-bottom: 4px; font-weight: bold; font-size: 18px">
  60. Phone
  61. </div>
  62. <div style="padding-left: 20px; font-size: 16px; margin-bottom: 8px">
  63. {{ formData.phone }}
  64. </div>
  65. <div style="margin-bottom: 4px; font-weight: bold; font-size: 18px">
  66. Email
  67. </div>
  68. <div style="padding-left: 20px; font-size: 16px; margin-bottom: 8px">
  69. {{ formData.email }}
  70. </div>
  71. <div style="margin-bottom: 4px; font-weight: bold; font-size: 18px">
  72. Enquiry Details
  73. </div>
  74. <div style="padding-left: 20px; font-size: 16px; margin-bottom: 8px">
  75. {{ formData.enquiry }}
  76. </div>
  77. </div>
  78. </div>
  79. </div>
  80. </div>
  81. </template>
  82. <script>
  83. export default {
  84. data() {
  85. return {
  86. siteID: '',
  87. info: '',
  88. submitLoading: false,
  89. config: [
  90. {
  91. long: true,
  92. autoInput: true,
  93. prop: 'name',
  94. type: 'input',
  95. placeholder: 'Name',
  96. },
  97. {
  98. long: true,
  99. prop: 'phone',
  100. type: 'input',
  101. placeholder: 'Phone',
  102. },
  103. {
  104. long: true,
  105. prop: 'email',
  106. type: 'input',
  107. placeholder: 'Email',
  108. },
  109. {
  110. long: true,
  111. prop: 'enquiry',
  112. type: 'textarea',
  113. placeholder: 'Enquiry',
  114. },
  115. ],
  116. rules: {
  117. email: [
  118. {
  119. required: true,
  120. message: 'Please input',
  121. trigger: 'blur',
  122. },
  123. ],
  124. phone: [
  125. {
  126. required: true,
  127. message: 'Please input',
  128. trigger: 'blur',
  129. },
  130. ],
  131. name: [
  132. {
  133. required: true,
  134. message: 'Please input',
  135. trigger: 'blur',
  136. },
  137. ],
  138. enquiry: [
  139. {
  140. required: true,
  141. message: 'Please input',
  142. trigger: 'blur',
  143. },
  144. ],
  145. },
  146. formData: {
  147. // name: 'name',
  148. // email: 'peter@gmail.com',
  149. // phone: 'phone',
  150. // enquiry: 'enquiry',
  151. name: '',
  152. email: '',
  153. phone: '',
  154. enquiry: '',
  155. },
  156. }
  157. },
  158. async fetch() {
  159. await this.$store.dispatch('getShopInfo').then(res => {
  160. this.info = res.contactus
  161. this.siteID = res.id
  162. })
  163. },
  164. methods: {
  165. submit() {
  166. this.$refs.form.validate(valid => {
  167. if (!valid) return
  168. const f = JSON.parse(JSON.stringify(this.formData))
  169. f.site_id = this.siteID
  170. this.submitLoading = true
  171. this.$axios
  172. .post('/c-api/quote/sendenquiry', f)
  173. .then(() => {
  174. this.$message.success('submit success')
  175. this.formData = {
  176. name: '',
  177. email: '',
  178. phone: '',
  179. enquiry: '',
  180. }
  181. })
  182. .finally(() => {
  183. this.submitLoading = false
  184. })
  185. })
  186. },
  187. },
  188. }
  189. </script>
  190. <style lang="scss">
  191. .site-enquiry-form {
  192. max-width: 700px;
  193. .el-form-item__label {
  194. line-height: 28px;
  195. }
  196. .el-form-item__error {
  197. line-height: 6px !important;
  198. text-align: left;
  199. padding-top: 0;
  200. }
  201. .long-form-item {
  202. width: 96%;
  203. }
  204. .short-form-item {
  205. width: 47%;
  206. }
  207. .el-button {
  208. color: #fff;
  209. background-color: #e90000;
  210. }
  211. }
  212. </style>
  213. <style lang="scss" scoped></style>