index.js 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590
  1. // nova-werun/pages/my/my-profile/index.js
  2. const Parse = getApp().Parse;
  3. const company = getApp().globalData.company;
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. //屏幕高度
  10. statusBarHeight: 0, // 状态栏高度
  11. screenHeight: 0, // 屏幕高度
  12. customHeight: 0, // 自定义导航栏高度(如小程序右上角胶囊按钮)
  13. bottomNavHeight: 0, // 底部导航栏高度
  14. contentHeight: 0, // 可用内容高度
  15. contentpadding: 0, //顶部padding高度
  16. User1List: [],
  17. actions: [{
  18. name: '男',
  19. },
  20. {
  21. name: '女',
  22. },
  23. ],
  24. avatar: null,
  25. sex: '男',
  26. nickname: null,
  27. height: null,
  28. idnumber:null,//身份证号码
  29. // 选择部门
  30. // mainActiveIndex: 0,
  31. // activeId: null,
  32. // items: [],
  33. Departmentlist:[],
  34. departs:['1','2','3'],
  35. //显示遮罩层
  36. show: false,
  37. selectname: '', //部门名字
  38. departname: '', //工会名字
  39. selectobjectid: '',
  40. upiobjectid: '',
  41. // 图片
  42. fileList: [],
  43. uptokenURL: '',
  44. domain: '',
  45. uploadURL: '',
  46. title: '',
  47. //
  48. name: '',
  49. phone: '',
  50. },
  51. /**
  52. * 生命周期函数--监听页面加载
  53. */
  54. onLoad: async function (options) {
  55. // 计算
  56. const systemInfo = wx.getSystemInfoSync();
  57. const statusBarHeight = systemInfo.statusBarHeight || 0;
  58. const screenHeight = systemInfo.screenHeight || 0;
  59. const custom = wx.getMenuButtonBoundingClientRect();
  60. const customHeight = custom.height + 10 + 2 || 0;
  61. const bottomNavHeight = systemInfo.screenHeight - systemInfo.safeArea.bottom || 0;
  62. const contentpadding = (statusBarHeight + customHeight) * 750 / systemInfo.windowWidth;
  63. const contentHeight = (screenHeight - bottomNavHeight - statusBarHeight - customHeight) * 750 / systemInfo.windowWidth;
  64. this.setData({
  65. statusBarHeight,
  66. screenHeight,
  67. customHeight,
  68. bottomNavHeight,
  69. contentHeight,
  70. contentpadding
  71. });
  72. this.setData({
  73. title: options.type
  74. })
  75. await this.getname()
  76. await this.getdep()
  77. // this.getDepartment()
  78. this.getwritedep()
  79. this.getUptoken()
  80. },
  81. /**
  82. * 生命周期函数--监听页面初次渲染完成
  83. */
  84. onReady: function () {
  85. },
  86. /**
  87. * 生命周期函数--监听页面显示
  88. */
  89. onShow: function () {
  90. },
  91. /**
  92. * 生命周期函数--监听页面隐藏
  93. */
  94. onHide: function () {
  95. },
  96. /**
  97. * 生命周期函数--监听页面卸载
  98. */
  99. onUnload: function () {
  100. },
  101. /**
  102. * 页面相关事件处理函数--监听用户下拉动作
  103. */
  104. onPullDownRefresh: function () {
  105. },
  106. /**
  107. * 页面上拉触底事件的处理函数
  108. */
  109. onReachBottom: function () {
  110. },
  111. /**
  112. * 用户点击右上角分享
  113. */
  114. onShareAppMessage: function () {
  115. },
  116. //获取身高
  117. getHeight(e) {
  118. let height = e.detail.value;
  119. // 身高范围在 50 到 250 之间的正则表达式,允许浮点数
  120. let a = /^(?:[5-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|250)(\.\d)?$/;
  121. if (!height.match(a)) {
  122. wx.showToast({
  123. icon: "none",
  124. title: "请填写正确的身高格式",
  125. });
  126. return;
  127. } else {
  128. this.setData({
  129. height: height
  130. });
  131. console.log(this.data.height);
  132. }
  133. },
  134. //点击清空
  135. clearHeight() {
  136. this.setData({
  137. height: null
  138. })
  139. console.log('清空', this.data.height);
  140. },
  141. //获取头像名称
  142. async getname() {
  143. const currentUser = Parse.User.current();
  144. let Userquery = new Parse.Query('_User');
  145. Userquery.equalTo('company', company);
  146. Userquery.equalTo('objectId', currentUser.id);
  147. Userquery.notEqualTo('isDeleted', true)
  148. let P2 = await Userquery.find();
  149. let User1List = P2.map(item => item.toJSON());
  150. this.setData({
  151. User1List
  152. })
  153. this.setData({
  154. avatar: User1List[0].avatar || 'https://file-cloud.fmode.cn/qpFbRRSZrO/20241120/95uip6030022742.png?imageView2/1/w/200/h/200',
  155. nickname: User1List[0].nickname || '微信用户',
  156. sex: User1List[0].sex || '男',
  157. })
  158. if (User1List[0].diyform) {
  159. this.setData({
  160. height: User1List[0].diyform.height
  161. })
  162. }
  163. console.log(this.data.User1List);
  164. },
  165. //获取填写部门信息
  166. async getwritedep() {
  167. let Userquery = new Parse.Query('Department');
  168. Userquery.equalTo('company', company);
  169. Userquery.equalTo('isEnabled', true);
  170. // Userquery.equalTo('type', 'center');
  171. Userquery.notEqualTo('isDeleted', true);
  172. // Userquery.include('parent');
  173. let P2 = await Userquery.find();
  174. let Departmentlist = P2.map(item => item.toJSON());
  175. let departs=[]
  176. Departmentlist.forEach((item)=>{
  177. departs.push(item.name)
  178. })
  179. this.setData({
  180. departs,
  181. Departmentlist,
  182. })
  183. console.log('departs',this.data.Departmentlist);
  184. },
  185. //获取部门
  186. async getdep() {
  187. const currentUser = Parse.User.current();
  188. let Userquery = new Parse.Query('Profile');
  189. Userquery.equalTo('company', company);
  190. Userquery.equalTo('user', currentUser.id);
  191. // Userquery.equalTo('isCheck', true);
  192. Userquery.notEqualTo('isDeleted', true)
  193. Userquery.include('center');
  194. Userquery.include('department');
  195. let P2 = await Userquery.find();
  196. let dep = P2.map(item => item.toJSON());
  197. console.log('getdep', dep);
  198. if (dep.length!=0) {
  199. if (dep[0].isCheck == true) {
  200. this.setData({
  201. name: dep[0].name,
  202. phone: dep[0].mobile,
  203. // departname: dep[0].department.name,//工会
  204. selectname: dep[0].center.name,//部门
  205. selectobjectid: dep[0].center.objectId,//部门
  206. // upiobjectid: dep[0].department.objectId//工会
  207. })
  208. } else {
  209. this.setData({
  210. name: dep[0].name,
  211. phone: dep[0].mobile,
  212. // departname: dep[0].department.name,
  213. selectname: dep[0].center.name,
  214. selectobjectid: dep[0].center.objectId,
  215. // upiobjectid: dep[0].department.objectId
  216. })
  217. wx.showToast({
  218. title: '您之前提交信息在审核当中',
  219. icon: 'none',
  220. duration: 2000
  221. })
  222. }
  223. }else{
  224. this.setData({
  225. phone:this.data.User1List[0].mobile
  226. })
  227. }
  228. },
  229. onSelect(event) {
  230. let {
  231. name
  232. } = event.detail
  233. this.setData({
  234. sex: name,
  235. show2: false
  236. })
  237. console.log(this.data.sex);
  238. },
  239. showSelect() {
  240. this.setData({
  241. show2: true
  242. })
  243. },
  244. //修改昵称
  245. changenickname(e) {
  246. this.setData({
  247. nickname: e.detail
  248. })
  249. console.log(this.data.nickname);
  250. },
  251. //上传信息
  252. async setinfo() {
  253. if (this.data.title == '资料认证') {
  254. if (!this.data.name || !this.data.sex || !this.data.selectobjectid || !this.data.height || !this.data.phone) {
  255. wx.showToast({
  256. title: '请输入相关内容',
  257. icon: 'none',
  258. duration: 2000
  259. })
  260. return
  261. }
  262. const currentUser = Parse.User.current();
  263. let Userquery = new Parse.Query('_User');
  264. Userquery.equalTo('company', company);
  265. Userquery.equalTo('objectId', currentUser.id);
  266. Userquery.notEqualTo('isDeleted', true)
  267. let user = await Userquery.first();
  268. user.set('sex', this.data.sex)
  269. // user.set('avatar', this.data.avatar)
  270. let diyform = {
  271. height: this.data.height
  272. }
  273. user.set('diyform', diyform)
  274. // user.set('nickname', this.data.nickname)
  275. try {
  276. user.save()
  277. console.log('昵称保存成功');
  278. } catch {
  279. console.log('保存失败');
  280. }
  281. let Profilerquery = new Parse.Query('Profile');
  282. Profilerquery.equalTo('company', company);
  283. Profilerquery.equalTo('user', currentUser.id);
  284. Profilerquery.notEqualTo('isDeleted', true)
  285. let Profile = await Profilerquery.first();
  286. //工会
  287. // let Departmentquery = new Parse.Query('Department');
  288. // Departmentquery.equalTo('company', company);
  289. // Departmentquery.equalTo('objectId', this.data.upiobjectid);
  290. // Departmentquery.notEqualTo('isDeleted', true)
  291. // let Department = await Departmentquery.first();
  292. //部门
  293. let unionquery = new Parse.Query('Department');
  294. unionquery.equalTo('company', company);
  295. unionquery.equalTo('objectId', this.data.selectobjectid);
  296. unionquery.notEqualTo('isDeleted', true)
  297. let union = await unionquery.first();
  298. if (Profile) {
  299. // Profile.set('department', Department.toPointer())
  300. Profile.set('center', union.toPointer())
  301. Profile.set('name', this.data.name)
  302. Profile.set('mobile', this.data.phone)
  303. try {
  304. Profile.save()
  305. wx.showToast({
  306. title: '提交成功',
  307. icon: 'success',
  308. duration: 2000
  309. })
  310. setTimeout(() => {
  311. this.goback()
  312. }, 2000);
  313. console.log('部门保存成功');
  314. } catch {
  315. console.log('部门保存失败');
  316. }
  317. } else {
  318. const currentUser = Parse.User.current();
  319. let Userquery = new Parse.Query('_User');
  320. Userquery.equalTo('company', company);
  321. Userquery.equalTo('objectId', currentUser.id);
  322. Userquery.notEqualTo('isDeleted', true)
  323. let P2 = await Userquery.first();
  324. let companyPointer = Parse.Object.extend('Company').createWithoutData(company);
  325. console.log(companyPointer);
  326. let Profile = new Parse.Object('Profile');
  327. Profile.set('company', companyPointer);
  328. Profile.set('isCheck', false);
  329. Profile.set('user', P2.toPointer());
  330. // Profile.set('department', Department.toPointer());
  331. Profile.set('center', union.toPointer());
  332. Profile.set('name', this.data.name)
  333. Profile.set('mobile', this.data.phone)
  334. try {
  335. Profile.save()
  336. wx.showToast({
  337. title: '提交成功',
  338. icon: 'success',
  339. duration: 2000
  340. })
  341. setTimeout(() => {
  342. this.goback()
  343. }, 2000);
  344. console.log('部门保存成功');
  345. } catch {
  346. console.log('部门保存失败');
  347. }
  348. }
  349. }
  350. if (this.data.title == '完善资料') {
  351. if (!this.data.avatar || !this.data.nickname) {
  352. wx.showToast({
  353. title: '请输入相关内容',
  354. icon: 'none',
  355. duration: 2000
  356. })
  357. return
  358. }
  359. const currentUser = Parse.User.current();
  360. let Userquery = new Parse.Query('_User');
  361. Userquery.equalTo('company', company);
  362. Userquery.equalTo('objectId', currentUser.id);
  363. Userquery.notEqualTo('isDeleted', true)
  364. let user = await Userquery.first();
  365. user.set('avatar', this.data.avatar)
  366. user.set('nickname', this.data.nickname)
  367. try {
  368. user.save()
  369. wx.showToast({
  370. title: '提交成功',
  371. icon: 'success',
  372. duration: 2000
  373. })
  374. setTimeout(() => {
  375. this.goback()
  376. }, 2000);
  377. } catch {
  378. console.log('保存失败');
  379. }
  380. }
  381. },
  382. // 获取部门信息
  383. // async getDepartment() {
  384. // const currentUser = Parse.User.current();
  385. // let Userquery = new Parse.Query('Department');
  386. // Userquery.equalTo('company', company); // 假设 company 是你要查询的公司对象
  387. // Userquery.equalTo('isEnabled', true);
  388. // Userquery.notEqualTo('isDeleted', true);
  389. // Userquery.include('parent');
  390. // let P2 = await Userquery.find();
  391. // let Departmentlist = P2.map(item => item.toJSON());
  392. // // 创建一个以工会为键的对象,以便于匹配
  393. // const unionsMap = {};
  394. // console.log(Departmentlist);
  395. // // 遍历部门列表,构建工会映射
  396. // Departmentlist.forEach(department => {
  397. // //有工会的部门
  398. // if (department.parent && department.parent.objectId) {
  399. // const unionId = department.parent.objectId; //工会id
  400. // // 如果工会还没有在映射中,创建一个新的工会对象
  401. // if (!unionsMap[unionId]) {
  402. // unionsMap[unionId] = {
  403. // text: department.parent.name, // 工会名称
  404. // objectId: department.parent.objectId,
  405. // children: [] // 初始化子部门数组
  406. // };
  407. // }
  408. // // 将部门添加到对应的工会子项中
  409. // unionsMap[unionId].children.push({
  410. // text: department.name, // 部门名称
  411. // id: department.objectId, // 部门 ID
  412. // upid: department.parent.objectId
  413. // });
  414. // } else {
  415. // if (!unionsMap[department.objectId]) {
  416. // unionsMap[department.objectId] = {
  417. // text: department.name, // 工会名称
  418. // objectId: department.objectId,
  419. // children: [] // 初始化子部门数组
  420. // };
  421. // }
  422. // }
  423. // });
  424. // // 将映射转换为数组
  425. // const result = Object.values(unionsMap);
  426. // console.log(result);
  427. // this.setData({
  428. // items: result
  429. // })
  430. // console.log(this.data.items);
  431. // },
  432. //点击工会
  433. // onClickNav({
  434. // detail = {}
  435. // }) {
  436. // this.setData({
  437. // mainActiveIndex: detail.index || 0,
  438. // });
  439. // console.log(detail);
  440. // },
  441. //点击部门
  442. onClickItem(
  443. {
  444. detail = {}
  445. }
  446. ) {
  447. // const activeId = this.data.activeId === detail.id ? null : detail.id;
  448. // this.data.items.forEach((item) => {
  449. // if (item.objectId == detail.upid) {
  450. // this.setData({
  451. // departname: item.text
  452. // })
  453. // }
  454. // })
  455. const id = this.data.Departmentlist[detail.index].objectId
  456. this.setData({
  457. // activeId,
  458. selectname: detail.value,
  459. selectobjectid:id
  460. // selectobjectid: detail.id,
  461. // upiobjectid: detail.upid
  462. });
  463. this.onClickHide()
  464. console.log(this.data.selectobjectid);
  465. },
  466. //显示遮罩层
  467. onClickShow() {
  468. this.setData({
  469. show: true
  470. });
  471. },
  472. //关闭遮罩层
  473. onClickHide() {
  474. this.setData({
  475. show: false
  476. });
  477. },
  478. //返回上一页
  479. async goback() {
  480. let pages = getCurrentPages(); //页面对象
  481. let prevpage = pages[pages.length - 2]; //上一个页面对象
  482. console.log(prevpage);
  483. await prevpage.updateCom3()
  484. wx.navigateBack({
  485. delta: 1 // 返回上一页
  486. });
  487. },
  488. //删除头像
  489. deleteavater() {
  490. this.setData({
  491. avatar: ''
  492. })
  493. },
  494. async getUptoken() {
  495. let res = await Parse.Cloud.run('qiniu_uptoken', {
  496. company: company
  497. })
  498. this.setData({
  499. uptokenURL: res.uptoken,
  500. domain: res.domain,
  501. uploadURL: res.zoneUrl
  502. })
  503. console.log(this.data.uptokenURL, this.data.domain, this.data.uploadURL);
  504. },
  505. //本地上传头像
  506. picture(event) {
  507. console.log('event', event);
  508. let FileList = event.detail
  509. let url = []
  510. for (let i = 0; i < FileList.length; i++) {
  511. url.push(FileList[i].url)
  512. }
  513. this.setData({
  514. fileList: url
  515. })
  516. this.setData({
  517. avatar: this.data.fileList[0]
  518. })
  519. console.log('图片', this.data.fileList);
  520. },
  521. //修改姓名
  522. changename(e) {
  523. this.setData({
  524. name: e.detail
  525. })
  526. console.log(this.data.name);
  527. },
  528. //修改电话
  529. changephone(e) {
  530. const mobileNumber = e.detail.value; // 假设手机号是通过 e.detail.value 传递的
  531. console.log(mobileNumber);
  532. // 正则表达式:匹配中国大陆手机号
  533. const mobilePattern = /^1[3-9]\d{9}$/;
  534. // 验证手机号格式
  535. if (mobilePattern.test(mobileNumber)) {
  536. this.setData({
  537. phone: mobileNumber
  538. })
  539. console.log("手机号格式正确");
  540. // 这里可以执行其他操作,比如保存手机号或进行下一步操作
  541. } else {
  542. wx.showToast({
  543. title: '手机号格式不正确',
  544. icon: 'none',
  545. })
  546. console.log("手机号格式不正确");
  547. // 这里可以提示用户手机号格式不正确
  548. }
  549. console.log(this.data.phone);
  550. },
  551. //身份证号码
  552. changeidnumber(e){
  553. const idnumber = e.detail;
  554. this.setData({
  555. idnumber,
  556. })
  557. console.log(idnumber);
  558. },
  559. })