index.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <template>
  2. <view class="wrap">
  3. <view class="user-box">
  4. <view class="avatar-wrap">
  5. <u-avatar :src="vuex_user.avatar||pic" size="123"></u-avatar>
  6. </view>
  7. <view class="u-flex-1">
  8. <view class="user-name">{{vuex_user.officerName}}</view>
  9. <view class="user-post">{{vuex_user.telephone}}</view>
  10. </view>
  11. </view>
  12. <view class="feature-list">
  13. <view class="feature-item" @click="openPage('pages/center/resetPass/resetPass')">
  14. <view class="feature-left">
  15. <image src="../../static/img/icon-center-mima.png" mode="widthFix"></image>
  16. 修改密码
  17. </view>
  18. <view class="feature-right">
  19. <u-icon name="arrow-right"></u-icon>
  20. </view>
  21. </view>
  22. <view class="feature-item" @click="loginOut">
  23. <view class="feature-left">
  24. <image src="../../static/img/icon-center-tuichu.png" mode="widthFix"></image>
  25. 退出登录
  26. </view>
  27. <view class="feature-right">
  28. <u-icon name="arrow-right"></u-icon>
  29. </view>
  30. </view>
  31. </view>
  32. </view>
  33. </template>
  34. <script>
  35. export default {
  36. data() {
  37. return {
  38. pic:'/static/img/default-avatar.png',
  39. orderStatis:{},
  40. }
  41. },
  42. onLoad() {
  43. // this.getOrderStatis();
  44. },
  45. methods: {
  46. openPage(path,param) {
  47. this.$u.route({
  48. url: path,
  49. params:{
  50. param:param
  51. }
  52. })
  53. },
  54. loginOut(){
  55. this.$u.api.getLoginOut().then(res=>{
  56. if(res.code==200){
  57. console.log('getLoginOut',res);
  58. this.$u.vuex('vuex_user', '');
  59. // localStorage.setItem('backUrl', '');
  60. uni.navigateTo({
  61. url: '../login/login'
  62. });
  63. }else{
  64. uni.showToast({
  65. icon:'none',
  66. title:res.msg
  67. })
  68. }
  69. console.log('res',res);
  70. }).catch(err=>{
  71. console.log('err',err);
  72. })
  73. },
  74. getOrderStatis(){
  75. this.$u.api.getOrderStatis().then(res=>{
  76. if(res.code==200){
  77. console.log('getOrderStatis',res);
  78. this.orderStatis = res.data;
  79. }else{
  80. uni.showToast({
  81. icon:'none',
  82. title:res.msg
  83. })
  84. }
  85. console.log('res',res);
  86. }).catch(err=>{
  87. console.log('err',err);
  88. })
  89. }
  90. }
  91. }
  92. </script>
  93. <style lang="scss" scoped>
  94. page{background-color: #fff;}
  95. @import './center.scss'
  96. </style>