settleIn.vue 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  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
  11. :label="i18n.name"
  12. prop="userInfo.name"
  13. borderBottom
  14. ref="item1"
  15. >
  16. <u--input
  17. inputAlign="right"
  18. v-model="model1.name"
  19. :placeholder="i18n.pleaseName"
  20. border="none"
  21. ></u--input>
  22. </u-form-item>
  23. <u-form-item
  24. :label="i18n.IDCard"
  25. prop="userInfo.name"
  26. borderBottom
  27. ref="item1"
  28. >
  29. <u--input
  30. inputAlign="right"
  31. v-model="model1.idcard"
  32. type="idcard"
  33. :placeholder="i18n.enterCard"
  34. border="none"
  35. ></u--input>
  36. </u-form-item>
  37. <u-form-item
  38. :label="i18n.backCard"
  39. prop="userInfo.name"
  40. borderBottom
  41. ref="item1"
  42. >
  43. <u--input
  44. inputAlign="right"
  45. v-model="model1.card_number"
  46. type="number"
  47. :placeholder="i18n.pleaseBackCard"
  48. border="none"
  49. ></u--input>
  50. </u-form-item>
  51. <u-form-item
  52. :label="i18n.areaCode"
  53. prop="userInfo.name"
  54. borderBottom
  55. ref="item1"
  56. >
  57. <u--input
  58. inputAlign="right"
  59. v-model="model1.global_roaming"
  60. type="number"
  61. :placeholder="i18n.pleaseCode"
  62. border="none"
  63. ></u--input>
  64. </u-form-item>
  65. <u-form-item
  66. :label="i18n.phone"
  67. prop="userInfo.name"
  68. borderBottom
  69. ref="item1"
  70. >
  71. <u--input
  72. inputAlign="right"
  73. v-model="model1.phone"
  74. type="number"
  75. :placeholder="i18n.pleasePhone"
  76. border="none"
  77. ></u--input>
  78. </u-form-item>
  79. <u-form-item :label="i18n.QRCode" borderBottom ref="item1">
  80. <view style="display: flex; align-items: center">
  81. <u--input
  82. inputAlign="right"
  83. v-model="model1.code"
  84. :placeholder="i18n.pleaseQrCode"
  85. border="none"
  86. ></u--input>
  87. <view @click="getCode" style=" font-weight: 600; margin-left: 50rpx" :style="{'color':!sendCode?'#f83224':'#ccc'}">
  88. {{ i18n.getQrCode }}
  89. </view>
  90. </view>
  91. </u-form-item>
  92. </u--form>
  93. </view>
  94. <view class="bottom-1">
  95. <u-checkbox-group>
  96. <u-checkbox
  97. v-model="radiovalue1"
  98. shape="circle"
  99. activeColor="#f83224"
  100. @change="radioChange"
  101. ></u-checkbox>
  102. </u-checkbox-group>
  103. {{ i18n.readandAgree
  104. }}<text style="color: #f83224" @click="toUserAgreement"
  105. >《{{ i18n.userServiceAgreement }}》</text
  106. >{{ i18n.and }}
  107. <text style="color: #f83224" @click="toPrivacy"
  108. >《{{ i18n.privacy }}》</text
  109. >
  110. </view>
  111. <button class="btn" @click="submit">{{ i18n.startVerification }}</button>
  112. </view>
  113. </template>
  114. <script>
  115. import { startEid } from "../../mp_ecard_sdk/main";
  116. export default {
  117. data() {
  118. return {
  119. model1: {
  120. name: "",
  121. idcard: "",
  122. phone: "",
  123. card_number: "",
  124. code: "",
  125. global_roaming:""
  126. },
  127. sendCode:false,
  128. radiovalue1: false,
  129. };
  130. },
  131. computed: {
  132. i18n() {
  133. return this.$t("index");
  134. },
  135. },
  136. methods: {
  137. radioChange() {
  138. this.radiovalue1 = !this.radiovalue1;
  139. },
  140. getCode(){
  141. if(this.sendCode){
  142. return
  143. }
  144. if(!this.model1.phone&&!this.model1.global_roaming){
  145. uni.showToast({
  146. title:this.i18n.pleaseCode+'、'+this.i18n.phone,
  147. icon:'none'
  148. })
  149. return
  150. }
  151. uni.$u.http.get(`/api/sms/code?mobile=${this.model1.phone}&prefix=${this.model1.global_roaming}`).then(res=>{
  152. this.sendCode = true
  153. })
  154. },
  155. submit() {
  156. if (!this.radiovalue1) {
  157. uni.showToast({
  158. title: `${this.i18n.checkFirst}《${this.i18n.userServiceAgreement}》${this.i18n.and}《${this.i18n.privacy}》`,
  159. icon: "none",
  160. });
  161. return;
  162. }
  163. if (!this.model1.name) {
  164. uni.showToast({
  165. title: this.i18n.pleaseName,
  166. icon: "none",
  167. });
  168. return;
  169. } else if (!this.model1.idcard) {
  170. uni.showToast({
  171. title: this.i18n.enterCard,
  172. icon: "none",
  173. });
  174. return;
  175. } else if (!this.model1.phone) {
  176. uni.showToast({
  177. title: this.i18n.pleasePhone,
  178. icon: "none",
  179. });
  180. return;
  181. } else if (!this.model1.card_number) {
  182. uni.showToast({
  183. title: this.i18n.pleaseBackCard,
  184. icon: "none",
  185. });
  186. return;
  187. }
  188. const _this = this
  189. uni.$u.http.get(`/api/identify/identify`).then((res) => {
  190. startEid({
  191. data: {
  192. token: res.EidToken,
  193. needJumpPage: false,
  194. },
  195. verifyDoneCallback(res) {
  196. const { token, verifyDone } = res;
  197. if (verifyDone) {
  198. uni.$u.http
  199. .post("/api/merchant/apply", _this.model1)
  200. .then((res) => {
  201. // uni.showToast({
  202. // title: _this.i18n.applicationResult,
  203. // });
  204. uni.switchTab({
  205. url: "../../pages/mine/mine",
  206. });
  207. });
  208. } else {
  209. uni.showToast({
  210. title: _this.i18n.pleaseIdentity,
  211. });
  212. }
  213. },
  214. });
  215. });
  216. },
  217. getTeamStatus() {},
  218. toPrivacy() {
  219. uni.navigateTo({
  220. url: "/pageC/privacyPolicy/privacyPolicy",
  221. });
  222. },
  223. toUserAgreement() {
  224. uni.navigateTo({
  225. url: "/pageD/userAgreement/userAgreement",
  226. });
  227. },
  228. },
  229. mounted() {
  230. this.getTeamStatus();
  231. uni.setNavigationBarTitle({
  232. title: this.i18n.teamSettle,
  233. });
  234. },
  235. };
  236. </script>
  237. <style lang="scss" scoped>
  238. .page {
  239. padding: 20rpx 24rpx;
  240. .content {
  241. padding: 0 20rpx;
  242. background-color: #fff;
  243. border-radius: 16rpx;
  244. }
  245. .bottom-1 {
  246. font-size: 20rpx;
  247. margin-top: 68rpx;
  248. color: #555;
  249. display: flex;
  250. justify-content: flex-start;
  251. align-items: center;
  252. width: 70%;
  253. .radio {
  254. width: 24rpx;
  255. height: 24rpx;
  256. }
  257. }
  258. .btn {
  259. color: #fff;
  260. background-color: #f83224;
  261. border-radius: 44rpx;
  262. margin-top: 28rpx;
  263. height: 88rpx;
  264. font-size: 32rpx;
  265. }
  266. }
  267. </style>