authentication-information.js 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511
  1. const util = require('../../utils/util');
  2. const app = getApp()
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. navbarHeight: 0,
  9. //选项卡
  10. tabActiveId: 1,
  11. array: [], //身份
  12. array2: [], //证件
  13. //省市区
  14. region: [],
  15. regionString: '',
  16. //上传
  17. shenfenZ: '',
  18. shenfenF: '',
  19. data: {
  20. identity_information: 1,
  21. username: '',
  22. region: '',
  23. workname: '',
  24. working_direction: '',
  25. identity: '',
  26. certificates: '',
  27. tutor: '',
  28. email: '',
  29. QQ: '',
  30. front_certificate: '' ,
  31. reverse_certificate: '',
  32. working_address: '',
  33. enterprise_number: ''
  34. },
  35. config: {},
  36. disabled: false,
  37. isAuth: false,
  38. authId: 0
  39. },
  40. /**
  41. * 生命周期函数--监听页面加载
  42. */
  43. onLoad: function (options) {
  44. this.setData({
  45. navbarHeight: util.getNavbarHeight(),
  46. disabled: options.status == 2 ? true : false,
  47. isAuth: options.status == 2 ? true : false
  48. })
  49. //改变头部电量条背景色
  50. wx.setNavigationBarColor({
  51. frontColor: '#ffffff',
  52. backgroundColor: '#ffffff',
  53. });
  54. wx.getSystemInfo({
  55. success: (res) => {
  56. this.setData({
  57. screenWidth: res.screenWidth
  58. });
  59. }
  60. })
  61. this.getAuthIdentityInfo()
  62. this.getCertInfo()
  63. this.getUploadConfig()
  64. this.getUserIdentifyInfo()
  65. },
  66. /**
  67. * 获取上传配置
  68. */
  69. getUploadConfig: function () {
  70. let page = this
  71. app.api.getUploadConfig("", function (res) {
  72. if (res.code > 0) {
  73. page.setData({
  74. config: res.data
  75. })
  76. }
  77. })
  78. },
  79. /**
  80. * 获取身份信息
  81. */
  82. getAuthIdentityInfo: function () {
  83. let page = this, array = []
  84. app.api.getAuthIdentityInfo("", function (res) {
  85. if (res.code > 0) {
  86. for (let i=0; i<res.data.length; i++) {
  87. array.push(res.data[i].title)
  88. }
  89. page.setData({
  90. array: array
  91. })
  92. }
  93. })
  94. },
  95. /**
  96. * 获取证件信息
  97. */
  98. getCertInfo: function () {
  99. let page = this, array2 = []
  100. app.api.getCertInfo("", function (res) {
  101. if (res.code > 0) {
  102. for (let i=0; i<res.data.length; i++) {
  103. array2.push(res.data[i].title)
  104. }
  105. page.setData({
  106. array2: array2
  107. })
  108. }
  109. })
  110. },
  111. /**
  112. * 获取用户填写的信息
  113. */
  114. getUserIdentifyInfo: function () {
  115. let page = this, data = page.data.data
  116. app.api.getUserIdentifyInfo("", function (res) {
  117. console.log(res)
  118. if (res.code > 0) {
  119. if (res.data.hasOwnProperty('authentication_status')) {
  120. data.identity_information = res.data.type
  121. data.username = res.data.username
  122. data.region = res.data.region
  123. if (res.data.hasOwnProperty('workname')) {
  124. data.workname = res.data.workname
  125. }
  126. if (res.data.hasOwnProperty('working_direction')) {
  127. data.working_direction = res.data.working_direction
  128. }
  129. if (res.data.hasOwnProperty('identity')) {
  130. data.identity = res.data.identity
  131. }
  132. data.certificates = res.data.certificates
  133. if (res.data.hasOwnProperty('tutor')) {
  134. data.tutor = res.data.tutor
  135. }
  136. data.email = res.data.email
  137. data.QQ = res.data.QQ
  138. if (res.data.hasOwnProperty('working_address')) {
  139. data.working_address = res.data.working_address
  140. }
  141. if (res.data.hasOwnProperty('enterprise_number')) {
  142. data.enterprise_number = res.data.enterprise_number
  143. }
  144. let array = page.data.array, array2 = page.data.array2
  145. let index = '', index2 = ''
  146. if (res.data.hasOwnProperty('identity')) {
  147. for (let i=0; i<array.length; i++) {
  148. if (array[i] == res.data.identity) {
  149. index = i
  150. }
  151. }
  152. }
  153. for (let k=0; k<array2.length; k++) {
  154. if (array2[k] == res.data.certificates) {
  155. index2 = k
  156. }
  157. }
  158. page.setData({
  159. data: data,
  160. regionString: res.data.region,
  161. index: index,
  162. index2: index2,
  163. authId: res.data.id,
  164. tabActiveId: res.data.type
  165. })
  166. }
  167. }
  168. })
  169. },
  170. /**
  171. * 选项卡
  172. */
  173. tabClick(e) {
  174. let page = this, data = page.data.data, d = e.currentTarget.dataset, isAuth = page.data.isAuth;
  175. if (data.identity_information == d.id) {
  176. return
  177. }
  178. if (isAuth) {
  179. wx.showToast({
  180. title: '已认证,不可切换',
  181. icon: 'none'
  182. })
  183. return
  184. }
  185. // data.identity_information = d.id
  186. this.setData({
  187. tabActiveId: d.id,
  188. [`data.identity_information`]: d.id
  189. })
  190. },
  191. /**
  192. * 身份
  193. */
  194. bindPickerChange: function (e) {
  195. let page = this, array = page.data.array, isAuth = page.data.isAuth
  196. if (isAuth) {
  197. wx.showToast({
  198. title: '已认证,不可修改',
  199. icon: 'none'
  200. })
  201. return
  202. }
  203. page.setData({
  204. index: e.detail.value,
  205. [`data.identity`]: array[e.detail.value]
  206. })
  207. },
  208. /**
  209. * 证件
  210. */
  211. bindCertificateChange: function (e) {
  212. let page = this, array2 = page.data.array2, isAuth = page.data.isAuth
  213. if (isAuth) {
  214. wx.showToast({
  215. title: '已认证,不可修改',
  216. icon: 'none'
  217. })
  218. return
  219. }
  220. page.setData({
  221. index2: e.detail.value,
  222. [`data.certificates`]: array2[e.detail.value]
  223. })
  224. },
  225. /**
  226. * 省市区
  227. */
  228. bindRegionChange: function (e) {
  229. let region = e.detail.value;
  230. let regionString = region[0] + '-' + region[1] + '-' + region[2];
  231. if (this.data.isAuth) {
  232. wx.showToast({
  233. title: '已认证,不可修改',
  234. icon: 'none'
  235. })
  236. return
  237. }
  238. this.setData({
  239. region: e.detail.value,
  240. regionString: regionString,
  241. [`data.region`]: region[0]+region[1]+region[2]
  242. })
  243. },
  244. /**
  245. * 上传照片
  246. */
  247. uploadImg(e) {
  248. let page = this, dataPost = page.data.data, certType = e.currentTarget.dataset.key, config = page.data.config;
  249. if (!config.hasOwnProperty('policy')) {
  250. wx.showToast({
  251. title: '上传配置错误',
  252. icon: 'none'
  253. })
  254. return
  255. }
  256. wx.chooseImage({
  257. count: 1,
  258. sizeType: ['original', 'compressed'],
  259. sourceType: ['album', 'camera'],
  260. success(res) {
  261. let item = res.tempFilePaths[0];
  262. let key = "image/" + new Date().getTime() + Math.floor(Math.random() * 150) + '.png'
  263. wx.showLoading({
  264. title: '上传中...',
  265. icon: 'loading',
  266. mask: true
  267. })
  268. wx.uploadFile({
  269. url: config.host,
  270. filePath: item,
  271. name: 'file',
  272. formData: {
  273. key: key,
  274. policy: config.policy, // 输入你获取的的policy
  275. OSSAccessKeyId: config.OSSAccessKeyId, // 输入你的AccessKeyId
  276. success_action_status: '200', // 让服务端返回200,不然,默认会返回204
  277. signature: config.Signature, // 输入你获取的的signature
  278. },
  279. success(res) {
  280. console.log(res)
  281. wx.hideLoading();
  282. if (res.statusCode == 200) {
  283. dataPost[certType] = config.host + '/' + key
  284. page.setData({
  285. data: dataPost
  286. })
  287. }
  288. }
  289. })
  290. },
  291. fail(res) {
  292. wx.showToast({
  293. title: '选择图片失败',
  294. icon: 'none'
  295. })
  296. }
  297. })
  298. },
  299. /**
  300. * 返回上一页
  301. */
  302. back() {
  303. wx.navigateBack({
  304. delta: 1,
  305. });
  306. },
  307. /**
  308. * 生命周期函数--监听页面初次渲染完成
  309. */
  310. onReady: function () {
  311. },
  312. /**
  313. * 生命周期函数--监听页面显示
  314. */
  315. onShow: function () {
  316. },
  317. /**
  318. * 生命周期函数--监听页面隐藏
  319. */
  320. onHide: function () {
  321. },
  322. /**
  323. * 生命周期函数--监听页面卸载
  324. */
  325. onUnload: function () {
  326. },
  327. /**
  328. * 页面相关事件处理函数--监听用户下拉动作
  329. */
  330. onPullDownRefresh: function () {
  331. },
  332. /**
  333. * 页面上拉触底事件的处理函数
  334. */
  335. onReachBottom: function () {
  336. },
  337. /**
  338. * 输入框输入
  339. */
  340. setInputValue: function (e) {
  341. let page = this, data = page.data.data, name = e.currentTarget.dataset.name
  342. data[name] = e.detail.value
  343. page.setData({
  344. data: data
  345. })
  346. },
  347. /**
  348. * 提交认证
  349. */
  350. authAction: function () {
  351. let page = this, data = page.data.data, isAuth = page.data.isAuth, authId = page.data.authId
  352. if (isAuth) {
  353. app.api.userAuthDataModifyOnlyABle({id: authId,tutor: data.tutor,email: data.email,QQ: data.QQ}, function (res) {
  354. if (res.code > 0) {
  355. wx.showToast({
  356. title: res.msg,
  357. })
  358. setTimeout(function () {
  359. wx.navigateBack({
  360. delta: 1,
  361. })
  362. },1000)
  363. } else {
  364. wx.showToast({
  365. title: res.msg,
  366. icon: 'none'
  367. })
  368. }
  369. })
  370. } else {
  371. if (!data.username) {
  372. wx.showToast({
  373. title: '请输入姓名',
  374. icon: 'none'
  375. })
  376. return
  377. }
  378. if (!data.region) {
  379. wx.showToast({
  380. title: '请选择地区',
  381. icon: 'none'
  382. })
  383. return
  384. }
  385. if (!data.workname) {
  386. wx.showToast({
  387. title: '请输入'+['','学校名称','科研院所名称','企业名称'][data.identity_information],
  388. icon: 'none'
  389. })
  390. return
  391. }
  392. if (!data.working_direction && data.identity_information < 3) {
  393. wx.showToast({
  394. title: '请输入'+['','所在院系','从事方向',''][data.identity_information],
  395. icon: 'none'
  396. })
  397. return
  398. }
  399. if (!data.identity && data.identity_information < 3) {
  400. wx.showToast({
  401. title: '请选择身份',
  402. icon: 'none'
  403. })
  404. return
  405. }
  406. if (!data.working_address && data.identity_information == 3) {
  407. wx.showToast({
  408. title: '请输入工作地址',
  409. icon: 'none'
  410. })
  411. return
  412. }
  413. if (!data.enterprise_number && data.identity_information == 3) {
  414. wx.showToast({
  415. title: '请输入企业税号',
  416. icon: 'none'
  417. })
  418. return
  419. }
  420. if (!data.certificates) {
  421. wx.showToast({
  422. title: '请选择证件',
  423. icon: 'none'
  424. })
  425. return
  426. }
  427. if (!data.tutor && data.identity_information < 3) {
  428. wx.showToast({
  429. title: '请输入导师信息',
  430. icon: 'none'
  431. })
  432. return
  433. }
  434. if (!data.email) {
  435. // wx.showToast({
  436. // title: '请输入邮箱',
  437. // icon: 'none'
  438. // })
  439. // return
  440. }
  441. if (!data.QQ) {
  442. // wx.showToast({
  443. // title: '请输入QQ',
  444. // icon: 'none'
  445. // })
  446. // return
  447. }
  448. if (!data.front_certificate) {
  449. wx.showToast({
  450. title: '请上传正面照',
  451. icon: 'none'
  452. })
  453. return
  454. }
  455. if (!data.reverse_certificate) {
  456. wx.showToast({
  457. title: '请上传反面照',
  458. icon: 'none'
  459. })
  460. return
  461. }
  462. console.log(data)
  463. app.api.userIdentityAuthAction(data, function (res) {
  464. console.log(res)
  465. if (res.code > 0) {
  466. wx.showToast({
  467. title: res.msg,
  468. })
  469. app.db.set('element_point_change',1)
  470. setTimeout(function () {
  471. wx.navigateBack({
  472. delta: 1,
  473. })
  474. },1000)
  475. } else {
  476. wx.showToast({
  477. title: res.msg,
  478. icon: 'none'
  479. })
  480. }
  481. })
  482. }
  483. }
  484. })