contactPromoCollection.vue 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  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 PromoCollection</el-breadcrumb-item>
  6. </el-breadcrumb>
  7. <p class="title">Contact PromoCollection</p>
  8. <div class="line"></div>
  9. <p class="des">
  10. &nbsp;&nbsp;&nbsp;&nbsp; We distribute through distributors only. If you
  11. are a registered distributor, please
  12. <span @click="Login">login</span> , otherwise, please fill out
  13. contact <br />
  14. details below. One of our authorized distributors would contact you
  15. shortly.
  16. <span>If you have a preferred distributor, please specify</span>
  17. </p>
  18. <el-form
  19. :model="ruleForm"
  20. :rules="rules"
  21. ref="ruleForm"
  22. label-width="0px"
  23. class="demo-ruleForm"
  24. >
  25. <el-form-item prop="company">
  26. <el-input
  27. v-model="ruleForm.company"
  28. placeholder="Company Name*"
  29. clearable
  30. ></el-input>
  31. </el-form-item>
  32. <el-form-item prop="contacts">
  33. <el-input
  34. v-model="ruleForm.contacts"
  35. placeholder="Contact Person*"
  36. clearable
  37. ></el-input>
  38. </el-form-item>
  39. <el-form-item prop="phone">
  40. <el-input
  41. v-model="ruleForm.phone"
  42. placeholder="Phone*"
  43. clearable
  44. ></el-input>
  45. </el-form-item>
  46. <el-form-item prop="address">
  47. <el-input
  48. v-model="ruleForm.address"
  49. placeholder="Address"
  50. clearable
  51. ></el-input>
  52. </el-form-item>
  53. <el-form-item prop="state">
  54. <el-input
  55. v-model="ruleForm.state"
  56. placeholder="State"
  57. clearable
  58. ></el-input>
  59. </el-form-item>
  60. <el-form-item prop="postcode">
  61. <el-input
  62. v-model="ruleForm.postcode"
  63. placeholder="Post Code"
  64. clearable
  65. ></el-input>
  66. </el-form-item>
  67. <el-form-item prop="url">
  68. <el-input
  69. v-model="ruleForm.url"
  70. placeholder="Website"
  71. clearable
  72. ></el-input>
  73. </el-form-item>
  74. <el-form-item prop="email">
  75. <el-input
  76. v-model="ruleForm.email"
  77. placeholder="E-mail"
  78. clearable
  79. ></el-input>
  80. </el-form-item>
  81. <el-form-item prop="content">
  82. <el-input
  83. type="textarea"
  84. :rows="5"
  85. v-model="ruleForm.content"
  86. placeholder="Content"
  87. clearable
  88. ></el-input>
  89. </el-form-item>
  90. <el-form-item>
  91. <el-button @click="submitForm('ruleForm')" :disabled="disabledFlag">
  92. {{ butonContent }}
  93. </el-button>
  94. </el-form-item>
  95. </el-form>
  96. </div>
  97. </template>
  98. <script>
  99. import { mapMutations } from "vuex";
  100. export default {
  101. data() {
  102. return {
  103. ruleForm: {
  104. company: "",
  105. contacts: "",
  106. phone: "",
  107. address: "",
  108. state: "",
  109. postcode: "",
  110. url: "",
  111. email: "",
  112. content: "",
  113. },
  114. rules: {
  115. company: [
  116. {
  117. required: true,
  118. message: "Please enter your Company Name",
  119. trigger: "blur",
  120. },
  121. ],
  122. contacts: [
  123. {
  124. required: true,
  125. message: "Please enter your Contact Person",
  126. trigger: "blur",
  127. },
  128. ],
  129. phone: [
  130. {
  131. required: true,
  132. message: "Please enter your Phone Number",
  133. trigger: "blur",
  134. },
  135. ],
  136. },
  137. time: 60,
  138. timer: null,
  139. butonContent: "Submit",
  140. disabledFlag: false,
  141. };
  142. },
  143. watch: {
  144. time: {
  145. handler(newValue) {
  146. if (newValue == 0) {
  147. this.disabledFlag = false;
  148. } else {
  149. this.disabledFlag = true;
  150. }
  151. },
  152. },
  153. },
  154. methods: {
  155. ...mapMutations(["openDialog"]),
  156. Login(){
  157. this.openDialog();
  158. },
  159. submitForm(formName) {
  160. this.$refs[formName].validate((valid) => {
  161. if (valid) {
  162. this.timer = setInterval(() => {
  163. if (this.time == 0) {
  164. this.butonContent = "Submit";
  165. clearInterval(this.timer);
  166. } else {
  167. this.butonContent = "Submit " + this.time + " s";
  168. this.time--;
  169. }
  170. }, 1000);
  171. this.$axios
  172. .post("/uk-api/others/visitor", this.ruleForm)
  173. .then((res) => {
  174. if (res.code == 1) {
  175. this.$notify({
  176. title: "success",
  177. message:
  178. "Your request has been sent to your nominated e mail address.",
  179. type: "success",
  180. });
  181. this.$router.push('/')
  182. }
  183. })
  184. .catch(() => {
  185. // this.$message.error(error.response.data.msg);
  186. });
  187. } else {
  188. console.log("error submit!!");
  189. return false;
  190. }
  191. });
  192. },
  193. },
  194. };
  195. </script>
  196. <style lang="scss" scoped>
  197. .title {
  198. height: 50px;
  199. font-size: 36px;
  200. font-family: Proxima Nova;
  201. font-weight: bold;
  202. color: #00213b;
  203. text-align: center;
  204. line-height: 50px;
  205. }
  206. .line {
  207. width: 99px;
  208. height: 4px;
  209. background: #e90000;
  210. margin: 15px auto;
  211. }
  212. .des {
  213. width: 1110px;
  214. font-size: 18px;
  215. font-family: Proxima Nova;
  216. font-weight: 400;
  217. color: #4a596c;
  218. line-height: 24px;
  219. margin: 57px auto 66px;
  220. span:nth-of-type(1) {
  221. color: #0071ff;
  222. }
  223. span:nth-of-type(2) {
  224. font-weight: 550;
  225. }
  226. }
  227. :deep(.el-form) {
  228. width: 1080px;
  229. margin: 0 auto;
  230. display: flex;
  231. justify-content: space-around;
  232. align-items: center;
  233. flex-wrap: wrap;
  234. font-size: 16px;
  235. font-family: Proxima Nova;
  236. font-weight: 400;
  237. .el-input {
  238. width: 500px;
  239. color: #666666;
  240. background: #ffffff;
  241. border: 1px solid #bebebe;
  242. border-radius: 6px;
  243. }
  244. .el-textarea {
  245. width: 1040px;
  246. color: #666666;
  247. background: #ffffff;
  248. border: 1px solid #bebebe;
  249. border-radius: 6px;
  250. }
  251. .el-button {
  252. width: 1040px;
  253. font-size: 12px;
  254. font-family: Helvetica;
  255. font-weight: bold;
  256. color: #ffffff;
  257. background: #00213b;
  258. border-radius: 6px;
  259. }
  260. }
  261. </style>