index.vue 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  1. <template>
  2. <view class="">
  3. <view style="height: 148rpx;"></view>
  4. <view class="tabbar-wrap">
  5. <view class="tabbar">
  6. <view v-for="(item, index) in tabs" :key="index" class="tab-item" @tap="routerPush(item.url)">
  7. <image :src="curtTab === item.name ? item.activeIcon : item.icon" class="tab-icon"></image>
  8. <text :class="['base-text', curtTab === item.name && 'checked']">{{ item.label }}</text>
  9. </view>
  10. <view v-if="!isScanCondeRentalCar" class="center-entrance" @tap="navToInputPages">
  11. <image src="https://qiniu.bms16.com/Fm_kDVr1TIeIbbBW6-5bz0r-cECO"
  12. style="width: 122rpx; height: 122rpx;"></image>
  13. <!-- <img src="https://qiniu.bms16.com/FhCHLz8rQJ5mpJ6nUA4RbKiVkUOo" style="width: 120rpx; height: 24rpx;"/> -->
  14. </view>
  15. <view v-else class="center-entrance" @tap="navToInputPages">
  16. <!-- <img src="https://qiniu.bms16.com/FqcCjRjhzHFUkZj76SMHNXCZHwb3" style="width: 122rpx; height: 122rpx;margin-bottom: 14rpx;"/> -->
  17. <image src="https://qiniu.bms16.com/FqcCjRjhzHFUkZj76SMHNXCZHwb3"
  18. style="width: 122rpx; height: 122rpx;margin-bottom: 14rpx;"></image>
  19. <view class="scan-text">扫一扫</view>
  20. </view>
  21. </view>
  22. </view>
  23. </view>
  24. </template>
  25. <script>
  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. export default {
  32. props: {
  33. curtTab: {
  34. type: String,
  35. default: 'home'
  36. }
  37. },
  38. data() {
  39. return {
  40. selectedTab: uni.getStorageSync('selectedIndex') || 0,
  41. tabs: [{
  42. label: '设备',
  43. name: 'home',
  44. url: '/pages/index/index',
  45. icon: '/static/resource/images/home_i.png',
  46. activeIcon: '/static/resource/images/home_s.png',
  47. },
  48. {
  49. label: '服务',
  50. name: 'service',
  51. url: '/pages/service/service',
  52. icon: '/static/resource/images/service_i.png',
  53. activeIcon: '/static/resource/images/service_s.png',
  54. },
  55. {
  56. label: '活动',
  57. name: 'active',
  58. url: '/pages/activity/activity',
  59. icon: '/static/resource/images/active_i.png',
  60. activeIcon: '/static/resource/images/active_s.png',
  61. },
  62. {
  63. label: '我的',
  64. name: 'my',
  65. url: '/pages/my/my',
  66. icon: '/static/resource/images/my_i.png',
  67. activeIcon: '/static/resource/images/my_s.png',
  68. },
  69. ],
  70. userInfo: {
  71. is_auth: 0,
  72. status: 0
  73. },
  74. // accountInfo: uni.getAccountInfoSync(),
  75. plate_number: '',
  76. isScanCondeRentalCar: false,
  77. };
  78. },
  79. // created: function () {
  80. // if (appWhiteListFilter.isScanCondeRentalCar()) {
  81. // this.setData({
  82. // isScanCondeRentalCar: true
  83. // })
  84. // }
  85. // },
  86. mounted() {
  87. // console.log(uni.getSystemInfoSync().safeArea)
  88. },
  89. methods: {
  90. routerPush(url) {
  91. // uni.setStorageSync('selectedIndex', data.index);
  92. uni.switchTab({
  93. url
  94. });
  95. // uni.navigateTo({ url })
  96. },
  97. async navToInputPages() {
  98. const me = this
  99. if (!this.loadIsLogin()) return
  100. uni.scanCode({
  101. scanType:['qrCode'],
  102. success(res) {
  103. me.loadGeneralQRData(res.result)
  104. },
  105. fail() {
  106. me.$msg('扫码失败,请重新扫码')
  107. }
  108. })
  109. },
  110. loadGeneralQRData(options) {
  111. console.log(options)
  112. let objOpt = this.$paramsObj(options)
  113. if (objOpt.d) {
  114. console.log('扫码的是机柜')
  115. uni.navigateTo({
  116. url: `/pages/cabinetDetail/cabinetDetail?dev_id=${objOpt.d}`,
  117. })
  118. return
  119. } else {
  120. console.log('扫码的是车辆')
  121. this.navToInputPage(options)
  122. return
  123. }
  124. // if (options.indexOf("https://zx.uwenya.cc/xcx/s") != -1) {
  125. // console.log('跑进来了')
  126. // var url = ''
  127. // if ('q' in options) {
  128. // url = decodeURIComponent(options.q);
  129. // }
  130. // if ('result' in options) {
  131. // url = options.result
  132. // }
  133. // var obj = this.getUrlParams(url)
  134. // if (('t' in obj) && ('d' in obj)) {
  135. // if (obj.t == 1 || obj.t == 2 || obj.t == 5 || obj.t == 4) {
  136. // uni.navigateTo({
  137. // url: '/pages/cabinetDetail/cabinetDetail?dev_id=' + obj.d + '&type=' +
  138. // obj.t,
  139. // })
  140. // return 101
  141. // }
  142. // if (obj.t == 10) {
  143. // return 106
  144. // }
  145. // }
  146. // }else{
  147. // }
  148. },
  149. async navToInputPage(car_sn) {
  150. const me = this
  151. const userInfo = storage.getUserInfoData()
  152. console.log(userInfo)
  153. console.log(car_sn)
  154. if (userInfo.status - 0 == 2) {
  155. var location = uni.getStorageSync('user_current_location')
  156. const params = await this._getParams()
  157. if (params.carList.length == 0) {
  158. me.loadScanCode(location, car_sn)
  159. } else {
  160. if (params.order_status) {
  161. uni.showModal({
  162. title: '提示',
  163. content: '已有正在进行的订单,是否跳转至订单页?',
  164. cancelText: '取消',
  165. confirmText: '确定',
  166. success: function(res) {
  167. if (res.confirm) {
  168. uni.navigateTo({
  169. url: '/pages/orderStatus/orderStatus'
  170. });
  171. } else {
  172. me.loadScanCode(location, car_sn)
  173. }
  174. }
  175. })
  176. }
  177. }
  178. } else {
  179. this.$msg('用户异常')
  180. }
  181. },
  182. loadScanCode(location, car_sn) {
  183. const me = this
  184. http.postApi(config.API_FLK_CAR_DETAIL, {car_sn}, (resp) => {
  185. uni.hideLoading()
  186. if (resp.data.code === 200) {
  187. console.log(resp.data.data)
  188. // if (resp.data.data.online === 0) {
  189. // common.simpleToast('此车辆已离线,请选择其他车辆')
  190. // return
  191. // }
  192. if (resp.data.data.is_mine) {
  193. //直接切换当前扫码的车辆
  194. uni.setStorageSync('car_info', resp.data.data);
  195. me.$emit('changCar', resp.data.data)
  196. common.simpleToast('已切换当前车辆!')
  197. return
  198. }
  199. uni.navigateTo({
  200. url: `/pages/carDetail/carDetail?model_id=${resp.data.data.model_id}`
  201. });
  202. return
  203. } else {
  204. common.simpleToast(resp.data.msg)
  205. }
  206. })
  207. },
  208. _getParams() {
  209. return new Promise((reslove, reject) => {
  210. http.postApi(config.API_FLK_CAR_DEVICE_LIST, {}, res => {
  211. const {
  212. data = []
  213. } = res.data.data
  214. const obj = {
  215. carList: data,
  216. order_status: data.length ? data[0].hire_order_status : 0,
  217. }
  218. reslove(obj)
  219. })
  220. })
  221. },
  222. getUrlParams(url) {
  223. // 通过 ? 分割获取后面的参数字符串
  224. let urlStr = url.split('?')[1]
  225. // 创建空对象存储参数
  226. let obj = {};
  227. // 再通过 & 将每一个参数单独分割出来
  228. let paramsArr = urlStr.split('&')
  229. for (let i = 0, len = paramsArr.length; i < len; i++) {
  230. // 再通过 = 将每一个参数分割为 key:value 的形式
  231. let arr = paramsArr[i].split('=')
  232. obj[arr[0]] = arr[1];
  233. }
  234. return obj
  235. },
  236. async loadIsLogin() {
  237. const user_token = storage.getUserToken()
  238. if (!user_token) {
  239. let res = await uni.showModal({
  240. title: '提示',
  241. content: '您还未登录,请先登录',
  242. showCancel: true,
  243. cancelText: '取消',
  244. confirmText: '确定',
  245. })
  246. if (res[1].confirm) {
  247. uni.navigateTo({
  248. url: '/pages/loginRegister/login',
  249. })
  250. }
  251. return false
  252. } else {
  253. return true
  254. }
  255. },
  256. }
  257. };
  258. </script>
  259. <style scoped>
  260. .tabbar-wrap {
  261. position: fixed;
  262. bottom: 0rpx;
  263. left: 0;
  264. right: 0;
  265. /* border-bottom: env(safe-area-inset-bottom) solid #fff; */
  266. z-index: 9999;
  267. /* #ifdef APP */
  268. /* 兼容 iOS < 11.2 */
  269. padding-bottom: constant(safe-area-inset-bottom);
  270. /* 兼容 iOS >= 11.2 */
  271. padding-bottom: env(safe-area-inset-bottom);
  272. /* #endif */
  273. }
  274. .tabbar {
  275. height: 140rpx;
  276. width: 100%;
  277. /* background: url('https://qiniu.bms16.com/FiYy2ZOV_hGSJx32YAQSLZSbAOFq') no-repeat; */
  278. /* background: url('https://qiniu.bms16.com/Fk8jEU5-RbARagKDYZy0tKWErKNF') no-repeat; */
  279. background-size: 100%;
  280. display: flex;
  281. justify-content: space-between;
  282. align-items: center;
  283. position: relative;
  284. bottom: 0;
  285. background-color: #fff;
  286. padding: 0 50rpx;
  287. }
  288. .tab-item {}
  289. .tab-item:nth-child(2) {
  290. margin-right: 20%;
  291. }
  292. .tab-icon {
  293. width: 48rpx;
  294. height: 48rpx;
  295. display: block;
  296. margin: auto;
  297. }
  298. .center-entrance {
  299. position: absolute;
  300. left: 50%;
  301. transform: translateX(-50%);
  302. bottom: 34rpx;
  303. display: flex;
  304. flex-direction: column;
  305. border-radius: 50%;
  306. border: 10rpx solid #fff;
  307. }
  308. .scan-text {
  309. font-size: 10px;
  310. text-align: center;
  311. color: #828DA2;
  312. font-weight: 600;
  313. }
  314. .base-text {
  315. font-family: PingFangSC, PingFang SC;
  316. font-weight: 500;
  317. font-size: 22rpx;
  318. color: #9EA9BB;
  319. line-height: 20rpx;
  320. text-align: center;
  321. font-style: normal;
  322. }
  323. .checked {
  324. color: #060809;
  325. }
  326. </style>