beginCard.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. <template>
  2. <view class="jz_beginCard uni-flex uni-column">
  3. <view class="beginCardImg">
  4. <image src="https://www.jinzun99.com/static/01.png"></image>
  5. </view>
  6. <form class="uni-flex uni-flex-item uni-column form" @submit="formSubmit" @reset="formReset">
  7. <view class="uni-flex-item justify-align-center uni-flex uni-column">
  8. <view class="beginCard_name uni-flex align-items">
  9. <view class="uni-flex-item">真实姓名:</view>
  10. <input type="text" class="uni-flex-item3" v-model="nickName" name="nickName" placeholder="请填写姓名" placeholder-style="font-size: 24upx;"/>
  11. </view>
  12. <view class="beginCard_name uni-flex align-items">
  13. <view class="uni-flex-item">手机号码:</view>
  14. <input type="text" class="uni-flex-item3" v-model="mobile" name="mobile" placeholder="请填写手机号码" placeholder-style="font-size: 24upx;"/>
  15. </view>
  16. <view class="beginCard_btn">
  17. <button formType="submit" class="uni-flex justify-align-center">
  18. 提交申请
  19. </button>
  20. </view>
  21. <view class="uni-flex align-items beginCard-phone">
  22. <image src="../../../static/beginCard/03.png"></image>
  23. 官方联系电话
  24. </view>
  25. <view class="uni-flex align-items phone">
  26. 400-888-6666
  27. </view>
  28. </view>
  29. </form>
  30. </view>
  31. </template>
  32. <script>
  33. var graceChecker = require('../../../common/graceChecker.js');
  34. import {
  35. mapState,
  36. mapMutations
  37. } from 'vuex';
  38. export default {
  39. data() {
  40. return {
  41. nickName: '',
  42. mobile: '',
  43. user: {}
  44. }
  45. },
  46. computed: {
  47. ...mapState(['hasLogin', 'jyyUser'])
  48. },
  49. onLoad() {
  50. if (!this.hasLogin) {
  51. uni.navigateTo({
  52. url: '../login/login'
  53. });
  54. } else {
  55. this.user = JSON.parse(this.jyyUser);
  56. this.nickName=this.user.nickName;
  57. this.mobile=this.user.mobile;
  58. }
  59. },
  60. methods: {
  61. formSubmit: function(e) {
  62. var rule = [{
  63. name: 'nickName',
  64. checkType: 'notnull',
  65. checkRule: '1,4',
  66. errorMsg: '请填写姓名'
  67. },
  68. {
  69. name: 'mobile',
  70. checkType: 'string',
  71. checkRule: '11',
  72. errorMsg: '手机号码11个字符'
  73. }
  74. ];
  75. //进行表单检查
  76. var formData = e.detail.value;
  77. var checkRes = graceChecker.check(formData, rule);
  78. if (checkRes) {
  79. uni.request({
  80. url: this.webUrl + 'OpenBrand',
  81. method: 'POST',
  82. data: {
  83. nickName: this.nickName,
  84. mobile: this.mobile
  85. },
  86. header: {
  87. 'content-type': 'application/x-www-form-urlencoded'
  88. },
  89. success: res => {
  90. uni.hideLoading();
  91. uni.showToast({
  92. title: res.data.result.resultInfo,
  93. icon: 'none'
  94. });
  95. },
  96. fail: () => {},
  97. complete: () => {}
  98. });
  99. } else {
  100. uni.showToast({
  101. title: graceChecker.error,
  102. icon: 'none'
  103. });
  104. }
  105. },
  106. }
  107. }
  108. </script>
  109. <style>
  110. .jz_beginCard .beginCard_btn button{
  111. display: block;
  112. width: 550upx;
  113. height: 115upx;
  114. line-height: 115upx;
  115. font-size: 28upx;
  116. color: #FFFFFF;
  117. background: url(../../../static/btn.png) no-repeat;
  118. background-size: 550upx 115upx;
  119. }
  120. </style>