contactus.vue 5.6 KB

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