my.vue 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  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 style="position: fixed;z-index: 999999;right: 40rpx;" class="user-switch-row">
  10. <view @click="routerLink({ url: '/pages/message/index?isSys=1',isLogin:1 })" class="news">
  11. <view v-if="newsList.plate_count> 0" class="num">{{newsList.plate_count}}</view>
  12. <image :src="QINIU_URL + 'FlL5BtEdMES2-mntjR9D3CX_LWYv'" class="message"
  13. />
  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 || $t('请点击登录') }}</view>
  19. <view v-if="userInfo.user_name" class="e-mail">
  20. {{ userInfo.user_name }}
  21. </view>
  22. </view>
  23. <view class="common-tabs">
  24. <!-- <view class="item" @click="routerLink({url:'/pages/dashboard/dashboard',isLogin:1})">
  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',isLogin:1})">
  29. <image :src="QINIU_URL + 'FnxGW52BCkTkK9HxsTdVrghU7B4D'" class="icon" />
  30. <view class="name">{{ $t('用车人') }}</view>
  31. </view>
  32. <view class="item" @click="routerLink({url:'',jumpCheck:'combo',isLogin:1})">
  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. shopInfo:{},
  69. QINIU_URL,
  70. defaultAvatarUrl: defaultHeadImg,
  71. comboDialoginfo: {
  72. showConfirm: false,
  73. title: this.$t('温馨提示'),
  74. opType: 'combo',
  75. text: this.$t('您还未购买换电套餐,是否前往进行换电套餐?'),
  76. confirmBtnText: this.$t('前往购买'),
  77. showCancelButton: false
  78. },
  79. userInfo: {}
  80. }
  81. },
  82. computed: {
  83. // commonTabs() {
  84. // return [
  85. // { name: `${this.$t(this.$t('我的车辆'))}`, url: '/pages/dashboard/dashboard', icon: 'Fp6G-Kzb-YUGkP2WR-kjTlIbbTj1' },
  86. // { name: `${this.$t(this.$t('用车人'))}`, url: '/pages/userManagement/userManagement', icon: 'FnxGW52BCkTkK9HxsTdVrghU7B4D' },
  87. // { name: `${this.$t(this.$t('换电套餐'))}`, jumpCheck: 'combo', url: '', icon: 'FsOsd1SxYDHDm00aiwrTib_k0Mbr' }
  88. // ]
  89. // },
  90. baseTabs() {
  91. const lang = t => this.$t(t)
  92. return [{
  93. name: `${this.$t('我的订单')}`,
  94. url: '/pages/order/order',
  95. icon: 'FkLJGLo1faYtJWhW4Q0gt5dphI7g',
  96. isLogin:1
  97. },
  98. {
  99. name: `${this.$t('换电记录')}`,
  100. url: '/pages/batteryRecord/batteryRecord',
  101. icon: 'FnSjwcN7Mcpa-WA7Cqx2cGTvX2V1',
  102. isLogin:1
  103. },
  104. // { name: `${lang(this.$t('关于我们'))}`, url: '/pages/bluetoothUnlock/unlockSet', icon: 'Fmin1_DG6ZkENCdsI1qJZJpDNkhQ' },
  105. {
  106. name: `${this.$t('客服中心')}`,
  107. url: '',
  108. statues:'service',
  109. icon: 'FhA9TUbTMF0e7ma6NZXqPrkscN6l',
  110. isLogin:1
  111. },
  112. {
  113. name: `${this.$t('意见反馈')}`,
  114. url: '/pages/feedback/index',
  115. icon: 'Fh1tuCqkBQ1A20WTsiizSR9w4tQ4'
  116. },
  117. {
  118. name: `${this.$t('设置')}`,
  119. url: '/pages/my/set',
  120. icon: 'Fu3f2iRi5BspRfbVLPcw8ryWc4lu'
  121. }
  122. ]
  123. }
  124. },
  125. onShow() {
  126. this.car_info = uni.getStorageSync('car_info') || {};
  127. const user_token = storage.getUserToken()
  128. console.log(user_token)
  129. if(user_token){
  130. this.loadUserInfo()
  131. this.newsNumFn()
  132. }
  133. },
  134. onLoad() {
  135. this.statusBarHeight = uni.getSystemInfoSync().statusBarHeight || 0
  136. this.serviceFn()
  137. },
  138. methods: {
  139. async serviceFn(){
  140. let {data} = await request.postApi(config.API_FLK_INDEX_SHOP_SETTING,{})
  141. console.log(data)
  142. if(data.code == 200){
  143. this.shopInfo = data.data
  144. }
  145. },
  146. async newsNumFn(){
  147. let {data} = await request.postApi(config.API_FLK_MESSAGE_UNREAD_COUNT,{})
  148. if(data.code == 200){
  149. this.newsList = data.data
  150. }
  151. },
  152. async loadUserInfo() {
  153. const userInfo = storage.getUserInfoData()
  154. this.setData({
  155. userInfo
  156. })
  157. let {
  158. data
  159. } = await http.postApi(config.API_USER_INFO, {})
  160. if (data.code == 200) {
  161. this.userInfo = data.data.userInfo
  162. storage.setUserInfoData(this.userInfo)
  163. }
  164. },
  165. loginHandle() {
  166. if (!this.userInfo.nickname) {
  167. uni.navigateTo({
  168. url: '/pages/loginRegister/login'
  169. })
  170. }
  171. },
  172. checkHandle_combo() {
  173. if(!this.car_info.sold_time){
  174. this.$msg(this.$t('您还未购买车辆,购买车辆才可享受换电套餐'))
  175. return
  176. }
  177. if(!this.car_info.battery_tag_info.tag_code){
  178. this.$msg(this.$t('当前电池存在未知型号,请联系门店处理!'))
  179. return
  180. }
  181. if(!this.car_info.car_sn){
  182. this.$msg(this.$t('您还未绑定车辆!'))
  183. return
  184. }
  185. if(this.car_info.exchange_package_info){
  186. uni.navigateTo({
  187. url: `/pages/package/package`
  188. })
  189. return
  190. }
  191. this.comboDialoginfo.showConfirm = true
  192. },
  193. dialogConfirm(type) {
  194. uni.navigateTo({
  195. url: `/pages/batteryPackage/batteryPackage`
  196. })
  197. },
  198. routerLink({
  199. url,
  200. jumpCheck,
  201. statues,
  202. isLogin
  203. }) {
  204. if(isLogin && !uni.getStorageSync('storage_user_token')){
  205. uni.navigateTo({
  206. url:'/pages/loginRegister/login'
  207. })
  208. return
  209. }
  210. if(statues){
  211. let _this = this
  212. if(!_this.shopInfo.link_phone){
  213. this.$msg(this.$t('未获取到手机号码'))
  214. return
  215. }
  216. uni.showModal({
  217. content: `${this.$t('您是否要拨打电话')} ${_this.shopInfo.link_phone}?`,
  218. confirmText: this.$t('确定'),
  219. success: (res) => {
  220. if (res.confirm) {
  221. uni.makePhoneCall({
  222. phoneNumber: _this.shopInfo.link_phone,
  223. })
  224. }
  225. },
  226. })
  227. return
  228. }
  229. if (jumpCheck) {
  230. this[`checkHandle_${jumpCheck}`]()
  231. return
  232. }
  233. uni.navigateTo({
  234. url
  235. })
  236. }
  237. }
  238. }
  239. </script>
  240. <style lang="scss" scoped>
  241. @import './my.scss';
  242. .news{
  243. position: relative;
  244. .num {
  245. position: absolute;
  246. right: -6rpx;
  247. top: -6rpx;
  248. min-width: 28rpx;
  249. height: 28rpx;
  250. font-size: 18rpx;
  251. display: flex;
  252. align-items: center;
  253. justify-content: center;
  254. color: #fff;
  255. line-height: 1;
  256. background-color: #FA2918;
  257. border-radius: 50%;
  258. z-index: 9999;
  259. }
  260. }
  261. </style>