mineEdit.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601
  1. <template>
  2. <view>
  3. <statusBar :item="navBarData"></statusBar>
  4. <view class="editBox">
  5. <view class="edit_avatar">
  6. <view class="edit_title">
  7. <text>头像</text>
  8. </view>
  9. <view class="userAvatar" @click="updateava">
  10. <image :src="userData.avatar"></image>
  11. </view>
  12. </view>
  13. <view class="setName">
  14. <view class="edit_title">
  15. <text>姓名</text>
  16. </view>
  17. <view class="input_details">
  18. <view class="nickname">
  19. <input type="text" style=" text-align: right;" maxlength="10" placeholder="请输入昵称"
  20. placeholder-style="font-size: 28rpx; color: rgb(153, 153, 153);"
  21. v-model="userData.username" />
  22. </view>
  23. </view>
  24. </view>
  25. <view class="setPicker">
  26. <picker mode="selector" :range="genderList" :value="userData.sex" @change="handelGender">
  27. <view class="content">
  28. <view class="edit_title">
  29. <text>性别</text>
  30. </view>
  31. <view class="input_details">
  32. <view class="details">
  33. <view class="uni-input text">{{genderList[userData.sex]}}</view>
  34. </view>
  35. <view class="arrow">
  36. <image
  37. src="https://teacherapi.cocorobo.cn/teaching-file/static//mine/arrow-right_gray.png"
  38. mode="aspectFill"></image>
  39. </view>
  40. </view>
  41. </view>
  42. </picker>
  43. </view>
  44. <view class="setPicker">
  45. <picker mode="selector" :range="schoolList" :value="userData.school" @change="handelSchool">
  46. <view class="content">
  47. <view class="edit_title">
  48. <text>学校</text>
  49. </view>
  50. <view class="input_details">
  51. <view class="details">
  52. <view class="uni-input text">{{userData.school}}</view>
  53. </view>
  54. <view class="arrow">
  55. <image
  56. src="https://teacherapi.cocorobo.cn/teaching-file/static//mine/arrow-right_gray.png"
  57. mode="aspectFill"></image>
  58. </view>
  59. </view>
  60. </view>
  61. </picker>
  62. </view>
  63. <view class="setPicker">
  64. <picker mode="selector" :range="speList" :value="userData.spe" @change="handelspe">
  65. <view class="content">
  66. <view class="edit_title">
  67. <text>专业</text>
  68. </view>
  69. <view class="input_details">
  70. <view class="details">
  71. <view class="uni-input text">{{userData.spe}}</view>
  72. </view>
  73. <view class="arrow">
  74. <image
  75. src="https://teacherapi.cocorobo.cn/teaching-file/static//mine/arrow-right_gray.png"
  76. mode="aspectFill"></image>
  77. </view>
  78. </view>
  79. </view>
  80. </picker>
  81. </view>
  82. <view class="setPicker">
  83. <picker mode="selector" :range="rankList" :value="userData.rankl" @change="handelrank">
  84. <view class="content">
  85. <view class="edit_title">
  86. <text>职称</text>
  87. </view>
  88. <view class="input_details">
  89. <view class="details">
  90. <view class="uni-input text">{{userData.rankl}}</view>
  91. </view>
  92. <view class="arrow">
  93. <image
  94. src="https://teacherapi.cocorobo.cn/teaching-file/static//mine/arrow-right_gray.png"
  95. mode="aspectFill"></image>
  96. </view>
  97. </view>
  98. </view>
  99. </picker>
  100. </view>
  101. <view class="setIntro">
  102. <view class="edit_title">
  103. <text>简介</text>
  104. </view>
  105. <view class="input_details">
  106. <view class="selfdomIntro">
  107. <textarea type="text" placeholder="请输入你的个性签名" maxlength="75"
  108. placeholder-style="font-size: 28rpx; color: rgb(153, 153, 153);" style="color: black;"
  109. v-model="userData.brief" />
  110. </view>
  111. </view>
  112. </view>
  113. </view>
  114. <view class="btnBox">
  115. <view class="btn">
  116. <button @click="saveInfo">保存修改</button>
  117. <button @click="gotoLogin">退出登录</button>
  118. </view>
  119. </view>
  120. <!-- 弹窗 -->
  121. <view>
  122. <view class="mask" v-show="showPopup" @click="closePopup"></view>
  123. <view class="popup-container" v-show="showPopup">
  124. <view class="popup">
  125. <view class="header">
  126. <text>确认修改</text>
  127. </view>
  128. <view class="footer">
  129. <view class="cancel-btn" @click="closePopup">取消</view>
  130. <view class="confirm-btn" @click="conf">确认</view>
  131. </view>
  132. </view>
  133. </view>
  134. </view>
  135. <view>
  136. <view class="popup-container2" style="height: 175px;" v-show="showPopupConfirm">
  137. <view class="popup">
  138. <view class="header" style="margin-top: 15px;">
  139. <image src="https://teacherapi.cocorobo.cn/teaching-file/static//gou1.png" mode="aspectFill">
  140. </image>
  141. <text style="margin-bottom: 24px;">修改成功</text>
  142. </view>
  143. </view>
  144. </view>
  145. </view>
  146. </view>
  147. </template>
  148. <script>
  149. export default {
  150. data() {
  151. // const currentDate = this.getDate({
  152. // format: true
  153. // })
  154. return {
  155. navBarData: {
  156. title: '个人资料',
  157. btn: 1
  158. },
  159. // 相别选项
  160. genderList: ['男', '女'],
  161. //学校选项
  162. schoolList: ['深圳信息XX学院', '深圳XX学院', '深圳XX学院'],
  163. //专业选项
  164. speList: ['互联网', '网络通信', '航空', '汽修', '珠宝', '文秘', '设计'],
  165. //职称选项
  166. rankList: ['教授', '副教授', '讲师','助教','其他'],
  167. // rankList: ['xx', 'xx', 'xx'],
  168. // 兴趣选项
  169. hobbyList: ['篮球', '编程', '钢琴', '美术', '摄影'],
  170. gender: '男',
  171. school: 'xx学院',
  172. //控制弹窗
  173. showPopup: false,
  174. //修改成功弹窗
  175. showPopupConfirm: false,
  176. // isFirstShow: true,
  177. // 用户信息数据
  178. userData: {
  179. oid: '',
  180. avatar: '', //头像
  181. username: '', //用户名
  182. sex: '', //用户性别
  183. school: '', //学校
  184. spe: '', //专业
  185. rankl: '', //职称
  186. brief: '', //用户简介
  187. }
  188. };
  189. },
  190. // computed: {
  191. // startDate() {
  192. // return this.getDate('start');
  193. // },
  194. // endDate() {
  195. // return this.getDate('end');
  196. // }
  197. // },
  198. methods: {
  199. // 上传图片
  200. updateava() {
  201. let that = this
  202. uni.chooseImage({
  203. count: 1, // 图片数量
  204. sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
  205. sourceType: ['album', 'camera'], //从相册选择或者拍照
  206. success: (res) => {
  207. const tempFilePaths = res.tempFilePaths[0];
  208. const uploadTask = uni.uploadFile({
  209. url: 'http://139.159.246.165:7006/img', // post请求地址
  210. filePath: tempFilePaths,
  211. name: 'file', // 待确认
  212. header: {
  213. // 不要写这个不然报错
  214. // 'Content-Type': 'multipart/form-data',
  215. },
  216. formData: {
  217. // 携带的用户数据
  218. // userId: that.$store.getters.getUser._id, // 用户ID
  219. },
  220. success: function(res) {
  221. // console.log(res);
  222. that.userData.avatar=res.data
  223. },
  224. fail: function(uploadFileFail) {
  225. console.log('Error:', uploadFileFail.data);
  226. },
  227. complete: () => {
  228. // 接口调用结束的回调函数(调用成功、失败都会执行)
  229. // console.log('Complete:');
  230. }
  231. });
  232. }
  233. });
  234. },
  235. // 获取渲染数据
  236. getData() {
  237. const value = this.$store.state.user.openid;
  238. if (value == '') return
  239. // console.log('????', this.$store.state.user.openid);
  240. this.$request('/selectUserInfo', "POST", {
  241. openid: this.$store.state.user.openid
  242. }).then(res => {
  243. // 假如简介为null
  244. if(!res[0][0].brief){
  245. res[0][0].brief=''
  246. }
  247. // console.log('获取渲染数据', res[0][0]);
  248. this.userData = res[0][0]
  249. })
  250. },
  251. // 取消操作
  252. closePopup() {
  253. this.showPopup = false;
  254. },
  255. // 确认操作
  256. conf() {
  257. this.showPopup = false;
  258. this.showPopupConfirm = true
  259. console.log(' this.userData', this.userData);
  260. this.$request('/updateUserInfo', "POST", this.userData).then(res => {
  261. // console.log('this', this);
  262. this.$request('/selectUserInfo', 'POST', {
  263. oId: this.$store.state.user.openid
  264. }).then(res => {
  265. console.log('获取caozuo', res[0][0]);
  266. this.$store.dispatch('asyncUpdateUser', res[0][0])
  267. })
  268. setTimeout(() => {
  269. this.showPopupConfirm = false
  270. this.getData()
  271. }, 1500)
  272. })
  273. },
  274. // 点击保存修改
  275. saveInfo() {
  276. const value = this.$store.state.user.openid;
  277. if (value == '') return uni.showToast({
  278. title: '未登录',
  279. icon: 'none'
  280. })
  281. if (!this.userData.username) {
  282. return uni.showToast({
  283. title: '昵称不能为空',
  284. icon: 'none'
  285. })
  286. }
  287. this.showPopup = true
  288. },
  289. // 选择用户性别
  290. handelGender(e) {
  291. console.log(e);
  292. this.userData.sex = e.detail.value
  293. },
  294. // 学校
  295. handelSchool(e) {
  296. console.log(e);
  297. this.userData.school = this.schoolList[e.detail.value]
  298. },
  299. // 专业
  300. handelspe(e) {
  301. console.log('handelspe', e);
  302. this.userData.spe = this.speList[e.detail.value]
  303. console.log('???', this.userData.spe);
  304. },
  305. // 职位
  306. handelrank(e) {
  307. console.log(e);
  308. this.userData.rankl = this.rankList[e.detail.value]
  309. },
  310. // 兴趣
  311. handeHobby(e) {
  312. this.userData.tag = e.detail.value
  313. },
  314. // 清除vuex的数据
  315. gotoLogin() {
  316. let user = {
  317. openid: '',
  318. avatar: '', //头像
  319. username: '', //用户名
  320. sex: '', //用户性别
  321. school: '', //学校
  322. spe: '', //专业
  323. rankl: '', //职称
  324. brief: '', //用户简介
  325. }
  326. this.$store.dispatch('asyncUpdateUser', user)
  327. uni.navigateTo({
  328. url: '/pages/login_Wechat/login_Wechat'
  329. })
  330. // 清除本页面数据
  331. this.userData = {}
  332. },
  333. },
  334. onReady() {
  335. console.log(this.$store.state);
  336. this.getData()
  337. }
  338. }
  339. </script>
  340. <style lang="scss">
  341. .mask {
  342. position: fixed;
  343. top: 0;
  344. left: 0;
  345. width: 100%;
  346. height: 100%;
  347. background-color: rgba(0, 0, 0, 0.3);
  348. z-index: 999;
  349. overflow: hidden;
  350. // display: none;
  351. }
  352. .popup-container2 {
  353. position: fixed;
  354. top: 50%;
  355. left: 50%;
  356. transform: translate(-50%, -50%);
  357. width: 520rpx;
  358. height: 260rpx;
  359. z-index: 1000;
  360. border-radius: 16rpx;
  361. // display: none;
  362. box-shadow: 0rpx 3rpx 10rpx 5rpx rgba(0, 0, 0, .1);
  363. overflow: hidden;
  364. .popup {
  365. width: 100%;
  366. height: 100%;
  367. display: flex;
  368. flex-direction: column;
  369. background-color: #fff;
  370. border-radius: 16rpx;
  371. overflow: hidden;
  372. .header {
  373. flex: 1;
  374. display: flex;
  375. justify-content: center;
  376. align-items: center;
  377. flex-direction: column;
  378. margin-top: 24px;
  379. font-size: 34rpx;
  380. font-weight: 600;
  381. image {
  382. width: 150rpx;
  383. height: 150rpx;
  384. margin-top: 15px;
  385. margin-bottom: 15px;
  386. }
  387. }
  388. .footer {
  389. width: 100%;
  390. display: flex;
  391. overflow: hidden;
  392. .cancel-btn {
  393. width: 50%;
  394. height: 100rpx;
  395. background-color: #F7F7F7;
  396. color: #000;
  397. font-size: 34rpx;
  398. text-align: center;
  399. border-bottom-left-radius: 16rpx;
  400. line-height: 50px;
  401. }
  402. .confirm-btn {
  403. width: 50%;
  404. height: 100rpx;
  405. background-color: #0081FE;
  406. color: #fff;
  407. font-size: 34rpx;
  408. text-align: center;
  409. line-height: 50px;
  410. }
  411. }
  412. }
  413. }
  414. .edit_title {
  415. display: flex;
  416. align-items: center;
  417. font-size: 32rpx;
  418. }
  419. .editBox {
  420. width: 100%;
  421. // height: 800rpx;
  422. display: flex;
  423. flex-direction: column;
  424. background-color: #fff;
  425. border-top: 1px solid #E7E7E7;
  426. padding: 0 18px;
  427. .edit_avatar {
  428. height: 164rpx;
  429. display: flex;
  430. justify-content: space-between;
  431. .userAvatar {
  432. display: flex;
  433. align-items: center;
  434. image {
  435. width: 120rpx;
  436. height: 120rpx;
  437. }
  438. }
  439. }
  440. .setName {
  441. display: flex;
  442. justify-content: space-between;
  443. height: 92rpx;
  444. border-top: 1px solid #E7E7E7;
  445. .input_details {
  446. display: flex;
  447. align-items: center;
  448. flex-direction: row;
  449. .nickname {
  450. width: 350rpx;
  451. text-align: end;
  452. // padding-right: 10rpx;
  453. // margin-right: 10rpx;
  454. font-size: 28rpx;
  455. color: rgb(153, 153, 153);
  456. }
  457. }
  458. }
  459. .setPicker {
  460. height: 92rpx;
  461. border-top: 1px solid #E7E7E7;
  462. .content {
  463. height: 92rpx;
  464. display: flex;
  465. align-items: center;
  466. justify-content: space-between;
  467. .input_details {
  468. display: flex;
  469. align-items: center;
  470. .details {
  471. display: flex;
  472. flex-direction: row;
  473. .text {
  474. font-size: 28rpx;
  475. color: rgb(153, 153, 153);
  476. }
  477. }
  478. .arrow {
  479. display: flex;
  480. image {
  481. width: 32rpx;
  482. height: 32rpx;
  483. }
  484. }
  485. }
  486. }
  487. }
  488. .setIntro {
  489. display: flex;
  490. flex-direction: column;
  491. justify-content: space-evenly;
  492. height: 230rpx;
  493. border-top: 1px solid #E7E7E7;
  494. .input_details {
  495. display: flex;
  496. align-items: center;
  497. .selfdomIntro {
  498. width: 100%;
  499. height: 120rpx;
  500. textarea {
  501. width: 100%;
  502. height: 120rpx;
  503. font-size: 28rpx;
  504. color: rgb(153, 153, 153);
  505. }
  506. }
  507. }
  508. }
  509. }
  510. .btnBox {
  511. position: absolute;
  512. margin: 0 85rpx;
  513. bottom: 40px;
  514. .btn {
  515. button {
  516. width: 580rpx;
  517. height: 88rpx;
  518. border: none;
  519. border-radius: 100rpx;
  520. border: 1px solid lightgray;
  521. font-size: 36rpx;
  522. display: flex;
  523. justify-content: center;
  524. align-items: center;
  525. color: #545454;
  526. text-align: center;
  527. &:first-child {
  528. background-color: rgb(0, 86, 168);
  529. color: white;
  530. margin-bottom: 24rpx;
  531. }
  532. &::after {
  533. border: none;
  534. }
  535. }
  536. }
  537. }
  538. </style>