index.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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.officerNo}}</view>
  10. </view>
  11. </view>
  12. <view class="feature-list">
  13. <view class="feature-item" @click="openPage('pages/center/reportList/reportList')">
  14. <view class="feature-left">
  15. <image src="../../static/img/icon-center-report.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="openPage('pages/center/resetPass/resetPass')">
  23. <view class="feature-left">
  24. <image src="../../static/img/icon-center-mima.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 class="feature-item" @click="loginOut">
  32. <view class="feature-left">
  33. <image src="../../static/img/icon-center-tuichu.png" mode="widthFix"></image>
  34. 退出登录
  35. </view>
  36. <view class="feature-right">
  37. <u-icon name="arrow-right"></u-icon>
  38. </view>
  39. </view>
  40. </view>
  41. </view>
  42. </template>
  43. <script>
  44. export default {
  45. data() {
  46. return {
  47. pic:'/static/img/default-avatar.png',
  48. orderStatis:{},
  49. }
  50. },
  51. onLoad() {
  52. // this.getOrderStatis();
  53. },
  54. methods: {
  55. openPage(path,param) {
  56. this.$u.route({
  57. url: path,
  58. params:{
  59. param:param
  60. }
  61. })
  62. },
  63. loginOut(){
  64. this.$u.api.getLoginOut().then(res=>{
  65. if(res.code==200){
  66. console.log('getLoginOut',res);
  67. this.$u.vuex('vuex_user', '');
  68. // localStorage.setItem('backUrl', '');
  69. uni.navigateTo({
  70. url: '../login/login'
  71. });
  72. }else{
  73. uni.showToast({
  74. icon:'none',
  75. title:res.msg
  76. })
  77. }
  78. console.log('res',res);
  79. }).catch(err=>{
  80. console.log('err',err);
  81. })
  82. },
  83. getOrderStatis(){
  84. this.$u.api.getOrderStatis().then(res=>{
  85. if(res.code==200){
  86. console.log('getOrderStatis',res);
  87. this.orderStatis = res.data;
  88. }else{
  89. uni.showToast({
  90. icon:'none',
  91. title:res.msg
  92. })
  93. }
  94. console.log('res',res);
  95. }).catch(err=>{
  96. console.log('err',err);
  97. })
  98. }
  99. }
  100. }
  101. </script>
  102. <style lang="scss" scoped>
  103. page{background-color: #fff;}
  104. @import './center.scss'
  105. </style>