|
@@ -17,7 +17,7 @@
|
|
|
<!-- <img src="https://qiniu.bms16.com/FqcCjRjhzHFUkZj76SMHNXCZHwb3" style="width: 122rpx; height: 122rpx;margin-bottom: 14rpx;"/> -->
|
|
|
<image src="https://qiniu.bms16.com/FqcCjRjhzHFUkZj76SMHNXCZHwb3"
|
|
|
style="width: 122rpx; height: 122rpx;margin-bottom: 14rpx;"></image>
|
|
|
- <view class="scan-text">扫一扫</view>
|
|
|
+ <view class="scan-text">{{$t('扫一扫')}}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -38,56 +38,58 @@
|
|
|
}
|
|
|
},
|
|
|
data() {
|
|
|
+ let _this = this
|
|
|
return {
|
|
|
selectedTab: uni.getStorageSync('selectedIndex') || 0,
|
|
|
- tabs: [{
|
|
|
- label: '设备',
|
|
|
+ tabs: [],
|
|
|
+ userInfo: {
|
|
|
+ is_auth: 0,
|
|
|
+ status: 0
|
|
|
+ },
|
|
|
+ // accountInfo: uni.getAccountInfoSync(),
|
|
|
+ plate_number: '',
|
|
|
+ isScanCondeRentalCar: false,
|
|
|
+ };
|
|
|
+ },
|
|
|
+ // created: function () {
|
|
|
+ // if (appWhiteListFilter.isScanCondeRentalCar()) {
|
|
|
+ // this.setData({
|
|
|
+ // isScanCondeRentalCar: true
|
|
|
+ // })
|
|
|
+ // }
|
|
|
+ // },
|
|
|
+
|
|
|
+ mounted() {
|
|
|
+ // console.log(uni.getSystemInfoSync().safeArea)
|
|
|
+ this.tabs = [{
|
|
|
+ label: this.$t('设备'),
|
|
|
name: 'home',
|
|
|
url: '/pages/index/index',
|
|
|
icon: '/static/resource/images/home_i.png',
|
|
|
activeIcon: '/static/resource/images/home_s.png',
|
|
|
},
|
|
|
{
|
|
|
- label: '服务',
|
|
|
+ label: this.$t('服务'),
|
|
|
name: 'service',
|
|
|
url: '/pages/service/service',
|
|
|
icon: '/static/resource/images/service_i.png',
|
|
|
activeIcon: '/static/resource/images/service_s.png',
|
|
|
},
|
|
|
{
|
|
|
- label: '活动',
|
|
|
+ label: this.$t('活动'),
|
|
|
name: 'active',
|
|
|
url: '/pages/activity/activity',
|
|
|
icon: '/static/resource/images/active_i.png',
|
|
|
activeIcon: '/static/resource/images/active_s.png',
|
|
|
},
|
|
|
{
|
|
|
- label: '我的',
|
|
|
+ label: this.$t('我的'),
|
|
|
name: 'my',
|
|
|
url: '/pages/my/my',
|
|
|
icon: '/static/resource/images/my_i.png',
|
|
|
activeIcon: '/static/resource/images/my_s.png',
|
|
|
},
|
|
|
- ],
|
|
|
- userInfo: {
|
|
|
- is_auth: 0,
|
|
|
- status: 0
|
|
|
- },
|
|
|
- // accountInfo: uni.getAccountInfoSync(),
|
|
|
- plate_number: '',
|
|
|
- isScanCondeRentalCar: false,
|
|
|
- };
|
|
|
- },
|
|
|
- // created: function () {
|
|
|
- // if (appWhiteListFilter.isScanCondeRentalCar()) {
|
|
|
- // this.setData({
|
|
|
- // isScanCondeRentalCar: true
|
|
|
- // })
|
|
|
- // }
|
|
|
- // },
|
|
|
-
|
|
|
- mounted() {
|
|
|
- // console.log(uni.getSystemInfoSync().safeArea)
|
|
|
+ ]
|
|
|
},
|
|
|
methods: {
|
|
|
routerPush(url) {
|