identity.vue 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363
  1. <template>
  2. <view class="identity">
  3. <!-- #ifdef H5 -->
  4. <u-navbar v-if="mixin_type=='H5'" back-text=" " :custom-back='goBack' title="身份认证" :border-bottom="false" :background="{backgroundColor: '#d52e4c'}" back-icon-color="#fff" title-color="#fff"></u-navbar>
  5. <!-- #endif -->
  6. <u-toast ref="uToast" />
  7. <u-modal v-model="show" :mask-close-able="false" confirm-color="#D52E4C" @confirm="confirm" :show-cancel-button="false" :content="content"></u-modal>
  8. <view class="form">
  9. <view class="upload">
  10. <view class="flexJu">
  11. <image src="@/static/img/uUploadID11.png" mode="widthFix"></image>
  12. <image class="ding" src="../../static/img/uploadadd.png" mode=""></image>
  13. <u-upload ref="uUpload1" width="600rpx" height="300rpx" @on-change="progress1" :action="action" ></u-upload>
  14. </view>
  15. <view style="font-size: 32rpx;color: #333;margin-top: 20rpx;margin-top: 30rpx;">身份证正面照</view>
  16. <view style="color: rgba(187, 187, 187);font-size: 20rpx;margin-top: 10rpx;">证件四角边缘空隙2厘米以上,手机横排,照片清晰不模糊,无水印,无反光,无PS</view>
  17. </view>
  18. <view class="upload">
  19. <view class="flexJu">
  20. <image src="../../static/img/uUploadID22.png" mode=""></image>
  21. <image class="ding" src="../../static/img/uploadadd.png" mode=""></image>
  22. <u-upload ref="uUpload2" width="600rpx" height="300rpx" @on-change="progress2" :action="action" ></u-upload>
  23. </view>
  24. <view style="font-size: 32rpx;color: #333;margin-top: 20rpx;margin-top: 30rpx;">身份证反面照</view>
  25. <view style="color: rgba(187, 187, 187);font-size: 20rpx;margin-top: 10rpx;">证件四角边缘空隙2厘米以上,手机横排,照片清晰不模糊,无水印,无反光,无PS</view>
  26. </view>
  27. <view class="upload">
  28. <view class="flexJu">
  29. <image src="../../static/img/uUploadID33.png" mode=""></image>
  30. <image class="ding" src="../../static/img/uploadadd.png" mode=""></image>
  31. <u-upload ref="uUpload3" width="600rpx" height="300rpx" @on-change="progress3" :action="action" ></u-upload>
  32. </view>
  33. <view style="font-size: 32rpx;color: #333;margin-top: 20rpx;margin-top: 30rpx;">本人免冠正面照</view>
  34. <view style="color: rgba(187, 187, 187);font-size: 20rpx;margin-top: 10rpx;">无需手持身份证,胸部以上,露出双肩,人像面部比例不低于1/3,无水印,无反光,无PS</view>
  35. </view>
  36. <view class="formInput">
  37. <view class="title">
  38. 实名信息
  39. </view>
  40. <u-form :model="form" label-width="220">
  41. <u-form-item label="姓名" >
  42. <u-input v-model="form.name" placeholder-style="font-size:24rpx;" :clearable="false" placeholder="请输入真实姓名"/>
  43. </u-form-item>
  44. <u-form-item label="手机号" >
  45. <u-input v-model="form.phone" placeholder-style="font-size:24rpx;" :clearable="false" placeholder="请输入手机号"/>
  46. </u-form-item>
  47. <u-form-item label="身份证号">
  48. <u-input v-model="form.id_no" placeholder-style="font-size:24rpx;" :clearable="false" placeholder="请输入身份证号"/>
  49. </u-form-item>
  50. </u-form>
  51. <view class="btn" @tap="apply()">
  52. 提交
  53. </view>
  54. </view>
  55. </view>
  56. </view>
  57. </template>
  58. <script>
  59. export default {
  60. data() {
  61. return {
  62. // 上传地址
  63. action: '',
  64. form: {
  65. id:'',
  66. id_no:'', //身份号码,
  67. name:'', //姓名
  68. phone:'', //手机号
  69. },
  70. show: false,
  71. content: '上传成功',
  72. phoneNext:''
  73. }
  74. },
  75. onLoad(option) {
  76. if(option.id){
  77. this.form.id=option.id
  78. this.phoneNext=option.phone
  79. }
  80. this.action=this.$httpUrl+'/api/common/upload'
  81. },
  82. methods: {
  83. goBack(){
  84. if(getCurrentPages().length==1){
  85. return
  86. }else{
  87. uni.navigateBack()
  88. }
  89. },
  90. progress1(res, index, lists, name){
  91. // console.log(JSON.parse(res.data))
  92. if(JSON.parse(res.data).code==0){
  93. this.$refs.uToast.show({
  94. title: JSON.parse(res.data).msg,
  95. type: 'error ',
  96. })
  97. this.$refs.uUpload1.clear()
  98. }
  99. },
  100. progress2(res, index, lists, name){
  101. // console.log(JSON.parse(res.data))
  102. if(JSON.parse(res.data).code==0){
  103. this.$refs.uToast.show({
  104. title: JSON.parse(res.data).msg,
  105. type: 'error ',
  106. })
  107. this.$refs.uUpload2.clear()
  108. }
  109. },
  110. progress3(res, index, lists, name){
  111. // console.log(JSON.parse(res.data))
  112. if(JSON.parse(res.data).code==0){
  113. this.$refs.uToast.show({
  114. title: JSON.parse(res.data).msg,
  115. type: 'error ',
  116. })
  117. this.$refs.uUpload3.clear()
  118. }
  119. },
  120. apply(){
  121. let files1 = [];
  122. let files2 = [];
  123. let files3 = [];
  124. // 通过filter,筛选出上传进度为100的文件(因为某些上传失败的文件,进度值不为100,这个是可选的操作)
  125. files1 = this.$refs.uUpload1.lists.filter(val => {
  126. return val.progress == 100;
  127. })
  128. files2 = this.$refs.uUpload2.lists.filter(val => {
  129. return val.progress == 100;
  130. })
  131. files3 = this.$refs.uUpload3.lists.filter(val => {
  132. return val.progress == 100;
  133. })
  134. if(files1[0]==undefined){
  135. this.$refs.uToast.show({
  136. title: '请上传身份证正面照',
  137. type: 'error ',
  138. })
  139. return;
  140. }
  141. if(files2[0]==undefined){
  142. this.$refs.uToast.show({
  143. title: '请上传身份证背面照',
  144. type: 'error ',
  145. })
  146. return;
  147. }
  148. if(files3[0]==undefined){
  149. this.$refs.uToast.show({
  150. title: '请上传本人免冠正面照',
  151. type: 'error ',
  152. })
  153. return;
  154. }
  155. if(this.form.name==''){
  156. this.$refs.uToast.show({
  157. title: '请输入姓名',
  158. type: 'error ',
  159. })
  160. return;
  161. }
  162. if(!this.$check.checkName(this.form.name)){
  163. this.$refs.uToast.show({
  164. title: '请输入正确的格式',
  165. type: 'error ',
  166. })
  167. return;
  168. }
  169. if(this.form.phone==''){
  170. this.$refs.uToast.show({
  171. title: '请输入手机号',
  172. type: 'error ',
  173. })
  174. return;
  175. }
  176. if(!this.$check.checkMobile(this.form.phone)){
  177. this.$refs.uToast.show({
  178. title: '请输入正确手机号的格式',
  179. type: 'error ',
  180. })
  181. return;
  182. }
  183. if(this.form.id_no==''){
  184. this.$refs.uToast.show({
  185. title: '请输入身份证号',
  186. type: 'error ',
  187. })
  188. return;
  189. }
  190. if(!this.$check.IdName(this.form.id_no)){
  191. this.$refs.uToast.show({
  192. title: '请输入正确的身份证',
  193. type: 'error ',
  194. })
  195. return;
  196. }
  197. let obj={
  198. id:this.form.id,
  199. idcard_face_img:files1[0].response.data.url,
  200. idcard_back_img:files2[0].response.data.url,
  201. face_img:files3[0].response.data.url,
  202. name:this.form.name,
  203. id_no:this.form.id_no,
  204. phone:this.form.phone,
  205. }
  206. this.$http.upload_identity(obj)
  207. .then(res=>{
  208. let this_=this;
  209. console.log(res)
  210. if(res.data.code==1){
  211. this.$refs.uToast.show({
  212. title: '上传成功',
  213. type: 'success',
  214. })
  215. setTimeout(function() {
  216. uni.$emit('updateData', {mobile:this.phoneNext})
  217. wx.navigateBack({ //返回
  218. delta: 1
  219. });
  220. }, 1000);
  221. }else{
  222. this.$refs.uToast.show({
  223. title: res.data.msg,
  224. type: 'error ',
  225. })
  226. }
  227. // uni.navigateBack({
  228. // delta:1,//返回层数,2则上上页
  229. // })
  230. })
  231. },
  232. confirm(){
  233. this.show = false;
  234. },
  235. }
  236. }
  237. </script>
  238. <style lang="scss">
  239. page{
  240. height: 100%;
  241. background-color: #f7f7f7;
  242. }
  243. .identity{
  244. height: 100%;
  245. .flex{
  246. display: flex;
  247. flex-direction: row;
  248. align-items: center;
  249. }
  250. //平均分配
  251. .flexJu{
  252. display: flex;
  253. justify-content: space-between;
  254. }
  255. .form {
  256. width: 703rpx;
  257. box-sizing: border-box;
  258. padding: 30rpx;
  259. position: relative;
  260. margin: 20rpx auto 30rpx;
  261. // background-color: #fff;
  262. border-radius: 30rpx;
  263. .upload{
  264. position: relative;
  265. left: 50%;
  266. transform: translateX(-50%);
  267. padding: 30rpx;
  268. margin-bottom: 30rpx;
  269. border: 3rpx dashed #d52e4c;
  270. border-radius: 10rpx;
  271. image{
  272. width: 220rpx;
  273. height: 140rpx;
  274. border-radius: 10rpx;
  275. }
  276. .ding{
  277. position: absolute;
  278. width: 60rpx;
  279. height:50rpx;
  280. right: 110rpx;
  281. top: 70rpx;
  282. }
  283. .u-upload{
  284. width: 220rpx;
  285. height: 140rpx;
  286. border-radius: 10rpx;
  287. background-color: #f1cfd5;
  288. }
  289. /deep/ .u-list-item{
  290. margin: 0;
  291. height: 140rpx!important;
  292. }
  293. /deep/ .u-add-wrap{
  294. opacity: 0;
  295. }
  296. }
  297. .btn{
  298. width: 569rpx;
  299. height: 77rpx;
  300. line-height: 77rpx;
  301. background: #D52E4C;
  302. border-radius: 39rpx;
  303. margin: 20rpx auto;
  304. text-align: center;
  305. color: #fff;
  306. font-size: 32rpx;
  307. }
  308. .orderTit{
  309. text{
  310. margin-left: 30rpx;
  311. color: dimgray;
  312. }
  313. }
  314. .formInput{
  315. background-color: #fff;
  316. border-radius: 20rpx;
  317. box-sizing: border-box;
  318. padding: 20rpx;
  319. /deep/ .u-form-item{
  320. padding: 10rpx;
  321. }
  322. .title{
  323. margin: 24rpx 0;
  324. box-sizing: border-box;
  325. padding-left: 24rpx;
  326. font-size: 28rpx;
  327. color: #333333;
  328. border-left: 7rpx solid $uni-color-BGC;
  329. }
  330. .u-form-item{
  331. /deep/ .u-form-item--left__content__label{
  332. position: relative;
  333. padding-left: 30rpx;
  334. font-size: 24rpx
  335. }
  336. /deep/.u-form-item--left__content__label::after{
  337. content: '*';
  338. position: absolute;
  339. left: 18rpx;
  340. top: 0;
  341. color: red;
  342. }
  343. }
  344. /deep/ input{
  345. font-size: 24rpx;
  346. }
  347. .remark{
  348. /deep/.u-form-item--left__content__label::after{
  349. display: none;
  350. }
  351. }
  352. }
  353. }
  354. }
  355. </style>