settleIn.vue 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  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. uni.navigateTo({
  114. url: "/pageD/faceIdentify/faceIdentify",
  115. });
  116. return;
  117. delete this.model1.code;
  118. if (!this.model1.name) {
  119. uni.showToast({
  120. title: "请填写姓名",
  121. icon: "none",
  122. });
  123. return;
  124. } else if (!this.model1.idcard) {
  125. uni.showToast({
  126. title: "请填写身份证号",
  127. icon: "none",
  128. });
  129. return;
  130. } else if (!this.model1.phone) {
  131. uni.showToast({
  132. title: "请填写手机号",
  133. icon: "none",
  134. });
  135. return;
  136. } else if (!this.model1.card_number) {
  137. uni.showToast({
  138. title: "请填写银行卡号",
  139. icon: "none",
  140. });
  141. return;
  142. }
  143. uni.$u.http.post("/api/merchant/apply", this.model1).then((res) => {
  144. uni.showToast({
  145. title: "申请成功,请等待审核结果",
  146. });
  147. uni.navigateTo({
  148. url: "/pages/mine/mine",
  149. });
  150. });
  151. },
  152. getTeamStatus() {},
  153. toPrivacy() {
  154. uni.navigateTo({
  155. url: "/pageC/privacyPolicy/privacyPolicy",
  156. });
  157. },
  158. toUserAgreement() {
  159. uni.navigateTo({
  160. url: "/pageD/userAgreement/userAgreement",
  161. });
  162. },
  163. },
  164. mounted() {
  165. this.getTeamStatus();
  166. uni.setNavigationBarTitle({
  167. title: "团长入驻",
  168. });
  169. },
  170. };
  171. </script>
  172. <style lang="scss" scoped>
  173. .page {
  174. padding: 20rpx 24rpx;
  175. .content {
  176. padding: 0 20rpx;
  177. background-color: #fff;
  178. border-radius: 16rpx;
  179. }
  180. .bottom-1 {
  181. font-size: 20rpx;
  182. margin-top: 68rpx;
  183. color: #555;
  184. display: flex;
  185. justify-content: flex-start;
  186. align-items: center;
  187. width: 70%;
  188. .radio {
  189. width: 24rpx;
  190. height: 24rpx;
  191. }
  192. }
  193. .btn {
  194. color: #fff;
  195. background-color: #f83224;
  196. border-radius: 44rpx;
  197. margin-top: 28rpx;
  198. height: 88rpx;
  199. font-size: 32rpx;
  200. }
  201. }
  202. </style>