userinfo.js 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523
  1. // pages/userinfo/userinfo.js
  2. const app = getApp();
  3. const api = require('../../api/api');
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. navbarData: {
  10. showCapsule: 1, //是否显示左上角图标 1表示显示 0表示不显示
  11. title: '', //导航栏 中间的标题
  12. capsuleMode: 'navBack', //显示模式(navBack:返回上一页;navHome:返回首页)
  13. },
  14. show: false, //显示二维码
  15. userinfo: {},
  16. /* 表单 */
  17. headimg: '', //用户头像
  18. phone: '', //用户手机号
  19. address: '', //用户地址
  20. wechat_number: '', //用户微信号
  21. wechat_code: '', //用户微信二维码
  22. email: '', //用户邮箱
  23. introduction: '', //用户简介
  24. background_img: '', //用户主页背景图
  25. collection_code: '', //用户收款码
  26. },
  27. /**
  28. * 生命周期函数--监听页面加载
  29. */
  30. onLoad: function (options) {
  31. let userinfo = wx.getStorageSync('userinfo');
  32. this.setData({
  33. userinfo: userinfo,
  34. headimg: userinfo.headimg,
  35. phone: userinfo.phone,
  36. address: userinfo.address,
  37. wechat_number: userinfo.wechat_number,
  38. wechat_code: userinfo.wechat_code,
  39. email: userinfo.email,
  40. introduction: userinfo.introduction,
  41. background_img: userinfo.background_img,
  42. collection_code: userinfo.collection_code
  43. })
  44. },
  45. /**
  46. * 生命周期函数--监听页面初次渲染完成
  47. */
  48. onReady: function () {
  49. },
  50. showpopup() {
  51. this.setData({
  52. show: true
  53. })
  54. },
  55. onClose() {
  56. this.setData({
  57. show: false
  58. })
  59. },
  60. /**
  61. * 生命周期函数--监听页面显示
  62. */
  63. onShow: function () {
  64. },
  65. /**
  66. * 生命周期函数--监听页面隐藏
  67. */
  68. onHide: function () {
  69. },
  70. /**
  71. * 生命周期函数--监听页面卸载
  72. */
  73. onUnload: function () {
  74. },
  75. /**
  76. * 页面相关事件处理函数--监听用户下拉动作
  77. */
  78. onPullDownRefresh: function () {
  79. },
  80. /**
  81. * 页面上拉触底事件的处理函数
  82. */
  83. onReachBottom: function () {
  84. },
  85. /**
  86. * 用户点击右上角分享
  87. */
  88. onShareAppMessage: function () {
  89. },
  90. // 上传头像
  91. uploadAvatar() {
  92. let that = this;
  93. // wx.showLoading({
  94. // title: '文件上传中',
  95. // mask: true
  96. // })
  97. wx.request({
  98. url: api.getSignedUrl,
  99. data: {
  100. type: 'image'
  101. },
  102. success: (oss) => {
  103. console.log(oss);
  104. wx.chooseMedia({
  105. count: 1,
  106. mediaType: ['image'],
  107. success: (img) => {
  108. console.log(img);
  109. let key = "image/" + new Date().getTime() + Math.floor(Math.random() * 150) + '.png';
  110. wx.showLoading({
  111. title: '文件上传中',
  112. mask: true
  113. })
  114. wx.uploadFile({
  115. filePath: img.tempFiles[0].tempFilePath,
  116. name: 'file',
  117. url: 'https://' + oss.data.data.host, //输入你的bucketname.endpoint
  118. formData: {
  119. key: key,
  120. policy: oss.data.data.policy, // 输入你获取的的policy
  121. OSSAccessKeyId: oss.data.data.OSSAccessKeyId, // 输入你的AccessKeyId
  122. success_action_status: '200', // 让服务端返回200,不然,默认会返回204
  123. signature: oss.data.data.Signature, // 输入你获取的的signature
  124. },
  125. success: (res) => {
  126. if (res.statusCode == 200) {
  127. let src = 'https://' + oss.data.data.host + '/' + key;
  128. console.log(src);
  129. that.setData({
  130. headimg: src
  131. })
  132. }
  133. },
  134. fail: (err) => {
  135. console.log(err);
  136. },
  137. complete: () => {
  138. wx.hideLoading()
  139. }
  140. })
  141. },
  142. fail: (err) => {
  143. wx.hideLoading()
  144. }
  145. })
  146. },
  147. fail: (err) => {
  148. console.log(err);
  149. }
  150. })
  151. },
  152. // 输入联系电话
  153. inputPhone(e) {
  154. this.setData({
  155. phone: e.detail.value
  156. })
  157. },
  158. // 输入地址
  159. inputAddress(e) {
  160. this.setData({
  161. address: e.detail.value
  162. })
  163. },
  164. // 输入微信号
  165. inputWechatNumber(e) {
  166. this.setData({
  167. wechat_number: e.detail.value
  168. })
  169. },
  170. // 上传微信二维码
  171. uploadWechatCode() {
  172. let that = this;
  173. // wx.showLoading({
  174. // title: '文件上传中',
  175. // mask: true
  176. // })
  177. wx.request({
  178. url: api.getSignedUrl,
  179. data: {
  180. type: 'image'
  181. },
  182. success: (oss) => {
  183. console.log(oss);
  184. wx.chooseMedia({
  185. count: 1,
  186. mediaType: ['image'],
  187. success: (img) => {
  188. console.log(img);
  189. let key = "image/" + new Date().getTime() + Math.floor(Math.random() * 150) + '.png';
  190. wx.showLoading({
  191. title: '文件上传中',
  192. mask: true
  193. })
  194. wx.uploadFile({
  195. filePath: img.tempFiles[0].tempFilePath,
  196. name: 'file',
  197. url: 'https://' + oss.data.data.host, //输入你的bucketname.endpoint
  198. formData: {
  199. key: key,
  200. policy: oss.data.data.policy, // 输入你获取的的policy
  201. OSSAccessKeyId: oss.data.data.OSSAccessKeyId, // 输入你的AccessKeyId
  202. success_action_status: '200', // 让服务端返回200,不然,默认会返回204
  203. signature: oss.data.data.Signature, // 输入你获取的的signature
  204. },
  205. success: (res) => {
  206. if (res.statusCode == 200) {
  207. let src = 'https://' + oss.data.data.host + '/' + key;
  208. console.log(src);
  209. that.setData({
  210. wechat_code: src
  211. })
  212. }
  213. },
  214. fail: (err) => {
  215. console.log(err);
  216. },
  217. complete: () => {
  218. wx.hideLoading()
  219. }
  220. })
  221. },
  222. fail: (err) => {
  223. wx.hideLoading()
  224. }
  225. })
  226. },
  227. fail: (err) => {
  228. console.log(err);
  229. }
  230. })
  231. },
  232. // 输入邮箱
  233. inputEmail(e) {
  234. this.setData({
  235. email: e.detail.value
  236. })
  237. },
  238. // 输入简介
  239. inputIntroduction(e) {
  240. this.setData({
  241. introduction: e.detail.value
  242. })
  243. },
  244. // 上传主页背景
  245. uploadBackgroundImg() {
  246. let that = this;
  247. // wx.showLoading({
  248. // title: '文件上传中',
  249. // mask: true
  250. // })
  251. wx.request({
  252. url: api.getSignedUrl,
  253. data: {
  254. type: 'image'
  255. },
  256. success: (oss) => {
  257. console.log(oss);
  258. wx.chooseMedia({
  259. count: 1,
  260. mediaType: ['image'],
  261. success: (img) => {
  262. console.log(img);
  263. let key = "image/" + new Date().getTime() + Math.floor(Math.random() * 150) + '.png';
  264. wx.showLoading({
  265. title: '文件上传中',
  266. mask: true
  267. })
  268. wx.uploadFile({
  269. filePath: img.tempFiles[0].tempFilePath,
  270. name: 'file',
  271. url: 'https://' + oss.data.data.host, //输入你的bucketname.endpoint
  272. formData: {
  273. key: key,
  274. policy: oss.data.data.policy, // 输入你获取的的policy
  275. OSSAccessKeyId: oss.data.data.OSSAccessKeyId, // 输入你的AccessKeyId
  276. success_action_status: '200', // 让服务端返回200,不然,默认会返回204
  277. signature: oss.data.data.Signature, // 输入你获取的的signature
  278. },
  279. success: (res) => {
  280. if (res.statusCode == 200) {
  281. let src = 'https://' + oss.data.data.host + '/' + key;
  282. console.log(src);
  283. that.setData({
  284. background_img: src
  285. })
  286. }
  287. },
  288. fail: (err) => {
  289. console.log(err);
  290. },
  291. complete: () => {
  292. wx.hideLoading()
  293. }
  294. })
  295. },
  296. fail: (err) => {
  297. wx.hideLoading()
  298. }
  299. })
  300. },
  301. fail: (err) => {
  302. console.log(err);
  303. }
  304. })
  305. },
  306. // 上传用户收款码
  307. uploadCollectionCode() {
  308. let that = this;
  309. // wx.showLoading({
  310. // title: '文件上传中',
  311. // mask: true
  312. // })
  313. wx.request({
  314. url: api.getSignedUrl,
  315. data: {
  316. type: 'image'
  317. },
  318. success: (oss) => {
  319. console.log(oss);
  320. wx.chooseMedia({
  321. count: 1,
  322. mediaType: ['image'],
  323. success: (img) => {
  324. console.log(img);
  325. let key = "image/" + new Date().getTime() + Math.floor(Math.random() * 150) + '.png';
  326. wx.showLoading({
  327. title: '文件上传中',
  328. mask: true
  329. })
  330. wx.uploadFile({
  331. filePath: img.tempFiles[0].tempFilePath,
  332. name: 'file',
  333. url: 'https://' + oss.data.data.host, //输入你的bucketname.endpoint
  334. formData: {
  335. key: key,
  336. policy: oss.data.data.policy, // 输入你获取的的policy
  337. OSSAccessKeyId: oss.data.data.OSSAccessKeyId, // 输入你的AccessKeyId
  338. success_action_status: '200', // 让服务端返回200,不然,默认会返回204
  339. signature: oss.data.data.Signature, // 输入你获取的的signature
  340. },
  341. success: (res) => {
  342. if (res.statusCode == 200) {
  343. let src = 'https://' + oss.data.data.host + '/' + key;
  344. console.log(src);
  345. that.setData({
  346. collection_code: src
  347. })
  348. }
  349. },
  350. fail: (err) => {
  351. console.log(err);
  352. },
  353. complete: () => {
  354. wx.hideLoading()
  355. }
  356. })
  357. },
  358. fail: (err) => {
  359. wx.hideLoading()
  360. }
  361. })
  362. },
  363. fail: (err) => {
  364. console.log(err);
  365. }
  366. })
  367. },
  368. // 确认添加
  369. submit() {
  370. let that = this;
  371. wx.showLoading({
  372. title: '提交中',
  373. mask: true
  374. })
  375. // if (that.data.headimg == '') {
  376. // wx.showToast({
  377. // title: '用户头像未上传',
  378. // icon: 'none',
  379. // mask: true
  380. // })
  381. // return
  382. // }
  383. // if (that.data.phone == '') {
  384. // wx.showToast({
  385. // title: '联系电话未录入',
  386. // icon: 'none',
  387. // mask: true
  388. // })
  389. // return
  390. // }
  391. // if (that.data.address == '') {
  392. // wx.showToast({
  393. // title: '地址未录入',
  394. // icon: 'none',
  395. // mask: true
  396. // })
  397. // return
  398. // }
  399. // if (that.data.wechat_number == '') {
  400. // wx.showToast({
  401. // title: '微信号未录入',
  402. // icon: 'none',
  403. // mask: true
  404. // })
  405. // return
  406. // }
  407. // if (that.data.wechat_code == '') {
  408. // wx.showToast({
  409. // title: '微信二维码未录入',
  410. // icon: 'none',
  411. // mask: true
  412. // })
  413. // return
  414. // }
  415. // if (that.data.email == '') {
  416. // wx.showToast({
  417. // title: '邮箱地址未录入',
  418. // icon: 'none',
  419. // mask: true
  420. // })
  421. // return
  422. // }
  423. // if (that.data.introduction == '') {
  424. // wx.showToast({
  425. // title: '用户简介未录入',
  426. // icon: 'none',
  427. // mask: true
  428. // })
  429. // return
  430. // }
  431. // if (that.data.background_img == '') {
  432. // wx.showToast({
  433. // title: '用户主页背景图未录入',
  434. // icon: 'none',
  435. // mask: true
  436. // })
  437. // return
  438. // }
  439. // if (that.data.collection_code == '') {
  440. // wx.showToast({
  441. // title: '用户收款码未录入',
  442. // icon: 'none',
  443. // mask: true
  444. // })
  445. // return
  446. // }
  447. wx.request({
  448. url: api.edit_info,
  449. header: {
  450. 'Authorization': wx.getStorageSync('token')
  451. },
  452. method: 'POST',
  453. data: {
  454. headimg: that.data.headimg,
  455. phone: that.data.phone,
  456. address: that.data.address,
  457. wechat_number: that.data.wechat_number,
  458. wechat_code: that.data.wechat_code,
  459. email: that.data.email,
  460. introduction: that.data.introduction,
  461. background_img: that.data.background_img,
  462. collection_code: that.data.collection_code
  463. },
  464. success(res) {
  465. wx.hideLoading()
  466. console.log(res);
  467. if (res.data.code === 1) {
  468. wx.showToast({
  469. title: '提交成功',
  470. icon: 'success',
  471. mask: true,
  472. success() {
  473. app.getUserDetailInfo()
  474. setTimeout(() => {
  475. wx.navigateBack({
  476. delta: 1,
  477. })
  478. }, 1500)
  479. }
  480. })
  481. } else {
  482. wx.showToast({
  483. title: res.data.msg,
  484. mask: true,
  485. icon: 'none'
  486. })
  487. }
  488. },
  489. fail(err) {
  490. wx.hideLoading()
  491. wx.showToast({
  492. title: '发起网络请求失败',
  493. icon: 'none',
  494. mask: true
  495. })
  496. },
  497. complete() {
  498. // wx.hideLoading()
  499. }
  500. })
  501. },
  502. // 立即去认证
  503. navToRZ() {
  504. wx.navigateTo({
  505. url: '/pages/phonenumber/phonenumber',
  506. })
  507. },
  508. })