contactus.vue 5.7 KB

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