index.vue 8.7 KB

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