|
@@ -55,7 +55,7 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="config-view">
|
|
|
- <view class="flex-row config-car-view">
|
|
|
+ <view @tap="navToPage" class="flex-row config-car-view">
|
|
|
<view class="margin_r_20"><img class="icon_style_64" src="https://qiniu.bms16.com/Ftzyvs5whxDdMFksYChHaWKVb0Uk" alt=""></view>
|
|
|
<view class="flex-row config-text-view" @tap="inductiveUnlockHandle">
|
|
|
<view class="flex-row font_w_600">{{$t("感应解锁")}}</view>
|
|
@@ -63,7 +63,7 @@
|
|
|
</view>
|
|
|
<img class="icon_style_28" src="https://qiniu.bms16.com/FqnbZ2iKHmzCGJA8XD30sf5g_CAm" alt="">
|
|
|
</view>
|
|
|
- <view class="flex-row config-car-view">
|
|
|
+ <view @tap="navToPage" data-url="/pages/userManagement/userManagement" class="flex-row config-car-view">
|
|
|
<view class="margin_r_20"><img class="icon_style_64" src="https://qiniu.bms16.com/FhKkijkN__9UzhYNgamBFSggIlYo" alt=""></view>
|
|
|
<view class="flex-row config-text-view">
|
|
|
<view class="flex-row font_w_600">{{$t("用车人管理")}}</view>
|
|
@@ -71,7 +71,7 @@
|
|
|
</view>
|
|
|
<img class="icon_style_28" src="https://qiniu.bms16.com/FqnbZ2iKHmzCGJA8XD30sf5g_CAm" alt="">
|
|
|
</view>
|
|
|
- <view class="flex-row config-car-view">
|
|
|
+ <view @tap="navToPage" class="flex-row config-car-view">
|
|
|
<view class="margin_r_20"><img class="icon_style_64" src="https://qiniu.bms16.com/FsAg6mHEBJfbtpgIHBrDdNiPo1iH" alt=""></view>
|
|
|
<view class="flex-row config-text-view">
|
|
|
<view class="flex-row font_w_600">{{$t("设备信息")}}</view>
|
|
@@ -159,6 +159,59 @@
|
|
|
},
|
|
|
inductiveUnlockHandle() {
|
|
|
this.$refs.bluetoothUnlockAuth.open();
|
|
|
+ },
|
|
|
+ navToPage(e) {
|
|
|
+ const me = this
|
|
|
+ const url = e.currentTarget.dataset.url;
|
|
|
+ if (!url) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ uni.navigateTo({
|
|
|
+ url: url
|
|
|
+ });
|
|
|
+ // if (me.userInfo.is_auth - 0 == 1 && me.userInfo.status - 0 == 2) {
|
|
|
+ // uni.navigateTo({
|
|
|
+ // url: url
|
|
|
+ // });
|
|
|
+ // } else if (me.userInfo.is_auth - 0 == 1 && me.userInfo.status - 0 != 2) {
|
|
|
+ // uni.showModal({
|
|
|
+ // title: '身份认证提示',
|
|
|
+ // content: '尚未完成身份认证,是否进行身份认证?',
|
|
|
+ // cancelText: '取消',
|
|
|
+ // confirmText: '确定',
|
|
|
+ // success: function(res) {
|
|
|
+ // if (res.confirm) {
|
|
|
+ // me.loadFaceToken()
|
|
|
+ // }
|
|
|
+ // },
|
|
|
+ // fail: function(res) {},
|
|
|
+ // complete: function(res) {},
|
|
|
+ // })
|
|
|
+ // } else {
|
|
|
+ // uni.showModal({
|
|
|
+ // title: '提示',
|
|
|
+ // content: '您还未登录,请先登录',
|
|
|
+ // showCancel: true,
|
|
|
+ // cancelText: '取消',
|
|
|
+ // confirmText: '确定',
|
|
|
+ // success: function(res) {
|
|
|
+ // if (res.confirm) {
|
|
|
+ // //#ifdef MP-ALIPAY
|
|
|
+ // uni.navigateTo({
|
|
|
+ // url: '/pages/phoneLogin/phoneLogin',
|
|
|
+ // })
|
|
|
+ // //#endif
|
|
|
+ // //#ifdef MP-WEIXIN
|
|
|
+ // uni.navigateTo({
|
|
|
+ // url: '/pages/login/login',
|
|
|
+ // })
|
|
|
+ // //#endif
|
|
|
+ // }
|
|
|
+ // },
|
|
|
+ // fail: function(res) {},
|
|
|
+ // complete: function(res) {},
|
|
|
+ // })
|
|
|
+ // }
|
|
|
}
|
|
|
|
|
|
}
|