mineEdit.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557
  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">
  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">{{schoolList[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="date" :value="userData.birthday" :start="startDate" :end="endDate" @change="bindDateChange">
  65. <!-- <picker mode="date" :value="userData.date" @change="bindDateChange"> -->
  66. <view class="content">
  67. <view class="edit_title">
  68. <text>生日</text>
  69. </view>
  70. <view class="input_details">
  71. <view class="details">
  72. <view class="uni-input text">{{userData.birthday=='null'?" ":userData.birthday}}</view>
  73. </view>
  74. <view class="arrow">
  75. <image
  76. src="https://teacherapi.cocorobo.cn/teaching-file/static//mine/arrow-right_gray.png"
  77. mode="aspectFill"></image>
  78. </view>
  79. </view>
  80. </view>
  81. </picker>
  82. </view>
  83. <view class="setPicker">
  84. <picker mode="selector" :range="hobbyList" :value="userData.tag" @change="handelHobby">
  85. <view class="content">
  86. <view class="edit_title">
  87. <text>兴趣标签</text>
  88. </view>
  89. <view class="input_details">
  90. <view class="details">
  91. <view class="uni-input text">{{hobbyList[userData.tag]}}</view>
  92. </view>
  93. <view class="arrow">
  94. <image
  95. src="https://teacherapi.cocorobo.cn/teaching-file/static//mine/arrow-right_gray.png"
  96. mode="aspectFill"></image>
  97. </view>
  98. </view>
  99. </view>
  100. </picker>
  101. </view>
  102. <view class="setIntro">
  103. <view class="edit_title">
  104. <text>简介</text>
  105. </view>
  106. <view class="input_details">
  107. <view class="selfdomIntro">
  108. <textarea type="text" placeholder="请输入你的个性签名" maxlength="75"
  109. placeholder-style="font-size: 28rpx; color: rgb(153, 153, 153);" style="color: black;" 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="mask" v-show="showPopupConfirm" @click="closePopup"></view> -->
  137. <view class="popup-container" style="height: 175px;" v-show="showPopupConfirm">
  138. <view class="popup">
  139. <view class="header" style="margin-top: 15px;">
  140. <image src="https://teacherapi.cocorobo.cn/teaching-file/static//gou1.png" mode="aspectFill">
  141. </image>
  142. <text style="margin-bottom: 24px;">修改成功</text>
  143. </view>
  144. </view>
  145. </view>
  146. </view>
  147. </view>
  148. </template>
  149. <script>
  150. export default {
  151. data() {
  152. // const currentDate = this.getDate({
  153. // format: true
  154. // })
  155. return {
  156. navBarData: {
  157. title: '个人资料',
  158. btn: 1
  159. },
  160. // 相别选项
  161. genderList: ['男', '女'],
  162. //学校选项
  163. schoolList: ['深圳信息XX学院', '深圳XX学院', '深圳XX学院'],
  164. // 兴趣选项
  165. hobbyList: ['篮球','编程','钢琴','美术','摄影'],
  166. gender: '男',
  167. school: 'xx学院',
  168. //控制弹窗
  169. showPopup: false,
  170. //修改成功弹窗
  171. showPopupConfirm: false,
  172. // isFirstShow: true,
  173. // 用户信息数据
  174. userData: {
  175. oid:'',
  176. avatar: '', //头像
  177. username: '', //用户名
  178. sex:null, //用户性别
  179. school:null,//学校
  180. birthday: '',//生日
  181. tag:null, //兴趣标签
  182. brief: '', //用户简介
  183. }
  184. };
  185. },
  186. // computed: {
  187. // startDate() {
  188. // return this.getDate('start');
  189. // },
  190. // endDate() {
  191. // return this.getDate('end');
  192. // }
  193. // },
  194. methods: {
  195. // 获取渲染数据
  196. getData(){
  197. const value = this.$store.state.user.openid;
  198. if (value == '') return
  199. this.$request('/selectUserInfo', "POST", {openid: this.$store.state.user.openid,}).then(res => {
  200. console.log('获取渲染数据',res[0][0]);
  201. // res[0][0].birthday=
  202. if(res[0][0].birthday==null) res[0][0].birthday=''
  203. if(res[0][0].brief==null) res[0][0].brief=''
  204. this.userData=res[0][0]
  205. // this.userData.oid=res[0][0].oid
  206. // this.userData.avatar=res[0][0].avatar
  207. // this.userData.username=res[0][0].username
  208. // this.userData.sex=res[0][0].sex?res[0][0].sex :''
  209. // this.userData.school=res[0][0].school?res[0][0].school :''
  210. // this.userData.birthday=res[0][0].birthday ?res[0][0].birthday :''
  211. // this.userData.tag=res[0][0].tag ?res[0][0].tag :''
  212. // this.userData.brief=res[0][0].brief ?res[0][0].brief :''
  213. })
  214. },
  215. // 取消操作
  216. closePopup() {
  217. this.showPopup = false;
  218. // this.showPopupConfirm = false;
  219. },
  220. // 确认操作
  221. conf() {
  222. this.showPopup = false;
  223. this.showPopupConfirm=true
  224. console.log('要上传修改的数据',this.userData);
  225. this.$request('/updateUserInfo', "POST", this.userData).then(res => {
  226. // console.log('修改的数据',res);
  227. this.$request('/selectUser', 'POST', {
  228. oId: uni.getStorageSync('oId'),
  229. }).then(res => {
  230. console.log('selectUser', res[0][0]);
  231. this.$store.dispatch('asyncUpdateUser', res[0][0])
  232. })
  233. setTimeout(()=>{
  234. this.showPopupConfirm=false
  235. this.getData()
  236. },1500)
  237. })
  238. },
  239. // 点击保存修改
  240. saveInfo() {
  241. const value = this.$store.state.user.openid;
  242. if (value == '') return uni.showToast({title:'未登录',icon:'none'})
  243. if(!this.userData.username){
  244. return uni.showToast({title:'昵称不能为空',icon:'none'})
  245. }
  246. this.showPopup = true
  247. },
  248. // 选择用户性别
  249. handelGender(e) {
  250. console.log(e);
  251. this.userData.sex = e.detail.value
  252. },
  253. handelHobby(e){
  254. this.userData.tag = e.detail.value
  255. },
  256. // 生日
  257. bindDateChange(e) {
  258. this.userData.birthday = e.detail.value
  259. },
  260. // handelGender(e) {
  261. // this.gender = this.genderList[e.detail.value]
  262. // },
  263. // 学校
  264. handelSchool(e) {
  265. this.userData.school = e.detail.value
  266. },
  267. // 兴趣
  268. handeHobby(e) {
  269. this.userData.tag = e.detail.value
  270. },
  271. // 清除vuex的数据
  272. gotoLogin() {
  273. console.log(this.$store.state.user);
  274. let user = {
  275. avatar: "",
  276. birthday: "",
  277. brief: "",
  278. id: "",
  279. openid: "",
  280. school: "null",
  281. sex: null,
  282. tag: null,
  283. username: "暂无"
  284. }
  285. this.$store.dispatch('asyncUpdateUser', user)
  286. uni.navigateTo({
  287. url: '/pages/login_Wechat/login_Wechat'
  288. })
  289. // 清除本页面数据
  290. this.userData={}
  291. },
  292. },
  293. onReady() {
  294. console.log(this.$store.state);
  295. this.getData()
  296. }
  297. }
  298. </script>
  299. <style lang="scss">
  300. .mask {
  301. position: fixed;
  302. top: 0;
  303. left: 0;
  304. width: 100%;
  305. height: 100%;
  306. background-color: rgba(0, 0, 0, 0.3);
  307. z-index: 999;
  308. overflow: hidden;
  309. // display: none;
  310. }
  311. .popup-container {
  312. position: fixed;
  313. top: 50%;
  314. left: 50%;
  315. transform: translate(-50%, -50%);
  316. width: 520rpx;
  317. height: 260rpx;
  318. z-index: 1000;
  319. // display: none;
  320. .popup {
  321. width: 100%;
  322. height: 100%;
  323. display: flex;
  324. flex-direction: column;
  325. background-color: #fff;
  326. border-radius: 16rpx;
  327. overflow: hidden;
  328. .header {
  329. flex: 1;
  330. display: flex;
  331. justify-content: center;
  332. align-items: center;
  333. flex-direction: column;
  334. margin-top: 24px;
  335. font-size: 34rpx;
  336. font-weight: 600;
  337. image {
  338. width: 150rpx;
  339. height: 150rpx;
  340. margin-top: 15px;
  341. margin-bottom: 15px;
  342. }
  343. }
  344. .footer {
  345. width: 100%;
  346. // flex: 1;
  347. display: flex;
  348. // justify-content: space-around;
  349. // align-items: end;
  350. // padding-top: 17px;
  351. overflow: hidden;
  352. .cancel-btn {
  353. width: 50%;
  354. height: 100rpx;
  355. background-color: #F7F7F7;
  356. color: #000;
  357. font-size: 34rpx;
  358. text-align: center;
  359. border-bottom-left-radius: 16rpx;
  360. line-height: 50px;
  361. }
  362. .confirm-btn {
  363. width: 50%;
  364. height: 100rpx;
  365. background-color: #0081FE;
  366. color: #fff;
  367. font-size: 34rpx;
  368. text-align: center;
  369. line-height: 50px;
  370. }
  371. }
  372. }
  373. }
  374. .edit_title {
  375. display: flex;
  376. align-items: center;
  377. font-size: 32rpx;
  378. }
  379. .editBox {
  380. width: 100%;
  381. height: 840rpx;
  382. display: flex;
  383. flex-direction: column;
  384. background-color: #fff;
  385. border-top: 1px solid #E7E7E7;
  386. padding: 0 18px;
  387. .edit_avatar {
  388. height: 164rpx;
  389. display: flex;
  390. justify-content: space-between;
  391. .userAvatar {
  392. display: flex;
  393. align-items: center;
  394. image {
  395. width: 120rpx;
  396. height: 120rpx;
  397. }
  398. }
  399. }
  400. .setName {
  401. display: flex;
  402. justify-content: space-between;
  403. height: 92rpx;
  404. border-top: 1px solid #E7E7E7;
  405. .input_details {
  406. display: flex;
  407. align-items: center;
  408. flex-direction: row;
  409. .nickname {
  410. width: 350rpx;
  411. text-align: end;
  412. // padding-right: 10rpx;
  413. // margin-right: 10rpx;
  414. font-size: 28rpx;
  415. color: rgb(153, 153, 153);
  416. }
  417. }
  418. }
  419. .setPicker {
  420. height: 92rpx;
  421. border-top: 1px solid #E7E7E7;
  422. .content {
  423. height: 92rpx;
  424. display: flex;
  425. align-items: center;
  426. justify-content: space-between;
  427. .input_details {
  428. display: flex;
  429. align-items: center;
  430. .details {
  431. display: flex;
  432. flex-direction: row;
  433. .text {
  434. font-size: 28rpx;
  435. color: rgb(153, 153, 153);
  436. }
  437. }
  438. .arrow {
  439. display: flex;
  440. image {
  441. width: 32rpx;
  442. height: 32rpx;
  443. }
  444. }
  445. }
  446. }
  447. }
  448. .setIntro {
  449. display: flex;
  450. flex-direction: column;
  451. justify-content: space-evenly;
  452. height: 216rpx;
  453. border-top: 1px solid #E7E7E7;
  454. .input_details {
  455. display: flex;
  456. align-items: center;
  457. .selfdomIntro {
  458. width: 100%;
  459. height: 88rpx;
  460. textarea {
  461. width: 100%;
  462. height: 88rpx;
  463. font-size: 28rpx;
  464. color: rgb(153, 153, 153);
  465. }
  466. }
  467. }
  468. }
  469. }
  470. .btnBox {
  471. position: absolute;
  472. margin: 0 85rpx;
  473. bottom: 40px;
  474. .btn {
  475. button {
  476. width: 580rpx;
  477. height: 88rpx;
  478. border: none;
  479. border-radius: 100rpx;
  480. border: 1px solid lightgray;
  481. font-size: 36rpx;
  482. display: flex;
  483. justify-content: center;
  484. align-items: center;
  485. color: #545454;
  486. text-align: center;
  487. &:first-child {
  488. background-color: rgb(0, 86, 168);
  489. color: white;
  490. margin-bottom: 24rpx;
  491. }
  492. &::after {
  493. border: none;
  494. }
  495. }
  496. }
  497. }
  498. </style>