my.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <template>
  2. <view class="container">
  3. <view class="my-container">
  4. <view class="user-info-pannel">
  5. <view class="head-img">
  6. <image class="head-img-icon" :src="userInfo.type == 'group' && userInfo.info.headimg ? userInfo.info.headimg : '/resource/images/logo.png'"></image>
  7. </view>
  8. <view class="shop-info">
  9. <view class="shop-name">{{ userInfo.info.name }}</view>
  10. </view>
  11. </view>
  12. <view class="pannel-gorup">
  13. <view class="form-item flex-row flex-between border-bottom">
  14. <view class="form-label">
  15. <image class="form-icon" src="/static/resource/images/info-icon.png"></image>
  16. <text>{{$t('当前版本')}}</text>
  17. </view>
  18. <view class="form-value">{{ app_version }}</view>
  19. </view>
  20. <view class="form-item" @tap="bindQuit">
  21. <view class="form-label">
  22. <image class="form-icon" src="https://qiniu.bms16.com/FgpdVw7EPeiNrDFRaYrSEZp8GIWG"></image>
  23. <text>{{$t('退出')}}</text>
  24. </view>
  25. <view class="form-value"></view>
  26. </view>
  27. </view>
  28. </view>
  29. <view class="page-foot">
  30. <view class="app-support"></view>
  31. </view>
  32. </view>
  33. </template>
  34. <script>
  35. // pages/my/my.js
  36. var config = require('../../common/config.js');
  37. var http = require('../../common/http.js');
  38. var common = require('../../common/common.js');
  39. var storage = require('../../common/storage.js');
  40. export default {
  41. data() {
  42. return {
  43. userInfo: {
  44. type: '',
  45. info: {
  46. headimg: '',
  47. name: ''
  48. }
  49. },
  50. app_version: ''
  51. };
  52. }
  53. /**
  54. * 生命周期函数--监听页面加载
  55. */,
  56. onLoad: function (options) {
  57. this.loadUserInfo();
  58. this.setData({
  59. app_version: config.APP_VERSION
  60. });
  61. },
  62. /**
  63. * 生命周期函数--监听页面初次渲染完成
  64. */
  65. onReady: function () {},
  66. /**
  67. * 生命周期函数--监听页面显示
  68. */
  69. onShow: function () {
  70. const that = this;
  71. },
  72. /**
  73. * 用户点击右上角分享
  74. */
  75. onShareAppMessage: function () {},
  76. methods: {
  77. loadUserInfo: function () {
  78. const userInfo = storage.getUserInfo();
  79. if (!userInfo) {
  80. http.postApi(config.API_USER_INFO, {}, (resp) => {
  81. if (resp.data.code === 200) {
  82. storage.setUserInfo(resp.data.data);
  83. this.setData({
  84. userInfo: resp.data.data
  85. });
  86. } else {
  87. common.simpleToast(this,resp.data.msg);
  88. }
  89. });
  90. } else {
  91. this.setData({
  92. userInfo: userInfo
  93. });
  94. }
  95. },
  96. bindQuit: function () {
  97. uni.showModal({
  98. title: '',
  99. content: this.$t('确定退出?'),
  100. showCancel: true,
  101. cancelText: this.$t('取消'),
  102. confirmText: this.$t('确定'),
  103. success: function (res) {
  104. if (res.confirm) {
  105. uni.clearStorage();
  106. uni.reLaunch({
  107. url: '/pages/login/login',
  108. success: function (res) {},
  109. fail: function (res) {},
  110. complete: function (res) {}
  111. });
  112. }
  113. }
  114. });
  115. }
  116. }
  117. };
  118. </script>
  119. <style>
  120. @import './my.css';
  121. </style>