index.vue 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  1. <template>
  2. <view>
  3. <!-- ===================================== tabbar ===================================== -->
  4. <u-navbar
  5. title-color="#fff"
  6. :custom-back="customBack"
  7. :border-bottom="false"
  8. back-icon-color="#CCE8FF"
  9. :background="{ background: '#008CFF' }"
  10. title="我的"
  11. />
  12. <!-- ===================================== 头像 ===================================== -->
  13. <view class="u-flex user-box u-p-l-30 u-p-r-20 u-p-b-30 u-p-t-30">
  14. <view class="u-m-r-24" @click="clickHead">
  15. <u-avatar :src="userInfo.headImgUrl || userInfo.avatar || pic" size="140"></u-avatar>
  16. </view>
  17. <view class="u-flex-1">
  18. <view class="u-font-18 u-p-b-20">{{ userInfo.nickname || userInfo.mobile }}</view>
  19. <view class="u-font-14">手机号:{{ userInfo.mobile || '暂无' }}</view>
  20. </view>
  21. </view>
  22. <view class="u-m-t-20">
  23. <u-cell-group>
  24. <u-cell-item title="我的车辆" @click="openPage('pages/myCars/myCars', true)">
  25. <u-icon slot="icon" custom-prefix="custom-icon" size="35" name="wodecheliang"></u-icon>
  26. </u-cell-item>
  27. <u-cell-item title="停车记录" @click="openPage('pages/center/order/order')">
  28. <u-icon slot="icon" custom-prefix="custom-icon" size="35" name="tingchejilu"></u-icon>
  29. </u-cell-item>
  30. </u-cell-group>
  31. </view>
  32. <view class="u-m-t-20">
  33. <u-cell-group>
  34. <u-cell-item title="包月" @click="openPage('pages/center/monthly/monthly')">
  35. <u-icon slot="icon" custom-prefix="custom-icon" size="35" name="baoyue"></u-icon>
  36. </u-cell-item>
  37. </u-cell-group>
  38. </view>
  39. <view class="u-m-t-20">
  40. <u-cell-group>
  41. <u-cell-item title="消息中心" @click="openPage('pages/message/message', true)">
  42. <u-icon slot="icon" custom-prefix="custom-icon" size="35" name="xiaoxi"></u-icon>
  43. <u-badge type="success" :count="messageNum" :offset="[38, 80]"></u-badge>
  44. </u-cell-item>
  45. </u-cell-group>
  46. </view>
  47. <view class="u-m-t-20 u-m-b-40">
  48. <u-cell-group>
  49. <u-cell-item title="拨打客服电话" @click="callPhoneShow = true">
  50. <u-icon slot="icon" custom-prefix="custom-icon" size="35" name="dianhua"></u-icon>
  51. </u-cell-item>
  52. </u-cell-group>
  53. </view>
  54. <u-select v-model="callPhoneShow" :list="callPhoneList" @confirm="phoneCall"></u-select>
  55. <template v-if="projectFlag !== 'zhenning'">
  56. <view class="u-m-t-20">
  57. <u-cell-group>
  58. <u-cell-item icon="coupon" title="我的优惠券" @click="openPage('/pages/center/coupon/myCoupon/myCoupon')"></u-cell-item>
  59. </u-cell-group>
  60. </view>
  61. </template>
  62. <!-- ===================================== 登出提示 ===================================== -->
  63. <u-modal
  64. v-model="logoutPop"
  65. :title-style="{ color: '#404040' }"
  66. title="登出提示"
  67. :show-confirm-button="true"
  68. confirm-text="确认"
  69. :confirm-style="{ backgroundColor: '#3397FA', color: '#fff' }"
  70. :show-cancel-button="true"
  71. cancel-text="取消"
  72. @cancel="logoutPop = false"
  73. :cancel-style="{ backgroundColor: '#EBF1FF', color: '#3397FA' }"
  74. @confirm="loginOut"
  75. >
  76. <view class="slot-content">
  77. <view class="pay-tips">你确认退出登录吗?</view>
  78. </view>
  79. </u-modal>
  80. <u-toast ref="uToast" />
  81. </view>
  82. </template>
  83. <script>
  84. export default {
  85. data() {
  86. return {
  87. // 默认头像
  88. pic: '/static/img/default-avatar.png',
  89. // 用户信息
  90. userInfo: {},
  91. logoutPop: false,
  92. messageNum: 0,
  93. callPhoneShow: false,
  94. callPhoneList: []
  95. };
  96. },
  97. onLoad() {},
  98. onShow() {
  99. this.getMsgNum();
  100. this.getDict();
  101. if (this.vuex_hasLogin) {
  102. this.userInfo = this.vuex_user;
  103. if (this.vuex_wxinfo) {
  104. this.userInfo = Object.assign(this.userInfo, this.vuex_wxinfo);
  105. }
  106. } else {
  107. this.userInfo = {};
  108. }
  109. },
  110. methods: {
  111. /**
  112. * 获取客服电话字典
  113. */
  114. getDict() {
  115. this.$u.api
  116. .getDictApi({
  117. type: 'customer_service_phone'
  118. })
  119. .then((res) => {
  120. if (res.code === 200) {
  121. this.callPhoneList = res.data.map((item) => {
  122. return {
  123. value: item.dictValue,
  124. label: item.dictLabel
  125. };
  126. });
  127. }
  128. });
  129. },
  130. /**
  131. * 打开新页面
  132. * @param {String} path 跳转路径
  133. * @param {flag} flag 返回存储标识
  134. * */
  135. openPage(path, flag) {
  136. this.$u.route({
  137. url: path
  138. });
  139. if (flag) {
  140. uni.setStorage({
  141. key: 'messageBack',
  142. data: 'pages/center/index'
  143. });
  144. }
  145. },
  146. // 获取消息未读条数
  147. getMsgNum() {
  148. this.$u.api.getIndexData().then((res) => {
  149. if (res.code === 200) {
  150. let num = 0;
  151. if (res.data.news) {
  152. res.data.news.forEach((item) => {
  153. if (item.readFlag == 0) {
  154. num += 1;
  155. }
  156. });
  157. }
  158. this.messageNum = num;
  159. } else {
  160. this.$refs.uToast.show({
  161. title: res.msg,
  162. type: 'error'
  163. });
  164. }
  165. });
  166. },
  167. // tabbar 返回
  168. customBack() {
  169. this.$u.route({
  170. type: 'switchTab',
  171. url: 'pages/index/index'
  172. });
  173. },
  174. // 拨打电话
  175. phoneCall(phone) {
  176. uni.makePhoneCall({
  177. phoneNumber: phone[0].value || '0851-38222696'
  178. });
  179. },
  180. // 登出
  181. loginOut() {
  182. this.$u.api.codeV2Api.logoutApi().then((res) => {
  183. if (res.code === 200) {
  184. this.$u.vuex('vuex_hasLogin', false);
  185. this.$u.vuex('vuex_token', '');
  186. this.$u.vuex('vuex_user', null);
  187. uni.removeStorage({
  188. key: 'jumpUrl'
  189. });
  190. uni.removeStorage({
  191. key: 'backUrl'
  192. });
  193. setTimeout(() => {
  194. this.logoutPop = false;
  195. uni.navigateTo({
  196. url: '/pages/center/phoneLogin/phoneLogin'
  197. });
  198. }, 500);
  199. } else {
  200. this.$refs.uToast.show({
  201. title: res.msg || '登出失败',
  202. type: 'error'
  203. });
  204. }
  205. });
  206. },
  207. // 点击头像
  208. clickHead() {
  209. if (this.$store.state.vuex_hasLogin) {
  210. this.logoutPop = true;
  211. }
  212. }
  213. }
  214. };
  215. </script>
  216. <style lang="scss" scoped>
  217. page {
  218. background-color: $my-page-bg-color;
  219. }
  220. .user-box {
  221. position: relative;
  222. background-color: $my-main-color;
  223. color: #fff;
  224. &:after {
  225. position: absolute;
  226. right: 0;
  227. bottom: 0;
  228. content: '';
  229. background: url('/static/img/center-top-bg.png') no-repeat;
  230. background-position: -90rpx 0;
  231. width: 305rpx;
  232. height: 145rpx;
  233. z-index: 999;
  234. }
  235. }
  236. .u-avatar {
  237. border: 10rpx solid #4caeff;
  238. }
  239. .u-cell-box /deep/ .u-cell__left-icon-wrap,
  240. .u-cell-box /deep/ .custom-icon {
  241. color: $my-main-color;
  242. margin-right: 10rpx;
  243. }
  244. .pay-tips {
  245. text-align: center;
  246. margin: 30rpx 0;
  247. }
  248. </style>