contactus.vue 5.9 KB

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