my.vue 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. <template>
  2. <view class="container-view zx-page-linear">
  3. <!-- #ifdef MP-WEIXIN -->
  4. <view :style="{height: `${statusBarHeight + 20}px`}"></view>
  5. <!-- #endif -->
  6. <!-- #ifdef APP -->
  7. <view :style="{height: `${statusBarHeight}px`}"></view>
  8. <!-- #endif -->
  9. <view class="user-switch-row">
  10. <image :src="QINIU_URL + 'FlL5BtEdMES2-mntjR9D3CX_LWYv'" class="message"
  11. @tap="routerLink({ url: '/pages/message/index' })" />
  12. </view>
  13. <view class="user-info-wrap" @tap="loginHandle">
  14. <image :src="userInfo.headimg || defaultAvatarUrl" class="head-img" />
  15. <view class="user-name">{{ userInfo.nickname || '请点击登录' }}</view>
  16. <view v-if="userInfo.user_name" class="e-mail">
  17. {{ userInfo.user_name }}
  18. </view>
  19. </view>
  20. <view v-if="car_info.car_sn" class="common-tabs">
  21. <view class="item" @click="routerLink({url:'/pages/dashboard/dashboard'})">
  22. <image :src="QINIU_URL + 'Fp6G-Kzb-YUGkP2WR-kjTlIbbTj1'" class="icon" />
  23. <view class="name">{{ $t('我的车辆') }}</view>
  24. </view>
  25. <view class="item" @click="routerLink({url:'/pages/userManagement/userManagement'})">
  26. <image :src="QINIU_URL + 'FnxGW52BCkTkK9HxsTdVrghU7B4D'" class="icon" />
  27. <view class="name">{{ $t('用车人') }}</view>
  28. </view>
  29. <view v-if="car_info.sold_time" class="item" @click="routerLink({url:'',jumpCheck:'combo'})">
  30. <image :src="QINIU_URL + 'FsOsd1SxYDHDm00aiwrTib_k0Mbr'" class="icon" />
  31. <view class="name">{{ $t('换电套餐') }}</view>
  32. </view>
  33. </view>
  34. <view class="tabs-wrap">
  35. <view v-for="(item, index) in baseTabs" :key="index" class="tab-item" @click="routerLink(item)">
  36. <image :src="QINIU_URL + item.icon" class="icon" />
  37. <view class="name">{{ item.name }}</view>
  38. </view>
  39. </view>
  40. <Confirm v-model="comboDialoginfo.showConfirm" :dialog-info="comboDialoginfo" @confirm="dialogConfirm" />
  41. <CustomTabbar curt-tab="my" />
  42. </view>
  43. </template>
  44. <script>
  45. const storage = require('@/common/storage.js')
  46. import Confirm from '@/component/comPopup/Confirm'
  47. import {
  48. QINIU_URL,
  49. defaultHeadImg
  50. } from '@/common/constant'
  51. import CustomTabbar from '@/component/customTabbar/index'
  52. var config = require('../../common/config_gyq.js');
  53. var http = require('../../common/request.js');
  54. export default {
  55. components: {
  56. Confirm,
  57. CustomTabbar
  58. },
  59. data() {
  60. return {
  61. statusBarHeight:0,
  62. car_info: {},
  63. QINIU_URL,
  64. defaultAvatarUrl: defaultHeadImg,
  65. comboDialoginfo: {
  66. showConfirm: false,
  67. title: '温馨提示',
  68. opType: 'combo',
  69. text: '您还未购买换电套餐,是否前往进行换电套餐?',
  70. confirmBtnText: '前往购买',
  71. showCancelButton: false
  72. },
  73. userInfo: {}
  74. }
  75. },
  76. computed: {
  77. // commonTabs() {
  78. // return [
  79. // { name: `${this.$t('我的车辆')}`, url: '/pages/dashboard/dashboard', icon: 'Fp6G-Kzb-YUGkP2WR-kjTlIbbTj1' },
  80. // { name: `${this.$t('用车人')}`, url: '/pages/userManagement/userManagement', icon: 'FnxGW52BCkTkK9HxsTdVrghU7B4D' },
  81. // { name: `${this.$t('换电套餐')}`, jumpCheck: 'combo', url: '', icon: 'FsOsd1SxYDHDm00aiwrTib_k0Mbr' }
  82. // ]
  83. // },
  84. baseTabs() {
  85. const lang = t => this.$t(t)
  86. return [{
  87. name: `${lang('我的订单')}`,
  88. url: '/pages/order/order',
  89. icon: 'FkLJGLo1faYtJWhW4Q0gt5dphI7g'
  90. },
  91. {
  92. name: `${lang('换电记录')}`,
  93. url: '/pages/batteryRecord/batteryRecord',
  94. icon: 'FnSjwcN7Mcpa-WA7Cqx2cGTvX2V1'
  95. },
  96. {
  97. name: `${lang('意见反馈')}`,
  98. url: '/pages/feedback/index',
  99. icon: 'FnSjwcN7Mcpa-WA7Cqx2cGTvX2V1'
  100. },
  101. // { name: `${lang('关于我们')}`, url: '/pages/bluetoothUnlock/unlockSet', icon: 'Fmin1_DG6ZkENCdsI1qJZJpDNkhQ' },
  102. {
  103. name: `${lang('客服中心')}`,
  104. url: '',
  105. statues:'service',
  106. icon: 'FhA9TUbTMF0e7ma6NZXqPrkscN6l'
  107. },
  108. {
  109. name: `${lang('设置')}`,
  110. url: '/pages/my/set',
  111. icon: 'Fu3f2iRi5BspRfbVLPcw8ryWc4lu'
  112. }
  113. ]
  114. }
  115. },
  116. onShow() {
  117. this.car_info = uni.getStorageSync('car_info') || {};
  118. const user_token = storage.getUserToken()
  119. user_token && this.loadUserInfo()
  120. },
  121. onLoad() {
  122. this.statusBarHeight = uni.getSystemInfoSync().statusBarHeight || 0
  123. },
  124. methods: {
  125. async loadUserInfo() {
  126. const userInfo = storage.getUserInfoData()
  127. this.setData({
  128. userInfo
  129. })
  130. let {
  131. data
  132. } = await http.postApi(config.API_USER_INFO, {})
  133. if (data.code == 200) {
  134. this.userInfo = data.data.userInfo
  135. storage.setUserInfoData(this.userInfo)
  136. }
  137. },
  138. loginHandle() {
  139. if (!this.userInfo.nickname) {
  140. uni.navigateTo({
  141. url: '/pages/loginRegister/login'
  142. })
  143. }
  144. },
  145. checkHandle_combo() {
  146. if(this.car_info.exchange_package_info){
  147. uni.navigateTo({
  148. url: `/pages/package/package`
  149. })
  150. return
  151. }
  152. this.comboDialoginfo.showConfirm = true
  153. },
  154. dialogConfirm(type) {
  155. uni.navigateTo({
  156. url: `/pages/batteryPackage/batteryPackage`
  157. })
  158. },
  159. routerLink({
  160. url,
  161. jumpCheck,
  162. statues
  163. }) {
  164. if(statues){
  165. return
  166. }
  167. if (jumpCheck) {
  168. this[`checkHandle_${jumpCheck}`]()
  169. return
  170. }
  171. console.log(url)
  172. uni.navigateTo({
  173. url
  174. })
  175. }
  176. }
  177. }
  178. </script>
  179. <style lang="scss" scoped>
  180. @import './my.scss';
  181. </style>