index.vue 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  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. <image :src="curtTab === item.name ? item.activeIcon : item.icon" class="tab-icon"></image>
  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. <image src="https://qiniu.bms16.com/Fm_kDVr1TIeIbbBW6-5bz0r-cECO" style="width: 122rpx; height: 122rpx;"></image>
  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. <image src="https://qiniu.bms16.com/FqcCjRjhzHFUkZj76SMHNXCZHwb3" style="width: 122rpx; height: 122rpx;margin-bottom: 14rpx;"></image>
  20. <view class="scan-text">扫一扫</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: '设备', name: 'home', url: '/pages/index/index',
  44. icon: '/static/resource/images/home_i.png',
  45. activeIcon: '/static/resource/images/home_s.png' ,
  46. },
  47. { label: '服务', name: 'service', url: '/pages/service/service',
  48. icon: '/static/resource/images/service_i.png',
  49. activeIcon: '/static/resource/images/service_s.png' ,
  50. },
  51. { label: '活动', name: 'active', url: '/pages/activity/activity',
  52. icon: '/static/resource/images/active_i.png',
  53. activeIcon: '/static/resource/images/active_s.png' ,
  54. },
  55. { label: '我的', name: 'my', url: '/pages/my/my',
  56. icon: '/static/resource/images/my_i.png',
  57. activeIcon: '/static/resource/images/my_s.png' ,
  58. },
  59. ],
  60. userInfo: {
  61. is_auth: 0,
  62. status: 0
  63. },
  64. // accountInfo: uni.getAccountInfoSync(),
  65. plate_number: '',
  66. isScanCondeRentalCar: false,
  67. };
  68. },
  69. // created: function () {
  70. // if (appWhiteListFilter.isScanCondeRentalCar()) {
  71. // this.setData({
  72. // isScanCondeRentalCar: true
  73. // })
  74. // }
  75. // },
  76. mounted() {
  77. console.log(uni.getSystemInfoSync().safeArea)
  78. },
  79. methods: {
  80. routerPush(url) {
  81. // uni.setStorageSync('selectedIndex', data.index);
  82. uni.switchTab({ url });
  83. // uni.navigateTo({ url })
  84. },
  85. async navToInputPage() {
  86. const me = this
  87. const userInfo = storage.getUserInfoData()
  88. if (userInfo.user_name) {
  89. const params = await this._getParams()
  90. var plate_number = params.carList.length!=0&&params.carList[0].license_plate_number?params.carList[0].license_plate_number:me.plate_number
  91. if (params.wait_active_predetermine != null) { //预约车辆为待激活状态
  92. if (params.wait_active_predetermine.order_status == 2) {
  93. uni.showModal({
  94. title: '提示',
  95. content: '您有等待激活的车辆,是否跳转至订单详情页?',
  96. cancelText: '取消',
  97. confirmText: '确定',
  98. success: function(res) {
  99. if (res.confirm) {
  100. uni.navigateTo({
  101. url: '/pages/orderStatus/orderStatus?order_sn=' + params
  102. .wait_active_predetermine.order_sn
  103. });
  104. }
  105. }
  106. })
  107. }
  108. return
  109. }
  110. if (params.carList.length == 0) {
  111. if(me.isScanCondeRentalCar) {
  112. uni.scanCode({
  113. onlyFromCamera: true,
  114. success: function (res) {
  115. var location = uni.getStorageSync('user_current_location')
  116. me.loadScanCode(location,res.result)
  117. },
  118. fail: function (res) { },
  119. complete: function (res) { },
  120. })
  121. } else {
  122. uni.navigateTo({
  123. url: '/pages/scanCar/scanCar'
  124. });
  125. }
  126. } else {
  127. if (params.order_status == 3 || params.order_status == 4) { // 车辆状态为未激活
  128. uni.showModal({
  129. title: '提示',
  130. content: '已有正在使用的车辆,是否跳转至车辆详情页?',
  131. cancelText: '取消',
  132. confirmText: '确定',
  133. success: function(res) {
  134. if (res.confirm) {
  135. const isReturnIndex = false
  136. uni.navigateTo({
  137. url: '/pages/battery/battery?plate_number=' + plate_number +'&isReturnIndex=' + isReturnIndex
  138. });
  139. }
  140. }
  141. })
  142. } else if (params.order_status == 5) {
  143. uni.showModal({
  144. title: '提示',
  145. content: '请等待商家确认还车,是否跳转至订单详情页?',
  146. cancelText: '取消',
  147. confirmText: '确定',
  148. success: function(res) {
  149. if (res.confirm) {
  150. uni.navigateTo({
  151. url: '/pages/orderStatus/orderStatus?order_sn=' + params
  152. .carList[0].order_sn
  153. });
  154. }
  155. }
  156. })
  157. } else {
  158. uni.showModal({
  159. title: '提示',
  160. content: '已有正在进行的订单,是否跳转至订单详情页?',
  161. cancelText: '取消',
  162. confirmText: '确定',
  163. success: function(res) {
  164. if (res.confirm) {
  165. uni.navigateTo({
  166. url: '/pages/orderStatus/orderStatus?order_sn=' + params
  167. .carList[0].order_sn
  168. });
  169. }
  170. }
  171. })
  172. }
  173. }
  174. } else if (userInfo.is_auth == 1 && userInfo.status != 2) {
  175. uni.showModal({
  176. title: '身份认证提示',
  177. content: '尚未完成身份认证,是否进行身份认证?',
  178. cancelText: '取消',
  179. confirmText: '确定',
  180. success: function(res) {
  181. if (res.confirm) {
  182. me.loadFaceToken()
  183. }
  184. }
  185. })
  186. } else {
  187. uni.showModal({
  188. title: '提示',
  189. content: '您还未登录,请先登录',
  190. showCancel: false,
  191. confirmText: '确定',
  192. success: function(res) {
  193. if (res.confirm) {
  194. //#ifdef MP-ALIPAY
  195. uni.navigateTo({
  196. url: '/pages/phoneLogin/phoneLogin',
  197. })
  198. //#endif
  199. //#ifdef MP-WEIXIN
  200. uni.navigateTo({
  201. url: '/pages/login/login',
  202. })
  203. //#endif
  204. }
  205. }
  206. })
  207. }
  208. }
  209. }
  210. };
  211. </script>
  212. <style scoped>
  213. .tabbar-wrap {
  214. position: fixed;
  215. bottom: 0;
  216. left: 0;
  217. right: 0;
  218. /* border-bottom: env(safe-area-inset-bottom) solid #fff; */
  219. z-index: 9999;
  220. /* #ifdef APP */
  221. /* 兼容 iOS < 11.2 */
  222. padding-bottom: constant(safe-area-inset-bottom);
  223. /* 兼容 iOS >= 11.2 */
  224. padding-bottom: env(safe-area-inset-bottom);
  225. /* #endif */
  226. }
  227. .tabbar {
  228. height: 140rpx;
  229. width: 100%;
  230. /* background: url('https://qiniu.bms16.com/FiYy2ZOV_hGSJx32YAQSLZSbAOFq') no-repeat; */
  231. /* background: url('https://qiniu.bms16.com/Fk8jEU5-RbARagKDYZy0tKWErKNF') no-repeat; */
  232. background-size: 100%;
  233. display: flex;
  234. justify-content: space-between;
  235. align-items: center;
  236. position: relative;
  237. bottom: 0;
  238. background-color: #fff;
  239. padding: 0 50rpx;
  240. }
  241. .tab-item {
  242. }
  243. .tab-item:nth-child(2) {
  244. margin-right: 20%;
  245. }
  246. .tab-icon {
  247. width: 48rpx;
  248. height: 48rpx;
  249. display: block;
  250. margin: auto;
  251. }
  252. .center-entrance {
  253. position: absolute;
  254. left: 50%;
  255. transform: translateX(-50%);
  256. bottom: 34rpx;
  257. display: flex;
  258. flex-direction: column;
  259. border-radius: 50%;
  260. border: 10rpx solid #fff;
  261. }
  262. .scan-text {
  263. font-size: 10px;
  264. text-align: center;
  265. color: #828DA2;
  266. font-weight: 600;
  267. }
  268. .base-text {
  269. font-family: PingFangSC, PingFang SC;
  270. font-weight: 500;
  271. font-size: 22rpx;
  272. color: #9EA9BB;
  273. line-height: 20rpx;
  274. text-align: center;
  275. font-style: normal;
  276. }
  277. .checked {
  278. color: #060809;
  279. }
  280. </style>