settleIn.vue 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  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. uni.$u.http.get(`/api/identify/identify`).then((res) => {
  189. startEid({
  190. data: {
  191. token: res.EidToken,
  192. needJumpPage: false,
  193. },
  194. verifyDoneCallback(res) {
  195. const { token, verifyDone } = res;
  196. if (verifyDone) {
  197. uni.$u.http
  198. .post("/api/merchant/apply", this.model1)
  199. .then((res) => {
  200. uni.showToast({
  201. title: this.i18n.applicationResult,
  202. });
  203. uni.navigateTo({
  204. url: "/pages/mine/mine",
  205. });
  206. });
  207. } else {
  208. uni.showToast({
  209. title: this.i18n.pleaseIdentity,
  210. });
  211. }
  212. },
  213. });
  214. });
  215. },
  216. getTeamStatus() {},
  217. toPrivacy() {
  218. uni.navigateTo({
  219. url: "/pageC/privacyPolicy/privacyPolicy",
  220. });
  221. },
  222. toUserAgreement() {
  223. uni.navigateTo({
  224. url: "/pageD/userAgreement/userAgreement",
  225. });
  226. },
  227. },
  228. mounted() {
  229. this.getTeamStatus();
  230. uni.setNavigationBarTitle({
  231. title: this.i18n.teamSettle,
  232. });
  233. },
  234. };
  235. </script>
  236. <style lang="scss" scoped>
  237. .page {
  238. padding: 20rpx 24rpx;
  239. .content {
  240. padding: 0 20rpx;
  241. background-color: #fff;
  242. border-radius: 16rpx;
  243. }
  244. .bottom-1 {
  245. font-size: 20rpx;
  246. margin-top: 68rpx;
  247. color: #555;
  248. display: flex;
  249. justify-content: flex-start;
  250. align-items: center;
  251. width: 70%;
  252. .radio {
  253. width: 24rpx;
  254. height: 24rpx;
  255. }
  256. }
  257. .btn {
  258. color: #fff;
  259. background-color: #f83224;
  260. border-radius: 44rpx;
  261. margin-top: 28rpx;
  262. height: 88rpx;
  263. font-size: 32rpx;
  264. }
  265. }
  266. </style>