index.vue 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345
  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. success(res) {
  103. me.loadGeneralQRData(res.result)
  104. }
  105. })
  106. },
  107. loadGeneralQRData(options) {
  108. let objOpt = this.$paramsObj(options)
  109. if (objOpt.d) {
  110. console.log('扫码的是机柜')
  111. uni.navigateTo({
  112. url: `/pages/cabinetDetail/cabinetDetail?dev_id=${objOpt.d}`,
  113. })
  114. return
  115. } else {
  116. console.log('扫码的是车辆')
  117. this.navToInputPage(options)
  118. return
  119. }
  120. // if (options.indexOf("https://zx.uwenya.cc/xcx/s") != -1) {
  121. // console.log('跑进来了')
  122. // var url = ''
  123. // if ('q' in options) {
  124. // url = decodeURIComponent(options.q);
  125. // }
  126. // if ('result' in options) {
  127. // url = options.result
  128. // }
  129. // var obj = this.getUrlParams(url)
  130. // if (('t' in obj) && ('d' in obj)) {
  131. // if (obj.t == 1 || obj.t == 2 || obj.t == 5 || obj.t == 4) {
  132. // uni.navigateTo({
  133. // url: '/pages/cabinetDetail/cabinetDetail?dev_id=' + obj.d + '&type=' +
  134. // obj.t,
  135. // })
  136. // return 101
  137. // }
  138. // if (obj.t == 10) {
  139. // return 106
  140. // }
  141. // }
  142. // }else{
  143. // }
  144. },
  145. async navToInputPage(car_sn) {
  146. const me = this
  147. const userInfo = storage.getUserInfoData()
  148. console.log(userInfo)
  149. console.log(car_sn)
  150. if (userInfo.status - 0 == 2) {
  151. var location = uni.getStorageSync('user_current_location')
  152. const params = await this._getParams()
  153. if (params.carList.length == 0) {
  154. me.loadScanCode(location, car_sn)
  155. } else {
  156. if (params.order_status) {
  157. uni.showModal({
  158. title: '提示',
  159. content: '已有正在进行的订单,是否跳转至订单页?',
  160. cancelText: '取消',
  161. confirmText: '确定',
  162. success: function(res) {
  163. if (res.confirm) {
  164. uni.navigateTo({
  165. url: '/pages/orderStatus/orderStatus'
  166. });
  167. } else {
  168. me.loadScanCode(location, car_sn)
  169. }
  170. }
  171. })
  172. }
  173. }
  174. } else {
  175. this.$msg('用户异常')
  176. }
  177. },
  178. loadScanCode(location, car_sn) {
  179. const me = this
  180. http.postApi(config.API_FLK_CAR_DETAIL, {car_sn}, (resp) => {
  181. uni.hideLoading()
  182. if (resp.data.code === 200) {
  183. console.log(resp.data.data)
  184. // if (resp.data.data.online === 0) {
  185. // common.simpleToast('此车辆已离线,请选择其他车辆')
  186. // return
  187. // }
  188. if (resp.data.data.is_mine) {
  189. //直接切换当前扫码的车辆
  190. uni.setStorageSync('car_info', resp.data.data);
  191. me.$emit('changCar', resp.data.data)
  192. common.simpleToast('已切换当前车辆!')
  193. return
  194. }
  195. uni.navigateTo({
  196. url: `/pages/carDetail/carDetail?model_id=${resp.data.data.model_id}`
  197. });
  198. return
  199. } else {
  200. common.simpleToast(resp.data.msg)
  201. }
  202. })
  203. },
  204. _getParams() {
  205. return new Promise((reslove, reject) => {
  206. http.postApi(config.API_FLK_CAR_DEVICE_LIST, {}, res => {
  207. const {
  208. data = []
  209. } = res.data.data
  210. const obj = {
  211. carList: data,
  212. order_status: data.length ? data[0].hire_order_status : 0,
  213. }
  214. reslove(obj)
  215. })
  216. })
  217. },
  218. getUrlParams(url) {
  219. // 通过 ? 分割获取后面的参数字符串
  220. let urlStr = url.split('?')[1]
  221. // 创建空对象存储参数
  222. let obj = {};
  223. // 再通过 & 将每一个参数单独分割出来
  224. let paramsArr = urlStr.split('&')
  225. for (let i = 0, len = paramsArr.length; i < len; i++) {
  226. // 再通过 = 将每一个参数分割为 key:value 的形式
  227. let arr = paramsArr[i].split('=')
  228. obj[arr[0]] = arr[1];
  229. }
  230. return obj
  231. },
  232. async loadIsLogin() {
  233. const user_token = storage.getUserToken()
  234. if (!user_token) {
  235. let res = await uni.showModal({
  236. title: '提示',
  237. content: '您还未登录,请先登录',
  238. showCancel: true,
  239. cancelText: '取消',
  240. confirmText: '确定',
  241. })
  242. if (res[1].confirm) {
  243. uni.navigateTo({
  244. url: '/pages/loginRegister/login',
  245. })
  246. }
  247. return false
  248. } else {
  249. return true
  250. }
  251. },
  252. }
  253. };
  254. </script>
  255. <style scoped>
  256. .tabbar-wrap {
  257. position: fixed;
  258. bottom: 0rpx;
  259. left: 0;
  260. right: 0;
  261. /* border-bottom: env(safe-area-inset-bottom) solid #fff; */
  262. z-index: 9999;
  263. /* #ifdef APP */
  264. /* 兼容 iOS < 11.2 */
  265. padding-bottom: constant(safe-area-inset-bottom);
  266. /* 兼容 iOS >= 11.2 */
  267. padding-bottom: env(safe-area-inset-bottom);
  268. /* #endif */
  269. }
  270. .tabbar {
  271. height: 140rpx;
  272. width: 100%;
  273. /* background: url('https://qiniu.bms16.com/FiYy2ZOV_hGSJx32YAQSLZSbAOFq') no-repeat; */
  274. /* background: url('https://qiniu.bms16.com/Fk8jEU5-RbARagKDYZy0tKWErKNF') no-repeat; */
  275. background-size: 100%;
  276. display: flex;
  277. justify-content: space-between;
  278. align-items: center;
  279. position: relative;
  280. bottom: 0;
  281. background-color: #fff;
  282. padding: 0 50rpx;
  283. }
  284. .tab-item {}
  285. .tab-item:nth-child(2) {
  286. margin-right: 20%;
  287. }
  288. .tab-icon {
  289. width: 48rpx;
  290. height: 48rpx;
  291. display: block;
  292. margin: auto;
  293. }
  294. .center-entrance {
  295. position: absolute;
  296. left: 50%;
  297. transform: translateX(-50%);
  298. bottom: 34rpx;
  299. display: flex;
  300. flex-direction: column;
  301. border-radius: 50%;
  302. border: 10rpx solid #fff;
  303. }
  304. .scan-text {
  305. font-size: 10px;
  306. text-align: center;
  307. color: #828DA2;
  308. font-weight: 600;
  309. }
  310. .base-text {
  311. font-family: PingFangSC, PingFang SC;
  312. font-weight: 500;
  313. font-size: 22rpx;
  314. color: #9EA9BB;
  315. line-height: 20rpx;
  316. text-align: center;
  317. font-style: normal;
  318. }
  319. .checked {
  320. color: #060809;
  321. }
  322. </style>