my.vue 6.0 KB

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