settleIn.vue 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  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-checkbox-group>
  77. <u-checkbox
  78. v-model="radiovalue1"
  79. shape="circle"
  80. activeColor="#f83224"
  81. @change="radioChange"
  82. ></u-checkbox>
  83. </u-checkbox-group>
  84. 我已阅读并同意<text style="color: #f83224" @click="toUserAgreement"
  85. >《用户服务协议》</text
  86. >和
  87. <text style="color: #f83224" @click="toPrivacy">《隐私政策》</text>
  88. </view>
  89. <button class="btn" @click="submit">开始人脸识别验证</button>
  90. </view>
  91. </template>
  92. <script>
  93. import { startEid } from "../../mp_ecard_sdk/main";
  94. export default {
  95. data() {
  96. return {
  97. model1: {
  98. name: "",
  99. idcard: "",
  100. phone: "",
  101. card_number: "",
  102. code: "",
  103. },
  104. radiovalue1: false,
  105. };
  106. },
  107. methods: {
  108. radioChange() {
  109. console.log(this.radiovalue1);
  110. this.radiovalue1 = !this.radiovalue1;
  111. },
  112. submit() {
  113. console.log(this.radiovalue1);
  114. if (!this.radiovalue1) {
  115. uni.showToast({
  116. title: "请先勾选《用户服务协议》和《隐私政策》",
  117. icon: "none",
  118. });
  119. return;
  120. }
  121. delete this.model1.code;
  122. if (!this.model1.name) {
  123. uni.showToast({
  124. title: "请填写姓名",
  125. icon: "none",
  126. });
  127. return;
  128. } else if (!this.model1.idcard) {
  129. uni.showToast({
  130. title: "请填写身份证号",
  131. icon: "none",
  132. });
  133. return;
  134. } else if (!this.model1.phone) {
  135. uni.showToast({
  136. title: "请填写手机号",
  137. icon: "none",
  138. });
  139. return;
  140. } else if (!this.model1.card_number) {
  141. uni.showToast({
  142. title: "请填写银行卡号",
  143. icon: "none",
  144. });
  145. return;
  146. }
  147. uni.$u.http.get(`/api/identify/identify`).then((res) => {
  148. startEid({
  149. data: {
  150. token: res.EidToken,
  151. needJumpPage: false,
  152. },
  153. verifyDoneCallback(res) {
  154. const { token, verifyDone } = res;
  155. console.log("收到核身完成的res:", res);
  156. console.log("核身的token是:", token);
  157. console.log("是否完成核身:", verifyDone);
  158. if (verifyDone) {
  159. uni.$u.http
  160. .post("/api/merchant/apply", this.model1)
  161. .then((res) => {
  162. uni.showToast({
  163. title: "申请成功,请等待审核结果",
  164. });
  165. uni.navigateTo({
  166. url: "/pages/mine/mine",
  167. });
  168. });
  169. } else {
  170. uni.showToast({
  171. title: "请先完成身份核验",
  172. });
  173. }
  174. },
  175. });
  176. });
  177. },
  178. getTeamStatus() {},
  179. toPrivacy() {
  180. uni.navigateTo({
  181. url: "/pageC/privacyPolicy/privacyPolicy",
  182. });
  183. },
  184. toUserAgreement() {
  185. uni.navigateTo({
  186. url: "/pageD/userAgreement/userAgreement",
  187. });
  188. },
  189. },
  190. mounted() {
  191. this.getTeamStatus();
  192. uni.setNavigationBarTitle({
  193. title: "团长入驻",
  194. });
  195. },
  196. };
  197. </script>
  198. <style lang="scss" scoped>
  199. .page {
  200. padding: 20rpx 24rpx;
  201. .content {
  202. padding: 0 20rpx;
  203. background-color: #fff;
  204. border-radius: 16rpx;
  205. }
  206. .bottom-1 {
  207. font-size: 20rpx;
  208. margin-top: 68rpx;
  209. color: #555;
  210. display: flex;
  211. justify-content: flex-start;
  212. align-items: center;
  213. width: 70%;
  214. .radio {
  215. width: 24rpx;
  216. height: 24rpx;
  217. }
  218. }
  219. .btn {
  220. color: #fff;
  221. background-color: #f83224;
  222. border-radius: 44rpx;
  223. margin-top: 28rpx;
  224. height: 88rpx;
  225. font-size: 32rpx;
  226. }
  227. }
  228. </style>