index.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382
  1. <template>
  2. <view class="tabbar-wrap">
  3. <view class="tabbar">
  4. <view
  5. v-for="(item, index) in tabs"
  6. :key="index"
  7. class="tab-item"
  8. @tap="routerPush(item.url)"
  9. >
  10. <img :src="curtTab === item.name ? item.activeIcon : item.icon" class="tab-icon"/>
  11. <text :class="['base-text', curtTab === item.name && 'checked']">{{ item.label }}</text>
  12. </view>
  13. <view v-if="!isScanCondeRentalCar" class="center-entrance" @tap="navToInputPage">
  14. <img src="https://qiniu.bms16.com/Fm_kDVr1TIeIbbBW6-5bz0r-cECO" style="width: 122rpx; height: 122rpx;"/>
  15. <!-- <img src="https://qiniu.bms16.com/FhCHLz8rQJ5mpJ6nUA4RbKiVkUOo" style="width: 120rpx; height: 24rpx;"/> -->
  16. </view>
  17. <view v-else class="center-entrance" @tap="navToInputPage">
  18. <img src="https://qiniu.bms16.com/FqcCjRjhzHFUkZj76SMHNXCZHwb3" style="width: 122rpx; height: 122rpx;margin-bottom: 14rpx;"/>
  19. <view class="scan-text">扫一扫</view>
  20. </view>
  21. </view>
  22. </view>
  23. </template>
  24. <script>
  25. var app = getApp();
  26. const storage = require('@/common/storage.js');
  27. const http = require('@/common/http.js');
  28. const config = require('../../common/config.js');
  29. const common = require('../../common/common.js');
  30. const appWhiteListFilter = require('../../common/appWhiteListFilter.js');
  31. import homeIcon from '@/static/resource/images/home-w.png';
  32. import homeIconChecked from '@/static/resource/images/home_b.png';
  33. import myIcon from '@/static/resource/images/my_w.png';
  34. import myIconChecked from '@/static/resource/images/my-b.png';
  35. export default {
  36. props: {
  37. curtTab: {
  38. type: String,
  39. default: 'home'
  40. }
  41. },
  42. data() {
  43. return {
  44. tabs: [
  45. { label: '设备', name: 'home', url: '/pages/index/index',
  46. icon: '/static/resource/images/home-w.png',
  47. activeIcon: '/static/resource/images/home_b.png' ,
  48. },
  49. { label: '服务', name: 'service', url: '/pages/service/service',
  50. icon: '/static/resource/images/service_w.png',
  51. activeIcon: '/static/resource/images/home_b.png' ,
  52. },
  53. { label: '活动', name: 'active', url: '/pages/my/my',
  54. icon: '/static/resource/images/active_w.png',
  55. activeIcon: '/static/resource/images/home_b.png' ,
  56. },
  57. { label: '我的', name: 'my', url: '/pages/my/my',
  58. icon: '/static/resource/images/my_w.png',
  59. activeIcon: '/static/resource/images/home_b.png' ,
  60. },
  61. ],
  62. userInfo: {
  63. is_auth: 0,
  64. status: 0
  65. },
  66. plate_number: '',
  67. isScanCondeRentalCar: false,
  68. };
  69. },
  70. created: function () {
  71. if (appWhiteListFilter.isScanCondeRentalCar()) {
  72. this.setData({
  73. isScanCondeRentalCar: true
  74. })
  75. }
  76. },
  77. methods: {
  78. routerPush(url) {
  79. uni.switchTab({ url });
  80. },
  81. loadFaceToken() {
  82. const me = this
  83. http.postApi(config.API_USER_FACE_TOKEN, {}, (resp) => {
  84. if (resp.data.code === 200) {
  85. me.face_token = resp.data.data.token
  86. me.face_key = resp.data.data.key
  87. uni.navigateTo({
  88. url: '/pages/livenessView/livenessView?face_token=' + me.face_token +
  89. '&face_key=' + this.face_key,
  90. success: function(res) {},
  91. fail: function(res) {},
  92. complete: function(res) {},
  93. })
  94. } else {
  95. common.simpleToast(resp.data.msg)
  96. }
  97. })
  98. },
  99. _getParams() {
  100. return new Promise((reslove ,reject) => {
  101. http.postApi(config.API_DAYHIRE_CAR_CAR_LIST, {}, res => {
  102. const { data = [], wait_active_predetermine = null } = res.data.data
  103. const obj = {
  104. carList: data,
  105. wait_active_predetermine,
  106. order_status: data.length ? data[0].order_status : 0
  107. }
  108. reslove(obj)
  109. })
  110. })
  111. },
  112. loadScanCode(location,battery_sn) {
  113. const pData = {
  114. longitude: location.longitude,
  115. latitude: location.latitude,
  116. battery_sn: battery_sn
  117. }
  118. const me = this
  119. http.postApi(config.API_DAYHIRE_CAR_CAR_INFO, pData, (resp) => {
  120. uni.hideLoading()
  121. if (resp.data.code === 200) {
  122. const timestamp = Date.now(); // 获取当前时间戳(毫秒)
  123. const isOffline = (Math.floor(timestamp / 1000) - resp.data.data.last_comm_time) > 1800
  124. me.plate_number = resp.data.data.license_plate_number
  125. if (resp.data.data.last_comm_time === 0 || isOffline) {
  126. common.simpleToast('此车辆已离线,请选择其他车辆')
  127. } else {
  128. let carInfo = JSON.stringify(resp.data.data)
  129. const car_model = resp.data.data.model_info.car_model
  130. const model_images = resp.data.data.model_info.model_images.split(',')
  131. const return_imgs = resp.data.data.return_imgs
  132. var model_id = resp.data.data.model_info.model_id
  133. if (resp.data.data.has_owner) { //车辆正在被使用
  134. if (resp.data.data.is_mine) { //是本人在使用
  135. uni.showModal({
  136. title: '提示',
  137. content: '已有正在使用的车辆,是否跳转至车辆详情页?',
  138. cancelText: '取消',
  139. confirmText: '确定',
  140. success: function(res) {
  141. this.isReturnHome = false
  142. uni.navigateTo({
  143. url: '/pages/battery/battery?plate_number=' +
  144. this.plate_number
  145. });
  146. },
  147. fail: function(res) {},
  148. complete: function(res) {},
  149. })
  150. } else {
  151. common.simpleToast('此车辆正在被使用')
  152. }
  153. } else {
  154. if (me.order_sn&&me.order_sn != '') {
  155. if (this.order_model_id != model_id) { // 预租车型与之前预约车型不一致
  156. common.simpleToast('与预约车型不符')
  157. } else {
  158. this.isReturnHome = false
  159. uni.navigateTo({
  160. url: '/pages/activation/activation?plate_number=' +
  161. this.plate_number + '&order_sn=' + this.order_sn +
  162. '&car_model=' + car_model + '&model_image=' +
  163. model_images[0] + '&return_imgs=' + JSON.stringify(
  164. return_imgs),
  165. fail() {}
  166. })
  167. }
  168. } else {
  169. this.setData({
  170. flashValue: 'off',
  171. isReturnHome: false
  172. })
  173. // this.isReturnHome = false
  174. uni.redirectTo({
  175. url: '/pages/carIntroduce/carIntroduce?carInfo=' +
  176. encodeURIComponent(carInfo) + '&plate_number=' + this
  177. .plate_number,
  178. fail() {}
  179. })
  180. }
  181. }
  182. }
  183. } else {
  184. common.simpleToast(resp.data.msg)
  185. }
  186. })
  187. },
  188. async navToInputPage() {
  189. const me = this
  190. const { userInfo = '' } = storage.getUserInfoData()
  191. if (userInfo.is_auth - 0 == 1 && userInfo.status - 0 == 2) {
  192. const params = await this._getParams()
  193. var plate_number = params.carList.length!=0&&params.carList[0].license_plate_number?params.carList[0].license_plate_number:me.plate_number
  194. if (params.wait_active_predetermine != null) { //预约车辆为待激活状态
  195. if (params.wait_active_predetermine.order_status == 2) {
  196. uni.showModal({
  197. title: '提示',
  198. content: '您有等待激活的车辆,是否跳转至订单详情页?',
  199. cancelText: '取消',
  200. confirmText: '确定',
  201. success: function(res) {
  202. if (res.confirm) {
  203. uni.navigateTo({
  204. url: '/pages/orderStatus/orderStatus?order_sn=' + params
  205. .wait_active_predetermine.order_sn
  206. });
  207. }
  208. }
  209. })
  210. }
  211. return
  212. }
  213. if (params.carList.length == 0) {
  214. if(me.isScanCondeRentalCar) {
  215. uni.scanCode({
  216. onlyFromCamera: true,
  217. success: function (res) {
  218. var location = uni.getStorageSync('user_current_location')
  219. me.loadScanCode(location,res.result)
  220. },
  221. fail: function (res) { },
  222. complete: function (res) { },
  223. })
  224. } else {
  225. uni.navigateTo({
  226. url: '/pages/scanCar/scanCar'
  227. });
  228. }
  229. } else {
  230. if (params.order_status == 3 || params.order_status == 4) { // 车辆状态为未激活
  231. uni.showModal({
  232. title: '提示',
  233. content: '已有正在使用的车辆,是否跳转至车辆详情页?',
  234. cancelText: '取消',
  235. confirmText: '确定',
  236. success: function(res) {
  237. if (res.confirm) {
  238. const isReturnIndex = false
  239. uni.navigateTo({
  240. url: '/pages/battery/battery?plate_number=' + plate_number +'&isReturnIndex=' + isReturnIndex
  241. });
  242. }
  243. }
  244. })
  245. } else if (params.order_status == 5) {
  246. uni.showModal({
  247. title: '提示',
  248. content: '请等待商家确认还车,是否跳转至订单详情页?',
  249. cancelText: '取消',
  250. confirmText: '确定',
  251. success: function(res) {
  252. if (res.confirm) {
  253. uni.navigateTo({
  254. url: '/pages/orderStatus/orderStatus?order_sn=' + params
  255. .carList[0].order_sn
  256. });
  257. }
  258. }
  259. })
  260. } else {
  261. uni.showModal({
  262. title: '提示',
  263. content: '已有正在进行的订单,是否跳转至订单详情页?',
  264. cancelText: '取消',
  265. confirmText: '确定',
  266. success: function(res) {
  267. if (res.confirm) {
  268. uni.navigateTo({
  269. url: '/pages/orderStatus/orderStatus?order_sn=' + params
  270. .carList[0].order_sn
  271. });
  272. }
  273. }
  274. })
  275. }
  276. }
  277. } else if (userInfo.is_auth == 1 && userInfo.status != 2) {
  278. uni.showModal({
  279. title: '身份认证提示',
  280. content: '尚未完成身份认证,是否进行身份认证?',
  281. cancelText: '取消',
  282. confirmText: '确定',
  283. success: function(res) {
  284. if (res.confirm) {
  285. me.loadFaceToken()
  286. }
  287. }
  288. })
  289. } else {
  290. uni.showModal({
  291. title: '提示',
  292. content: '您还未登录,请先登录',
  293. showCancel: false,
  294. confirmText: '确定',
  295. success: function(res) {
  296. if (res.confirm) {
  297. //#ifdef MP-ALIPAY
  298. uni.navigateTo({
  299. url: '/pages/phoneLogin/phoneLogin',
  300. })
  301. //#endif
  302. //#ifdef MP-WEIXIN
  303. uni.navigateTo({
  304. url: '/pages/login/login',
  305. })
  306. //#endif
  307. }
  308. }
  309. })
  310. }
  311. }
  312. }
  313. };
  314. </script>
  315. <style scoped>
  316. .tabbar-wrap {
  317. position: fixed;
  318. bottom: 0;
  319. left: 0;
  320. right: 0;
  321. border-bottom: env(safe-area-inset-bottom) solid #fff;
  322. }
  323. .tabbar {
  324. height: 188rpx;
  325. width: 100%;
  326. /* background: url('https://qiniu.bms16.com/FiYy2ZOV_hGSJx32YAQSLZSbAOFq') no-repeat; */
  327. background: url('https://qiniu.bms16.com/Fk8jEU5-RbARagKDYZy0tKWErKNF') no-repeat;
  328. background-size: 100%;
  329. display: flex;
  330. justify-content: space-between;
  331. padding-top: 60rpx;
  332. position: relative;
  333. bottom: -5rpx;
  334. }
  335. .tab-item {
  336. display: flex;
  337. flex-direction: column;
  338. align-items: center;
  339. justify-content: center;
  340. flex: 1;
  341. }
  342. .tab-item:nth-child(2) {
  343. margin-right: 20%;
  344. }
  345. .tab-icon {
  346. width: 24px;
  347. height: 24px;
  348. margin-bottom: 4px;
  349. }
  350. .center-entrance {
  351. position: absolute;
  352. left: 50%;
  353. transform: translateX(-50%);
  354. bottom: 28rpx;
  355. display: flex;
  356. flex-direction: column;
  357. }
  358. .scan-text {
  359. font-size: 10px;
  360. text-align: center;
  361. color: #828DA2;
  362. font-weight: 600;
  363. }
  364. .base-text {
  365. font-family: PingFangSC, PingFang SC;
  366. font-weight: 500;
  367. font-size: 22rpx;
  368. color: #9EA9BB;
  369. line-height: 20rpx;
  370. text-align: center;
  371. font-style: normal;
  372. }
  373. .checked {
  374. color: #060809;
  375. }
  376. </style>