my_back.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525
  1. <template>
  2. <view class="container-view">
  3. <view class="user">
  4. <view v-if="user_token" class="flex-row" style="flex-direction: column;">
  5. <!-- #ifdef MP-ALIPAY-->
  6. <view @tap="onChooseImg"><img class="user-img" :src="avatarUrl" /></view>
  7. <!-- #endif -->
  8. <!-- #ifdef MP-WEIXIN -->
  9. <view>
  10. <button class="head_img" style="border: 4rpx solid #ffffff;" open-type="chooseAvatar"
  11. @chooseavatar="onChooseAvatar">
  12. <image class="head_img" :src="avatarUrl"></image>
  13. </button>
  14. </view>
  15. <!-- #endif -->
  16. <view class="user-information flex-row" style="flex-direction: column;">
  17. <view class="user-login">{{maskPhone}}</view>
  18. <view v-if="userInfo.is_auth==1&&userInfo.status!=1&&userInfo.status!=2"
  19. @click.native.stop="navToAuthIdentity" class="user-status">实名认证</view>
  20. <!-- 用户状态 userInfo.status 0: 未身份认证 1: 申请身份认证 2: 身份认证通过,账户正常 3: 身份认证不通过 4: 警告 5: 冻结 -->
  21. <view v-else-if="userInfo.status==2" class="ok-status">
  22. 已实名
  23. <img src="https://qiniu.bms16.com/Fim_Fx9ghw2HiX9BI60GTmYKVTHB" />
  24. </view>
  25. </view>
  26. </view>
  27. <view @tap="navToLoignPage" v-if="!user_token" class="flex-row" style="flex-direction: column;">
  28. <view ><img class="user-img" :src="avatarUrl" /></view>
  29. <view class="user-information flex-row" style="flex-direction: column;">
  30. <view class="user-phone">请点击登录</view>
  31. </view>
  32. </view>
  33. <!-- <view class="my-vip">
  34. <view class="vip-text">开卡立享骑行折扣</view>
  35. <view @tap="bindNotShow" class="activate-vip">立即开通</view>
  36. </view> -->
  37. </view>
  38. <view class="option">
  39. <view class="flex-row flex-between option-first">
  40. <view @tap="navToPage" data-url="/pages/wallet/wallet" class="flex-column my_function">
  41. <image class="my_icon" src="https://qiniu.bms16.com/Fkrp0-SQwgLdu2tPmbudScdRIg9A"></image>
  42. <view class="my_title_o">我的钱包</view>
  43. </view>
  44. <!-- <view @tap="bindNotShow" class="flex-column my_function">
  45. <image class="my_icon" src="https://qiniu.bms16.com/Fmt9-v5f8SiVadoFgNJol4z8bIGw"></image>
  46. <view class="my_title_o">优惠券</view>
  47. </view> -->
  48. <view @tap="navToPage" data-url="/pages/order/order" class="flex-column my_function">
  49. <image class="my_icon" src="https://qiniu.bms16.com/FpiqF1dfAWmUkWRbR1wcO3JNSKIL"></image>
  50. <view class="my_title_o">租车订单</view>
  51. </view>
  52. <!-- <view @tap="navToPage" data-url="/pages/exchangeGuide/exchangeGuide" class="flex-column my_function">
  53. <image class="my_icon" src="https://qiniu.bms16.com/FpiqF1dfAWmUkWRbR1wcO3JNSKIL"></image>
  54. <view class="my_title_o">租车订单</view>
  55. </view> -->
  56. <view @tap="navToBattery" class="flex-column my_function">
  57. <image class="my_icon" src="https://qiniu.bms16.com/FjNIrru2jMEzfKEwZXRmisggxCII"></image>
  58. <view class="my_title_o">我的车辆</view>
  59. </view>
  60. <view @tap="navToPage" data-url="/pages/exchangeRecord/exchangeRecord" class="flex-column my_function">
  61. <image class="my_icon" src="https://qiniu.bms16.com/FnOA-7WRsxwMh3FiFLY5FWh3rfAY"></image>
  62. <view class="my_title_o">换电记录</view>
  63. </view>
  64. <!-- 判断是否绑定车牌才显示 我的车辆-->
  65. <!-- <view v-if="(car_list && (car_list.order_status == 2 || car_list.order_status == 3 || car_list.order_status == 4 ||car_list.order_status == 5))"
  66. @tap="navToBattery"
  67. class="flex-column my_function"> -->
  68. </view>
  69. <view class="flex-row flex-between option-first">
  70. <!-- #ifdef MP-ALIPAY-->
  71. <view @tap="bindNotShow" class="flex-column my_function">
  72. <image class="my_icon" src="https://qiniu.bms16.com/FgIm7yFZgw4YO5DiGlnHV2UXxjJr"></image>
  73. <view class="my_title_t">客服中心</view>
  74. </view>
  75. <!-- #endif -->
  76. <!-- #ifdef MP-WEIXIN -->
  77. <button open-type="contact" plain="true" style="border: none;"
  78. class="flex-column my_function service-btn">
  79. <image class="my_icon" src="https://qiniu.bms16.com/FgIm7yFZgw4YO5DiGlnHV2UXxjJr"></image>
  80. <view class="my_title_t">客服中心</view>
  81. </button>
  82. <!-- #endif -->
  83. <view @tap="navToPage" data-url="/pages/feedback/feedback" class="flex-column my_function">
  84. <image class="my_icon" src="https://qiniu.bms16.com/Ft6hjfFCvqNF_ReaSRAmngZLcNz7"></image>
  85. <view class="my_title_t">问题反馈</view>
  86. </view>
  87. <view @tap="loadNavToMy" class="flex-column my_function">
  88. <image class="my_icon" src="https://qiniu.bms16.com/FmjP9FC6J8kXeK0i2ox0zgLkOiow"></image>
  89. <view class="my_title_t">关于我们</view>
  90. </view>
  91. <view @tap="loadNavToInstall" class="flex-column my_function">
  92. <image class="my_icon" src="https://qiniu.bms16.com/FumqzeUKKbdeMwYew5PtfffC5lXP"></image>
  93. <view class="my_title_t">基础设置</view>
  94. </view>
  95. </view>
  96. </view>
  97. <!-- #ifdef MP-WEIXIN -->
  98. <CustomTabbar curtTab="my" />
  99. <!-- #endif -->
  100. </view>
  101. </template>
  102. <script>
  103. var config = require('../../common/config.js');
  104. var http = require('../../common/http.js');
  105. var common = require('../../common/common.js');
  106. var storage = require('../../common/storage.js')
  107. const defaultAvatarUrl = 'https://qiniu.bms16.com/FpzmRTePsa2QSxemAbc-xWdzSsn1'
  108. import CustomTabbar from '@/component/customTabbar/index';
  109. export default {
  110. data() {
  111. return {
  112. user_token: '',
  113. avatarUrl: defaultAvatarUrl,
  114. userInfo: {},
  115. trust_deposit: {},
  116. maskPhone: '',
  117. app_version: '',
  118. appConfig: null,
  119. face_token: '',
  120. face_key: '',
  121. myLocation: {
  122. latitude: null,
  123. longitude: null
  124. },
  125. car_list: {
  126. }
  127. };
  128. }
  129. /**
  130. * 生命周期函数--监听页面加载
  131. */
  132. ,
  133. onLoad: function(options) {
  134. const appConfig = storage.getAppConfig()
  135. this.app_version = config.APP_VERSION
  136. this.appConfig = appConfig
  137. const locationStr = uni.getStorageSync('user_current_location')
  138. if (locationStr) {
  139. this.myLocation = locationStr;
  140. }
  141. },
  142. components: { CustomTabbar },
  143. /**
  144. * 生命周期函数--监听页面显示
  145. */
  146. onShow: function() {
  147. const appConfig = storage.getAppConfig()
  148. const user_token = storage.getUserToken()
  149. this.user_token = user_token
  150. if (this.user_token) {
  151. this.loadUserInfo()
  152. }
  153. // 监听用户车辆是否解绑
  154. this.car_list = uni.getStorageSync('user_car_list') || null
  155. // #ifdef MP-ALIPAY
  156. if (typeof this.$scope.getTabBar === 'function' && this.$scope.getTabBar()) {
  157. this.$scope.getTabBar().setData({
  158. curtTab: 1
  159. })
  160. }
  161. // #endif
  162. },
  163. // 分享给好友
  164. onShareAppMessage: function(res) { //发送给朋友
  165. return {
  166. title: this.appConfig.app_name,
  167. path: 'pages/my/my',
  168. }
  169. },
  170. methods: {
  171. loadUserInfo() {
  172. var userInfo = storage.getUserInfoData()
  173. const maskPhone = common.maskPhoneNumber(userInfo.userInfo.phone)
  174. this.setData({
  175. userInfo: userInfo.userInfo,
  176. avatarUrl: userInfo.userInfo.headimg || this.avatarUrl,
  177. maskPhone: maskPhone
  178. })
  179. this.trust_deposit = userInfo.trust_deposit
  180. },
  181. loadIsLogin(url_page) {
  182. const user_token = storage.getUserToken()
  183. if (!user_token) {
  184. uni.showModal({
  185. title: '提示',
  186. content: '您还未登录,请先登录',
  187. showCancel: true,
  188. cancelText: '取消',
  189. confirmText: '确定',
  190. success: function(res) {
  191. if (res.confirm) {
  192. //#ifdef MP-ALIPAY
  193. uni.navigateTo({
  194. url: '/pages/phoneLogin/phoneLogin',
  195. })
  196. //#endif
  197. //#ifdef MP-WEIXIN
  198. uni.navigateTo({
  199. url: '/pages/login/login',
  200. })
  201. //#endif
  202. }
  203. },
  204. fail: function(res) {},
  205. complete: function(res) {},
  206. })
  207. } else {
  208. uni.navigateTo({
  209. url: url_page,
  210. })
  211. }
  212. },
  213. navToLogin() {
  214. uni.navigateTo({
  215. url: '/pages/login/login'
  216. });
  217. },
  218. navToPage(e) {
  219. const me = this
  220. const url = e.currentTarget.dataset.url;
  221. if (!url) {
  222. return;
  223. }
  224. if (me.userInfo.is_auth - 0 == 1 && me.userInfo.status - 0 == 2) {
  225. uni.navigateTo({
  226. url: url
  227. });
  228. } else if (me.userInfo.is_auth - 0 == 1 && me.userInfo.status - 0 != 2) {
  229. uni.showModal({
  230. title: '身份认证提示',
  231. content: '尚未完成身份认证,是否进行身份认证?',
  232. cancelText: '取消',
  233. confirmText: '确定',
  234. success: function(res) {
  235. if (res.confirm) {
  236. me.loadFaceToken()
  237. }
  238. },
  239. fail: function(res) {},
  240. complete: function(res) {},
  241. })
  242. } else {
  243. uni.showModal({
  244. title: '提示',
  245. content: '您还未登录,请先登录',
  246. showCancel: true,
  247. cancelText: '取消',
  248. confirmText: '确定',
  249. success: function(res) {
  250. if (res.confirm) {
  251. //#ifdef MP-ALIPAY
  252. uni.navigateTo({
  253. url: '/pages/phoneLogin/phoneLogin',
  254. })
  255. //#endif
  256. //#ifdef MP-WEIXIN
  257. uni.navigateTo({
  258. url: '/pages/login/login',
  259. })
  260. //#endif
  261. }
  262. },
  263. fail: function(res) {},
  264. complete: function(res) {},
  265. })
  266. }
  267. },
  268. loadNavToMy() {
  269. uni.navigateTo({
  270. url: '/pages/aboutMy/aboutMy?app_version=' + this.app_version,
  271. success: function(res) {},
  272. fail: function(res) {},
  273. complete: function(res) {},
  274. })
  275. },
  276. loadNavToInstall() {
  277. const user_token = storage.getUserToken()
  278. if (!user_token) {
  279. uni.showModal({
  280. title: '提示',
  281. content: '您还未登录,请先登录',
  282. showCancel: true,
  283. cancelText: '取消',
  284. confirmText: '确定',
  285. success: function(res) {
  286. if (res.confirm) {
  287. //#ifdef MP-ALIPAY
  288. uni.navigateTo({
  289. url: '/pages/phoneLogin/phoneLogin',
  290. })
  291. //#endif
  292. //#ifdef MP-WEIXIN
  293. uni.navigateTo({
  294. url: '/pages/login/login',
  295. })
  296. //#endif
  297. }
  298. },
  299. fail: function(res) {},
  300. complete: function(res) {},
  301. })
  302. } else {
  303. uni.navigateTo({
  304. url: '/pages/install/install?app_version=' + this.app_version,
  305. success: function(res) {},
  306. fail: function(res) {},
  307. complete: function(res) {},
  308. })
  309. }
  310. },
  311. onChooseImg() {
  312. uni.chooseImage({
  313. count: 1,
  314. sizeType: ['original', 'compressed'],
  315. sourceType: ['album', 'camera'],
  316. success: (res) => {
  317. this.avatarUrl = res.tempFilePaths[0]; // 选择图片后返回的路径
  318. }
  319. });
  320. },
  321. onChooseAvatar(e) {
  322. this.uploadAvatar(e.detail.avatarUrl)
  323. },
  324. uploadAvatar(avatarFile) {
  325. const me = this
  326. http.getApi(config.API_QINIU_UP_IMG_TOKEN, {}, function(response) {
  327. if (response.data.code === 200) {
  328. const token = response.data.data.token
  329. uni.uploadFile({
  330. url: config.QINIU_UPLOAD_SITE,
  331. filePath: avatarFile,
  332. name: 'file',
  333. formData: {
  334. token: token
  335. },
  336. success: function(res1) {
  337. var rtDataObj = JSON.parse(res1.data);
  338. const key = rtDataObj.key
  339. var imgUrl = config.QINIU_SITE + key
  340. me.setData({
  341. avatarUrl: imgUrl
  342. })
  343. http.postApi(config.API_REPORT_USER_INFO, {
  344. avatarUrl: imgUrl
  345. }, function(rs2) {
  346. if (rs2.data.code == 200) {}
  347. });
  348. },
  349. fail: function(res) {
  350. common.simpleToast('上传失败')
  351. uni.hideLoading()
  352. },
  353. })
  354. } else {
  355. common.simpleToast(response.data.msg)
  356. uni.hideLoading()
  357. }
  358. })
  359. },
  360. navToAuthIdentity() {
  361. http.postApi(config.API_USER_FACE_TOKEN, {}, (resp) => {
  362. if (resp.data.code === 200) {
  363. this.face_token = resp.data.data.token
  364. this.face_key = resp.data.data.key
  365. uni.navigateTo({
  366. url: '/pages/livenessView/livenessView?face_token=' + this.face_token +
  367. '&face_key=' + this.face_key,
  368. success: function(res) {},
  369. fail: function(res) {},
  370. complete: function(res) {},
  371. })
  372. } else {
  373. common.simpleToast(resp.data.msg)
  374. }
  375. })
  376. },
  377. navToLoignPage() {
  378. //#ifdef MP-ALIPAY
  379. uni.navigateTo({
  380. url: '/pages/phoneLogin/phoneLogin',
  381. })
  382. //#endif
  383. //#ifdef MP-WEIXIN
  384. uni.navigateTo({
  385. url: '/pages/login/login',
  386. })
  387. //#endif
  388. },
  389. bindNotShow() {
  390. common.simpleToast('功能暂未开放')
  391. },
  392. loadCarList() {
  393. return new Promise((resolve, reject) => {
  394. http.postApi(config.API_DAYHIRE_CAR_CAR_LIST, {}, (resp) => {
  395. if (resp.data.code !== 200) return
  396. const carList = resp.data.data.data || []
  397. const plate_number = carList.length > 0 ? carList[0].license_plate_number : ''
  398. let carData = {}
  399. if (carList.length) {
  400. carData = {
  401. plate_number
  402. }
  403. }
  404. resolve(carData)
  405. })
  406. })
  407. },
  408. navToBattery() {
  409. const me = this
  410. const user_token = storage.getUserToken()
  411. if (!user_token) {
  412. uni.showModal({
  413. title: '提示',
  414. content: '您还未登录,请先登录',
  415. showCancel: true,
  416. cancelText: '取消',
  417. confirmText: '确定',
  418. success: function(res) {
  419. if (res.confirm) {
  420. //#ifdef MP-ALIPAY
  421. uni.navigateTo({
  422. url: '/pages/phoneLogin/phoneLogin',
  423. })
  424. //#endif
  425. //#ifdef MP-WEIXIN
  426. uni.navigateTo({
  427. url: '/pages/login/login',
  428. })
  429. //#endif
  430. }
  431. },
  432. fail: function(res) {},
  433. complete: function(res) {},
  434. })
  435. } else {
  436. if(me.car_list&&me.car_list.order_status == 2) {
  437. uni.showModal({
  438. title: '提示',
  439. content: '是否前往激活车辆页面?',
  440. // showCancel: false,
  441. confirmText: '确定',
  442. success: function(res) {
  443. // 扫码租车
  444. uni.navigateTo({
  445. url: '/pages/activation/activation?plate_number=' + me
  446. .car_list.plate_number,
  447. success: function(res) {},
  448. fail: function(res) {},
  449. complete: function(res) {}
  450. });
  451. },
  452. fail: function(res) {},
  453. complete: function(res) {},
  454. })
  455. }else if(me.car_list&&me.car_list.order_status == 5) {
  456. uni.showModal({
  457. title: '提示',
  458. content: '请等待商家确认还车',
  459. showCancel: false,
  460. confirmText: '确定',
  461. success: function(res) {
  462. return false
  463. },
  464. fail: function(res) {},
  465. complete: function(res) {},
  466. })
  467. }else{
  468. this.loadCarList().then(carData => {
  469. console.log('carData', carData)
  470. uni.navigateTo({
  471. url: '/pages/battery/battery' + '?plate_number=' + carData.plate_number,
  472. success: function(res) {},
  473. fail: function(res) {},
  474. complete: function(res) {},
  475. })
  476. })
  477. }
  478. }
  479. },
  480. loadFaceToken() {
  481. const me = this
  482. http.postApi(config.API_USER_FACE_TOKEN, {}, (resp) => {
  483. if (resp.data.code === 200) {
  484. me.face_token = resp.data.data.token
  485. me.face_key = resp.data.data.key
  486. uni.navigateTo({
  487. url: '/pages/livenessView/livenessView?face_token=' + me.face_token +
  488. '&face_key=' + this.face_key,
  489. success: function(res) {},
  490. fail: function(res) {},
  491. complete: function(res) {},
  492. })
  493. } else {
  494. common.simpleToast(resp.data.msg)
  495. }
  496. })
  497. },
  498. }
  499. };
  500. </script>
  501. <style>
  502. @import './my.css';
  503. </style>