settleIn.vue 5.7 KB

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