settleIn.vue 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. <template>
  2. <view class="page">
  3. <view class="content">
  4. <u--form
  5. labelPosition="left"
  6. :model="model1"
  7. ref="uForm"
  8. labelWidth="100"
  9. >
  10. <u-form-item label="姓名" prop="userInfo.name" borderBottom ref="item1">
  11. <u--input
  12. inputAlign="right"
  13. v-model="model1.name"
  14. placeholder="请输入真实姓名"
  15. border="none"
  16. ></u--input>
  17. </u-form-item>
  18. <u-form-item
  19. label="身份证号"
  20. prop="userInfo.name"
  21. borderBottom
  22. ref="item1"
  23. >
  24. <u--input
  25. inputAlign="right"
  26. v-model="model1.idcard"
  27. type="idcard"
  28. placeholder="请输入您的身份证"
  29. border="none"
  30. ></u--input>
  31. </u-form-item>
  32. <u-form-item
  33. label="银行卡号"
  34. prop="userInfo.name"
  35. borderBottom
  36. ref="item1"
  37. >
  38. <u--input
  39. inputAlign="right"
  40. v-model="model1.card_number"
  41. type="number"
  42. placeholder="请输入您的银行卡号"
  43. border="none"
  44. ></u--input>
  45. </u-form-item>
  46. <u-form-item
  47. label="手机号"
  48. prop="userInfo.name"
  49. borderBottom
  50. ref="item1"
  51. >
  52. <u--input
  53. inputAlign="right"
  54. v-model="model1.phone"
  55. type="number"
  56. placeholder="请输入手机号"
  57. border="none"
  58. ></u--input>
  59. </u-form-item>
  60. <u-form-item label="验证码" borderBottom ref="item1">
  61. <view style="display: flex; align-items: center">
  62. <u--input
  63. inputAlign="right"
  64. v-model="model1.code"
  65. placeholder="请输入短信验证码"
  66. border="none"
  67. ></u--input>
  68. <view style="color: #f83224; font-weight: 600; margin-left: 50rpx">
  69. 获取验证码
  70. </view>
  71. </view>
  72. </u-form-item>
  73. </u--form>
  74. </view>
  75. <view class="bottom-1">
  76. <u-radio-group
  77. v-model="radiovalue1"
  78. placement="column"
  79. @change="groupChange"
  80. >
  81. <u-radio name="name" @change="radioChange" activeColor="red"> </u-radio>
  82. </u-radio-group>
  83. 我已阅读并同意<text style="color: #f83224" @click="toUserAgreement"
  84. >《用户服务协议》</text
  85. >和
  86. <text style="color: #f83224" @click="toPrivacy">《隐私政策》</text>
  87. </view>
  88. <button class="btn" @click="submit">开始人脸识别验证</button>
  89. </view>
  90. </template>
  91. <script>
  92. export default {
  93. data() {
  94. return {
  95. model1: {
  96. name: "",
  97. idcard: "",
  98. phone: "",
  99. card_number: "",
  100. code: "",
  101. },
  102. radiovalue1: "",
  103. };
  104. },
  105. methods: {
  106. radioChange() {
  107. this.value = !this.value;
  108. },
  109. groupChange(e) {
  110. console.log(e);
  111. },
  112. submit() {
  113. delete this.model1.code;
  114. if (!this.model1.name) {
  115. uni.showToast({
  116. title: "请填写姓名",
  117. icon: "none",
  118. });
  119. return;
  120. } else if (!this.model1.idcard) {
  121. uni.showToast({
  122. title: "请填写身份证号",
  123. icon: "none",
  124. });
  125. return;
  126. } else if (!this.model1.phone) {
  127. uni.showToast({
  128. title: "请填写手机号",
  129. icon: "none",
  130. });
  131. return;
  132. } else if (!this.model1.card_number) {
  133. uni.showToast({
  134. title: "请填写银行卡号",
  135. icon: "none",
  136. });
  137. return;
  138. }
  139. uni.$u.http.post("/api/merchant/apply", this.model1).then((res) => {
  140. console.log(res);
  141. uni.showToast({
  142. title: "申请成功,请等待审核结果",
  143. });
  144. uni.navigateTo({
  145. url: "/pages/mine/mine",
  146. });
  147. });
  148. },
  149. getTeamStatus() {},
  150. toPrivacy() {
  151. uni.navigateTo({
  152. url: "/pageC/privacyPolicy/privacyPolicy",
  153. });
  154. },
  155. toUserAgreement() {
  156. uni.navigateTo({
  157. url: "/pageD/userAgreement/userAgreement",
  158. });
  159. },
  160. },
  161. mounted() {
  162. this.getTeamStatus();
  163. uni.setNavigationBarTitle({
  164. title: "团长入驻",
  165. });
  166. },
  167. };
  168. </script>
  169. <style lang="scss" scoped>
  170. .page {
  171. padding: 20rpx 24rpx;
  172. .content {
  173. padding: 0 20rpx;
  174. background-color: #fff;
  175. border-radius: 16rpx;
  176. }
  177. .bottom-1 {
  178. font-size: 20rpx;
  179. margin-top: 68rpx;
  180. color: #555;
  181. display: flex;
  182. justify-content: flex-start;
  183. align-items: center;
  184. width: 70%;
  185. .radio {
  186. width: 24rpx;
  187. height: 24rpx;
  188. }
  189. }
  190. .btn {
  191. color: #fff;
  192. background-color: #f83224;
  193. border-radius: 44rpx;
  194. margin-top: 28rpx;
  195. height: 88rpx;
  196. font-size: 32rpx;
  197. }
  198. }
  199. </style>