my.vue 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <template>
  2. <view class="container-view">
  3. <view class="user-switch-row">
  4. <view class="name-wrap">{{ userInfo.name }}</view>
  5. <image class="message" @tap="routerLink({ url: '/pages/message/index' })"
  6. :src="QINIU_URL + 'FghCVNMWDBKJpqbIrqoxT-de9Has'" />
  7. </view>
  8. <view class="user-info-wrap">
  9. <image class="head-img" :src="userInfo.headImg" />
  10. <view class="user-name">{{ userInfo.userName }}</view>
  11. <view class="e-mail">{{ userInfo.eMail }}</view>
  12. </view>
  13. <view class="common-tabs">
  14. <view class="item" v-for="(item, index) in commonTabs" :key="index" @click="routerLink(item)">
  15. <image :src="QINIU_URL + item.icon" class="icon" />
  16. <view class="name">{{ item.name }}</view>
  17. </view>
  18. </view>
  19. <view class="tabs-wrap">
  20. <view class="tab-item" v-for="(item, index) in baseTabs" :key="index" @click="routerLink(item)">
  21. <image :src="QINIU_URL + item.icon" class="icon" />
  22. <view class="name">{{ item.name }}</view>
  23. </view>
  24. </view>
  25. <Confirm
  26. v-model="comboDialoginfo.showConfirm"
  27. :dialogInfo="comboDialoginfo"
  28. @confirm="dialogConfirm"
  29. />
  30. </view>
  31. </template>
  32. <script>
  33. import Confirm from '@/component/comPopup/Confirm'
  34. import { QINIU_URL } from '@/common/constant'
  35. export default {
  36. components: {
  37. Confirm
  38. },
  39. data() {
  40. return {
  41. QINIU_URL,
  42. comboDialoginfo: {
  43. showConfirm: false,
  44. title: '温馨提示',
  45. opType: 'combo',
  46. text: '您还未购买换电套餐,是否前往进行换电套餐?',
  47. confirmBtnText: '前往购买',
  48. showCancelButton: false
  49. },
  50. userInfo: {
  51. name: 'Real name',
  52. userName: 'Kabuda-4',
  53. eMail: '1007929522@Mail.com',
  54. headImg: 'https://tse4-mm.cn.bing.net/th/id/OIP-C.lmGw9aECIAIIvJK_U92f_gAAAA?w=169&h=180&c=7&r=0&o=5&pid=1.7'
  55. }
  56. }
  57. },
  58. computed: {
  59. commonTabs() {
  60. return [
  61. { name: `${this.$t('我的车辆')}`, url: '', icon: 'Fp6G-Kzb-YUGkP2WR-kjTlIbbTj1' },
  62. { name: `${this.$t('用车人')}`, url: '', icon: 'Fp6G-Kzb-YUGkP2WR-kjTlIbbTj1' },
  63. { name: `${this.$t('换电套餐')}`, jumpCheck: 'combo', url: '', icon: 'Fp6G-Kzb-YUGkP2WR-kjTlIbbTj1' },
  64. ]
  65. },
  66. baseTabs() {
  67. const lang = t => this.$t(t)
  68. return [
  69. { name: `${lang('我的订单')}`, url: '', icon: 'Fp6G-Kzb-YUGkP2WR-kjTlIbbTj1' },
  70. { name: `${lang('换电记录')}`, url: '', icon: 'Fp6G-Kzb-YUGkP2WR-kjTlIbbTj1' },
  71. { name: `${lang('关于我们')}`, url: '', icon: 'Fp6G-Kzb-YUGkP2WR-kjTlIbbTj1' },
  72. { name: `${lang('客服中心')}`, url: '', icon: 'Fp6G-Kzb-YUGkP2WR-kjTlIbbTj1' },
  73. { name: `${lang('设置')}`, url: '/pages/my/set', icon: 'Fp6G-Kzb-YUGkP2WR-kjTlIbbTj1' },
  74. ]
  75. }
  76. },
  77. methods: {
  78. checkHandle_combo() {
  79. this.comboDialoginfo.showConfirm = true
  80. },
  81. dialogConfirm(type) {
  82. console.log('dialogConfirm', type)
  83. },
  84. routerLink({ url, jumpCheck }) {
  85. if (jumpCheck) {
  86. this[`checkHandle_${jumpCheck}`]()
  87. return
  88. }
  89. uni.navigateTo({ url })
  90. }
  91. }
  92. }
  93. </script>
  94. <style lang="scss" scoped>
  95. @import './my.scss';
  96. </style>