index.vue 8.4 KB

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