Subscription.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <template>
  2. <div class="wrap">
  3. <div class="wrap-title">
  4. <img src="@/assets/img/e-mail@2x.png" />
  5. <span >Get the latest sales and new product annoucements right to your inbox</span>
  6. </div>
  7. <el-form :inline="true" ref="emailForm" :model="emailForm" method="post" action="https://app.icontact.com/icp/core/mycontacts/signup/designer/form/?id=210&cid=1413118&lid=11002" :rules="rules" @submit.native="submit($event)">
  8. <el-form-item prop="email">
  9. <el-input v-model="emailForm.email" name="data[email]" placeholder="E-MAIL" clearable></el-input>
  10. </el-form-item>
  11. <el-form-item prop="fname">
  12. <el-input v-model="emailForm.fname" name="data[fname]" placeholder="FIRST NAME" clearable></el-input>
  13. </el-form-item>
  14. <el-form-item prop="lname">
  15. <el-input v-model="emailForm.lname" name="data[lname]" placeholder="LAST NAME" clearable></el-input>
  16. </el-form-item>
  17. <el-form-item prop="phone">
  18. <el-input v-model="emailForm.phone" name="data[phone]" placeholder="PHONE" clearable></el-input>
  19. </el-form-item>
  20. <el-form-item prop="business">
  21. <el-input v-model="emailForm.business" name="data[business]" placeholder="BUSINES" clearable></el-input>
  22. </el-form-item>
  23. <el-form-item>
  24. <el-input type="submit" value="Submit" class="sumbitBtn"></el-input>
  25. <!-- <el-button type="primary" @click="onSubmit">Submit</el-button> -->
  26. </el-form-item>
  27. </el-form>
  28. </div>
  29. </template>
  30. <script>
  31. export default {
  32. data() {
  33. return {
  34. emailForm: {
  35. email: "",
  36. fname: "",
  37. lname: "",
  38. phone: "",
  39. business: "",
  40. },
  41. rules:{
  42. email: [{ required: true, message: "Please enter the correct format", pattern: /^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+((.[a-zA-Z0-9_-]{2,3}){1,2})$/,trigger: "blur" }],
  43. fname: [{ required: true, message: "Please enter", trigger: "blur" }],
  44. lname: [{ required: true, message: "Please enter", trigger: "blur" }],
  45. phone: [{ required: true, message: "Please enter the correct format", pattern:/^1[0-9]{10}$/, trigger: "blur" }],
  46. business: [{ required: true, message: "Please enter", trigger: "blur" }],
  47. },
  48. };
  49. },
  50. methods: {
  51. submit(e) {
  52. this.$refs.emailForm.validate((valid) => {
  53. if (valid) {
  54. return true;
  55. } else {
  56. return e.preventDefault();
  57. }
  58. });
  59. },
  60. },
  61. };
  62. </script>
  63. <style lang="scss" scoped>
  64. .wrap {
  65. background-color: #f2f2f2;
  66. padding: 15px 30px 0;
  67. .wrap-title {
  68. margin-bottom: 10px;
  69. img, span {
  70. vertical-align: middle;
  71. }
  72. span {
  73. display: inline-block;
  74. color: #999;
  75. margin-left: 20px;
  76. }
  77. }
  78. .el-input{
  79. width: 220px;
  80. }
  81. .el-button{
  82. width: 140px !important;
  83. }
  84. .sumbitBtn{
  85. width: 140px !important;
  86. :deep(.el-input__inner){
  87. cursor: pointer;
  88. background-color: #E90000;
  89. color: #fff;
  90. border-color: #E90000;
  91. &:hover {
  92. opacity: 0.7;
  93. }
  94. }
  95. }
  96. //显示时按钮样式
  97. .el-button--primary { //需要更改的按钮类型 type='primary'
  98. background: #E90000 !important;
  99. border-color: #E90000 !important;
  100. }
  101. //移入时按钮样式 type='primary'
  102. .el-button--primary:hover {
  103. background: #E90000 !important;
  104. border-color: #E90000 !important;
  105. opacity: 0.7;
  106. }
  107. }
  108. </style>