Commit e8099181 authored by caimeng's avatar caimeng

配合多典花进行优化1

parent dfee72cb
......@@ -9,9 +9,6 @@ export default {
},
onLaunch: async function () {
// #ifdef APP-PLUS
// var w = plus.webview.open('hybrid/html/advertise/advertise.html','splashscreen', {
// top: 0,
......
......@@ -229,13 +229,6 @@
"enablePullDownRefresh": false,
"navigationBarTitleText": ""
}
},
{
"path": "finance/index",
"style": {
"enablePullDownRefresh": true,
"navigationStyle": "custom"
}
}
]
}
......
......@@ -214,15 +214,12 @@ export default {
GetTop() {
var _this = this
uni.getSystemInfo({
success: (res) => {
success: () => {
const query = uni.createSelectorQuery().in(this);
query.select("#box").boundingClientRect((data) => {
_this.Topdistance = data.top
}).exec();
},
fail: (res) => {
}
})
},
......
......@@ -35,18 +35,19 @@
</template>
<script>
import {
switchShowTabbar
} from '@/utils/index'
import { switchShowTabbar } from '@/utils/index'
export default {
export default {
data() {
return {
clickStatus: false,
mobile: '',
sendcode: '',
canSendCode: true,
timer: null,//倒计时
count: '',//倒计时
timer: null, //倒计时
count: '', //倒计时
smsDownCacheCode: '',
// 协议列表
......@@ -61,12 +62,23 @@ export default {
methods: {
// 登录页返回
GoBack() {
const pages = getCurrentPages();
console.log(pages.length, '数量')
if (pages.length <= 1) {
uni.switchTab({
url: "/pages/index/index"
})
} else {
this.Back()
}
},
// 预加载
initPreloadH5() {
try {
const { h5Url } = JSON.parse(uni.getStorageSync('APP-SETTING'));
const {
h5Url
} = JSON.parse(uni.getStorageSync('APP-SETTING'));
// 预加载H5
plus.webview.prefetchURL(h5Url);
......@@ -80,9 +92,11 @@ export default {
},
async init() {
const $App_Setting = uni.getStorageSync("APP-SETTING")
console.log($App_Setting,'内容呢')
console.log($App_Setting, '内容呢')
if ($App_Setting) {
const { protocol } = JSON.parse($App_Setting)
const {
protocol
} = JSON.parse($App_Setting)
this.protocolList = JSON.parse(protocol)
}
},
......@@ -91,11 +105,15 @@ export default {
},
GetVerifyCode() {
const self = this
const params = {mobile:this.mobile}
console.log(params,'日')
const params = {
mobile: this.mobile
}
console.log(params, '日')
self.$request('/pawn/client/sendCode', 'POST', params).then(res => {
console.log(res, 'sendCode');
const { smsBizNo } = res.result
const {
smsBizNo
} = res.result
if (smsBizNo) {
self.countdowns()
self.smsDownCacheCode = smsBizNo
......@@ -163,9 +181,14 @@ export default {
"verifyCode": self.sendcode
}
self.$request('/pawn/client/login', 'POST', params).then(res => {
const { userInfo, token } = res.result
const {
userInfo,
token
} = res.result
if (userInfo) {
const { deviceId } = userInfo
const {
deviceId
} = userInfo
uni.setStorageSync('deviceId', deviceId)
}
......@@ -191,11 +214,15 @@ export default {
"promoCode": 'own'
}
self.$request('/app/v1/loginNoCheck', 'POST', params).then(res => {
const { deviceId, token } = res.result
const cacheData = Object.assign({}, res.result, { mobile: self.mobile })
const {
deviceId,
token
} = res.result
const cacheData = Object.assign({}, res.result, {
mobile: self.mobile
})
uni.setStorageSync('user_info_obj', JSON.stringify(cacheData));
uni.setStorageSync('mobileCall', self.mobile)
uni.setStorageSync('deviceId', deviceId)
uni.setStorageSync('tokenFinance', token)
......@@ -215,7 +242,7 @@ export default {
this[key] = val
}
}
}
}
</script>
<style src='./index.less' lang="less" scoped></style>
\ No newline at end of file
......@@ -6,16 +6,14 @@
<view class='my-header'>
<image class='header-img' src='https://ddh.yyhock.com/ddhMall/my-icon.png'></image>
<view class='header-des'>
<view class='des-name' v-if="isLogin">{{ userTel }}</view>
<view class='des-name' v-if="isLogin">{{ mobile }}</view>
<view class='des-name' v-else @click='GoLogin'>注册/登录</view>
<view class='des-text'>多典花承诺保护您的信息安全</view>
</view>
</view>
<!-- 登录状态 -->
<template v-if="isLogin">
<!-- 我的还款&申请记录 -->
<template v-if="menuBar && menuBar.length > 0">
<template v-if="isLogin && loanSwitch">
<view class='my-line'>
<view class='line-left' v-for="item in menuBar" :key="item.id" @click="goBar(item)">
<image class='left-img' :src='item.iconUrl'></image>
......@@ -54,10 +52,9 @@
</view>
</view>
</template>
<!-- 未登录状态 -->
<template v-else>
<!-- 未登录状态 -->
<template v-if="false">
<view class='my-box-s'>
<view class='s-con'>
......@@ -132,16 +129,16 @@
<script>
import { switchShowTabbar } from '@/utils/index'
import { isLogin } from '../../utils';
const APP = JSON.parse(uni.getStorageSync('APP-SETTING'));
const H5 = JSON.parse(uni.getStorageSync('H5-SETTING'));
const hasToken = uni.getStorageSync('token') ? true : false;
const mobile = uni.getStorageSync('l-mobile') ? uni.getStorageSync('l-mobile') : '';
export default {
data() {
return {
isLogin: hasToken,
userTel: mobile,
isLogin: false,
loanSwitch: false,
mobile: '',
menuList: [],
mobileNum: '',
menuBar: [],
......@@ -152,9 +149,15 @@ export default {
}
},
onShow() {
const token = uni.getStorageSync('token')
const loanSwitch = uni.getStorageSync('loanSwitch')
const mobile = uni.getStorageSync('l-mobile') ? uni.getStorageSync('l-mobile') : ''
this.init()
this.isLogin = token ? true : false
this.loanSwitch = loanSwitch ? true : false
this.mobile = mobile;
this.initMine()
// 显示隐藏tabBar
switchShowTabbar()
// 埋点
......@@ -162,7 +165,7 @@ export default {
},
// 页面下拉刷新
async onPullDownRefresh() {
await this.init()
await this.initMine()
setTimeout(() => {
uni.stopPullDownRefresh();
}, 1000);
......@@ -174,35 +177,14 @@ export default {
GoLogin() {
this.Go('uni:/pages/login/login')
},
// 初始化
init() {
const token = uni.getStorageSync('token')
console.log(token,'判断是否登录的依据')
if (token) {
this.initMine()
}
else {
this.isLogin = false
this.mobile = ''
}
},
// 初始化个人中心页面
initMine() {
const self = this
self.$request('/app/v1/userIndex', 'GET').then(res => {
const { menuBar, user, baseMenuBar, extMenuBarList } = res.result
const showIndex = uni.getStorageSync('showIndex')
console.log(showIndex, 'myindex')
if (showIndex == true) {
const { menuBar, baseMenuBar, extMenuBarList } = res.result
self.menuBar = menuBar
} else {
self.menuBar = []
}
self.menuList = baseMenuBar
self.extMenuBarList = extMenuBarList
self.userTel = ''
if (user.cell) self.userTel = user.cell
this.isLogin = true
}).catch(err => {
console.log(err, '请求出错')
......@@ -231,29 +213,30 @@ export default {
},
goBar(item) {
let newPath
try {
const config = JSON.parse(uni.getStorageSync('APP-SETTING'));
const timestamp = new Date().getTime()
const token = uni.getStorageSync('tokenFinance')
const mobile = uni.getStorageSync('l-mobile')
const $src = config['h5Url'] + `?token=${token}&mobile=${mobile}&timestamp=${timestamp}#/${item.linkUrl}`
const newSrc = $src.split('?')
const targetSrc = `${newSrc[0]}?${encodeURIComponent(newSrc[1])}`
switch (item.title) {
case "我的还款":
this.buryingPoint('app:my_repayment_click')
// const url='http://192.168.0.82:8080/#/'
newPath = H5.h5Url + item.linkUrl //app.vue中的全局写法
// newPath =this.hFUrl+ item.linkUrl
uni.navigateTo({
url: `/pages/web/websrc?url=${newPath}`
})
break;
case "申请记录":
this.buryingPoint('app:my_application_record_click')
// const url='http://192.168.0.82:8080/#/loanRecord'
newPath = H5.h5Url + item.linkUrl
// newPath =this.hFUrl+ item.linkUrl
break;
}
uni.navigateTo({
url: `/pages/web/websrc?url=${newPath}`
url: `/pages/web/websrc?url=${targetSrc}`
})
break;
default:
break;
} catch (err) {
console.log(err)
}
},
goTel() {
const self = this
......
......@@ -25,7 +25,7 @@ export default {
canBack: false,
webviewStyles: {
progress: {
color: '#FF4050'
color: '#5688E8'
}
},
deviceStatus: '',
......@@ -70,7 +70,8 @@ export default {
const timestamp = new Date().getTime()
setTimeout(() => {
const token = uni.getStorageSync('tokenFinance')
const $src = config['h5Url'] + `?token=${token}&timestamp=${timestamp}`
const mobile = uni.getStorageSync('l-mobile')
const $src = config['h5Url'] + `?token=${token}&mobile=${mobile}&timestamp=${timestamp}`
console.log($src, '刷新的地址')
that.src = $src
}, 100);
......@@ -103,10 +104,7 @@ export default {
},
onHide() {
// uni.removeStorageSync('hasRefresh')
const user_info_obj = uni.getStorageSync('user_info_obj') ? JSON.parse(uni.getStorageSync('user_info_obj')) : {}
user_info_obj.refreshIndex = false
uni.setStorageSync('user_info_obj', JSON.stringify(user_info_obj));
},
onShow() {
......
......@@ -11,7 +11,6 @@ import { UploadFile } from './utils/uploads'
import Permission from '@/js_sdk/wa-permission/permission' //权限工具类
const LF = uni.requireNativePlugin('AThree-LFv2')
let token = uni.getStorageSync('token')
let reloadTimeOut = null
export default {
name: "WEB",
data() {
......@@ -22,7 +21,7 @@ export default {
canBack: false,
webviewStyles: {
progress: {
color: '#FF4050'
color: '#5688E8'
}
},
deviceStatus: '',
......@@ -56,16 +55,10 @@ export default {
}, 1000) //如果是页面初始化调用时,需要延时一下
// #endif
},
onTabItemTap(e) {
console.log(e, 'tabItemTap')
this.wv && this.wv.evalJS(`callback({ 'action': 'OnShow' })`)
},
async onLoad(option) {
const that = this
if (option.url) that.src = option.url
console.log(option, '参数')
const that = this;
if (option.url) this.src = option.url
console.log(option.url,'地址')
uni.getStorage({
key: 'm-device-info',
success: function (res) {
......@@ -74,31 +67,12 @@ export default {
}
})
},
onShow() {
console.log('onShow方法')
const canRefresh = uni.getStorageSync('canRefresh');
console.log(canRefresh, '可以刷新吗?')
if (canRefresh) {
uni.removeStorageSync('canRefresh')
if (reloadTimeOut) clearTimeout(reloadTimeOut)
reloadTimeOut = setTimeout(() => {
console.log('到这里了')
this.wv && this.wv.reload()
}, 400)
}
},
onUnload() {
const wv = this.$scope.$getAppWebview();
if(wv){
wv.clear()
wv.close()
}
const user_info_obj = uni.getStorageSync('user_info_obj')? JSON.parse(uni.getStorageSync('user_info_obj')):{}
user_info_obj.refreshIndex = true
uni.setStorageSync('user_info_obj', JSON.stringify(user_info_obj));
},
methods: {
handleMessage(e) {
const data = e.detail.data;
if (!data || data.lenght === 0) {
......@@ -250,6 +224,7 @@ export default {
this.toast('提示框报错')
}
},
// 实名认证正面
Camera_OCR_Front(config) {
console.log('实名认证前面', config)
......@@ -389,6 +364,7 @@ export default {
this.toast('隐藏导航报错')
}
},
// 显示导航了
ShowNavBar() {
try {
......@@ -446,6 +422,7 @@ export default {
console.log(err, 'LIVE活体识别错误')
}
},
// 活体认证
async uniFace(config) {
console.log(config, 'config')
......@@ -462,6 +439,7 @@ export default {
}
},
// 获取设备信息
async GetDeviceInfo() {
try {
......
<template>
<view class="page-web">
<web-view ref='webview' :webview-styles="webviewStyles" @message="handleMessage" :src="src"></web-view>
</view>
</template>
<script>
import {loadDevice,loadNetwork,loadUuid,loadLocation} from '../../utils/deviceInfo.js'
// import {loadLocation} from '../../utils/tools.js'
import {CheckContactPermission,SelectContact} from '../../utils/authPerission.js'
import storage from '../../utils/storage.js'
import {UploadFile} from '../../utils/uploads.js'
import Permission from '@/js_sdk/wa-permission/permission' //权限工具类
const LF = uni.requireNativePlugin('AThree-LFv2')
import api from '@/config/api'
let reloadTimeOut = null
export default {
name: "WEB",
data() {
return {
src: api['h5'],
wv: null,
canBack: false,
webviewStyles: {
progress: {
color: '#FF4050'
}
},
deviceStatus: '',
};
},
onBackPress(e) {
if (this.wv && this.canBack) {
this.wv.back()
return true
}
return false
},
onReady() {
const _that = this
// #ifdef APP-PLUS
//此对象相当于html5plus里的plus.webview.currentWebview()。在uni-app里vue页面直接使用plus.webview.currentWebview()无效
let currentWebview = _that.$scope.$getAppWebview();
setTimeout(() => {
this.wv = currentWebview.children()[0]
// 物理按键返回
_that.wv.addEventListener(
'loaded',
() => {
_that.wv.canBack((e) => {
_that.canBack = e.canBack
})
},
false
)
}, 1000) //如果是页面初始化调用时,需要延时一下
// #endif
},
onTabItemTap(e) {
const token=uni.getStorageSync('token')
const common = uni.getStorageSync("m-header-device")
//这里是获取位置信息
if(!common && token){
loadDevice()
loadNetwork()
loadUuid()
loadLocation()
}
// if (!this.$options.filters.isLogin('auth')) {
// this.$options.filters.navigateToLogin()
// } else {
this.wv && this.wv.evalJS(`callback({ 'action': 'OnShow' })`)
// }
},
async onLoad(option) {
// this.subnvue_open();
const that = this
if (option.src) {
that.src = option.src
}
uni.getStorage({
key: 'm-device-info',
success: function (res) {
const { device } = JSON.parse(res.data)
that.deviceStatus = device
}
})
},
onHide() {
// uni.removeStorageSync('hasRefresh')
},
onShow() {
const token=uni.getStorageSync('token')
const common = uni.getStorageSync("m-header-device")
//这里是获取位置信息
if(!common && token){
loadDevice()
loadNetwork()
loadUuid()
loadLocation()
}
console.log('WEB show方法')
if (uni.getStorageSync('canRefreshWeb')) {
uni.removeStorageSync('canRefreshWeb')
if (this.wv) {
const needReload = uni.getStorageSync('reloadFlag')
if (!needReload) {
console.log('刷新页面')
if(reloadTimeOut) clearTimeout(reloadTimeOut)
reloadTimeOut = setTimeout(()=>{
this.wv.reload()
},1000)
} else {
console.log('不刷新页面')
}
}
}
},
onUnload() {
uni.$off('loadingSubnvue'); //移除监听配置的原生子窗体
},
methods: {
subnvue_open() {
this.subNVue = uni.getSubNVueById('loadingSubnvue'); //通过id获取nvue子窗体
this.subNVue.show();
},
handleMessage(e) {
const data = e.detail.data;
if (!data || data.lenght === 0) {
this.toast('调用APP方法报错');
return;
}
const {
name,
params
} = data[0];
if (!name) {
this.toast('缺少方法名', 'error')
return
}
if (this.$options.filters.isLogin('auth')) {
if (params) {
this[name](params)
} else {
this[name]()
}
}
},
UserToken(token) {
uni.setStorage({
key: 'm-token',
data: token,
success: () => {
console.log('m-token存储成功');
}
})
},
// APP是否登陆
IS_LOGIN() {
const isLogin = this.$options.filters.isLogin('auth')
const res = {
isLogin: isLogin,
appName: '多典花',
}
this.GetWebView().evalJS(`IS_LOGIN('${JSON.stringify(res)}')`)
},
// 删除localtabbar
removeRefreshStorage() {
uni.removeStorageSync('hasRefresh')
console.log('删除了hasRefresh')
},
// 隐藏tabbar
hideLoading() {
// console.log('调用了APP的hideLoading方法')
uni.hideLoading()
},
// 隐藏tabbar
hideTabBar() {
uni.hideTabBar()
},
// 显示tabbar
showTabBar() {
uni.showTabBar()
},
// 获取当前WebView实例
GetWebView() {
const currentWebview = this.$scope.$getAppWebview();
let wv = currentWebview.children()[0];
return wv;
},
// 获取状态栏高度
GetStatusBarHei() {
try {
const windowInfo = uni.getWindowInfo()
const {
statusBarHeight
} = windowInfo;
this.GetWebView().evalJS("receiveStatusBarHei('" + statusBarHeight + "')")
} catch (err) {
console.log(err, '什么错')
this.toast('获取状态栏高度报错')
}
},
// 获取用户手机号
GetUserMobile() {
const mobileCall=uni.getStorageSync('mobileCall')
console.log(mobileCall,'mobileCall')
try {
this.GetWebView().evalJS(`receiveUserMobile('${mobileCall}')`)
} catch (err) {
console.log(err, '什么错')
this.toast('获取用户手机号报错')
}
},
// 拨打电话
MakeCall(num) {
try {
uni.makePhoneCall({
phoneNumber: num
});
} catch (err) {
this.toast('拨打电话报错')
}
},
// Toast提示框
toast(title, type) {
uni.showToast({
icon: type ? type : "none",
title
})
},
// Toast 提示框
Toast(config) {
try {
uni.showToast({
...config
})
} catch (err) {
this.toast('提示框报错')
}
},
// 实名认证正面
Camera_OCR_Front(config) {
console.log('实名认证前面', config)
// 检查相机权限
// if (!this.CheckCamera()) return;
console.log('哈哈哈')
const that = this;
try {
console.log(LF, '忍忍')
LF.Camera_UP({
...config
}, async (res) => {
console.log(res, 'res-front1')
if (res.code == 1 && res.info) {
let chacheImg = res.standardImage.replace(/\n/g, '')
if (res.info && res.info.rectifiedImage) delete res.info.rectifiedImage;
const result = {
info: res.info
}
UploadFile(config, `data:image/png;base64,${chacheImg}`).then(file => {
result.fileUrl = file.fileUrl
if (file.statusCode === 200) {
that.wv.evalJS(`receiveOcrFront('${JSON.stringify(result)}')`)
uni.showToast({
icon: "success",
title: "图片上传成功"
})
} else {
uni.showToast({
icon: "success",
title: "图片上传失败"
})
}
}).catch(err => {
console.log(err)
uni.showToast({
icon: 'error',
title: "图片上传失败"
})
})
} else if (res.code == 10) {
uni.showToast({
icon: "none",
title: "请重拍一张照片试一试"
})
} else {
uni.showToast({
icon: "none",
title: "请重拍一张照片试一试"
})
}
})
} catch (err) {
console.log(err, 'OCR识别错误')
}
},
// 实名认证反面
Camera_OCR_Back(config) {
// 检查相机权限
// if (!this.CheckCamera()) return;
const that = this;
try {
LF.Camera_UP({
...config
}, (res) => {
if (res.code == 1 && res.info) {
let chacheImg = res.standardImage.replace(/\n/g, '')
if (res.info && res.info.rectifiedImage) delete res.info.rectifiedImage;
const result = {
info: res.info
}
UploadFile(config, `data:image/png;base64,${chacheImg}`).then(file => {
result.fileUrl = file.fileUrl
if (file.statusCode === 200) {
that.wv.evalJS(`receiveOcrBack('${JSON.stringify(result)}')`)
uni.showToast({
icon: "success",
title: "图片上传成功"
})
} else {
uni.showToast({
icon: "success",
title: "图片上传失败"
})
}
}).catch(err => {
console.log(err)
uni.showToast({
icon: 'error',
title: "图片上传失败"
})
})
} else if (res.code == 10) {
uni.showToast({
icon: "none",
title: "请重拍一张照片试一试"
})
} else {
uni.showToast({
icon: "none",
title: "请重拍一张照片试一试"
})
}
})
} catch (err) {
console.log(err, 'OCR识别错误')
}
},
// 专门为OCR页面做的
SetReloadFlag(flag) {
if (flag === 'NO') {
uni.setStorageSync('reloadFlag', 'true')
} else {
if (uni.getStorageSync('reloadFlag')) uni.removeStorageSync('reloadFlag')
}
},
// 隐藏导航了
HideNavBar() {
try {
let pages = getCurrentPages();
let page = pages[pages.length - 1];
let currentWebView = page.$getAppWebview();
let titleNView = currentWebView.getStyle().titleNView;
console.log(titleNView, 'titleNView的值')
currentWebView.setStyle({
titleNView: false
})
} catch (err) {
this.toast('隐藏导航报错')
}
},
// 显示导航了
ShowNavBar() {
try {
let pages = getCurrentPages();
let page = pages[pages.length - 1];
let currentWebView = page.$getAppWebview();
let titleNView = currentWebView.getStyle().titleNView;
console.log(titleNView, 'titleNView的值')
currentWebView.setStyle({
titleNView: {}
})
} catch (err) {
this.toast('显示导航报错')
}
},
// 活体认证
async Camera_Live(config) {
// 检查相机权限
// if (!this.CheckCamera()) return;
const that = this;
try {
LF.Face_UP({
...config
}, (res) => {
if (res.code === 1000) {
const {
image
} = res;
const faceImage = image.replace(/\n/g, '')
const result = `data:image/png;base64,${faceImage}`;
UploadFile(config, result).then(file => {
if (file.statusCode === 200) {
const faceImgUrl = file.fileUrl;
// 提交活体检测
that.GetWebView().evalJS(
`receiveLiveBack(${JSON.stringify({ fileUrl: faceImgUrl })})`
)
} else {
uni.showToast({
icon: "success",
title: "认证失败"
})
}
}).catch(err => {
uni.showToast({
icon: 'error',
title: "认证失败"
})
})
}
})
} catch (err) {
console.log(err, 'LIVE活体识别错误')
}
},
// 获取设备信息
async GetDeviceInfo() {
try {
const res = await loadLocation();
this.GetWebView().evalJS(`receiveGetDeviceInfo('${JSON.stringify(res)}')`)
} catch (err) {
console.log(err, '设备信息报错')
this.GetWebView().evalJS(`receiveGetDeviceInfo('${JSON.stringify(err)}')`)
}
},
// 获取全部通讯录
GetContacts() {
const that = this;
try {
CheckContactPermission((data) => {
that.GetWebView().evalJS(`receiveContactsBack('${JSON.stringify(data)}')`)
})
} catch (err) {
console.log(err, '获取全部用户通讯录错误')
}
},
// 通讯录选择
PickContact() {
const that = this;
try {
CheckContactPermission((data) => {
SelectContact((contact) => {
that.GetWebView().evalJS(
`receivePickContactsBack('${JSON.stringify(contact)}')`)
})
})
} catch (err) {
console.log(err, '选择用户通讯录错误')
}
},
// 图片选择上传
PickImage(config) {
console.log(config, '参数')
const that = this;
try {
uni.chooseImage({
count: 1,
sourceType: ["album", "camera"],
success: (res) => {
if (res.tempFiles) {
const file = res.tempFiles[0];
UploadFile(config, file, true).then(file => {
if (file.statusCode === 200) {
const faceImgUrl = file.fileUrl;
console.log(faceImgUrl, '上传成功后的地址')
// 提交活体检测
that.GetWebView().evalJS(`receiveImage(${JSON.stringify({ fileUrl: file.fileUrl })})`
)
} else {
uni.showToast({
icon: "success",
title: "上传图片失败"
})
}
}).catch(err => {
uni.showToast({
icon: 'error',
title: "上传图片报错"
})
})
}
},
fail: () => {
console.log('选择图片报错')
},
});
} catch (err) {
console.log(err, 'H5调用PickImage方法报错')
}
},
// 检查文件和相机权限
async CheckFileAndCamera() {
const that = this;
if (plus.os.name == "iOS") {
const iosFirstCamera = uni.getStorageSync("iosFirstCamera"); // 是不是第一次开启相机
if (iosFirstCamera !== "false") {
uni.setStorageSync("iosFirstCamera", "false"); // 设为false就代表不是第一次开启相机
} else {
if (!Permission.judgeIosPermission('camera') || Permission.judgeIosPermission('photoLibrary')) {
that.GetWebView().evalJS(`receiveCheckFileAndCamera(${JSON.stringify({ flag: "false" })})`);
return false
}
}
} else {
const cameraFlag = await Permission.requestAndroidPermission('android.permission.CAMERA');
const fileFlag = await Permission.requestAndroidPermission('android.permission.READ_EXTERNAL_STORAGE');
if (cameraFlag != 1 || fileFlag !=1 ) {
that.GetWebView().evalJS(`receiveCheckFileAndCamera(${JSON.stringify({ flag: "false" })})`)
return false
}
}
that.GetWebView().evalJS(`receiveCheckFileAndCamera(${JSON.stringify({ flag: "true" })})`)
return true;
},
// 检测相机权限
async CheckCamera() {
const that = this;
if (plus.os.name == "iOS") {
const iosFirstCamera = uni.getStorageSync("iosFirstCamera"); // 是不是第一次开启相机
if (iosFirstCamera !== "false") {
uni.setStorageSync("iosFirstCamera", "false"); // 设为false就代表不是第一次开启相机
} else {
if (!Permission.judgeIosPermission('camera')) {
that.GetWebView().evalJS(`receiveCheckCamera(${JSON.stringify({ flag: "false" })})`);
uni.showModal({
title: "提示",
content: "您已经关闭相机权限,去设置",
success: function (res) {
if (res.confirm) {
Permission.gotoAppPermissionSetting();
}
},
});
return false
}
}
} else {
const result = await Permission.requestAndroidPermission('android.permission.CAMERA');
if (result != 1) {
uni.showModal({
title: "提示",
content: "您已经关闭相机权限,去设置",
success: function (res) {
if (res.confirm) {
Permission.gotoAppPermissionSetting();
}
}
})
that.GetWebView().evalJS(`receiveCheckCamera(${JSON.stringify({ flag: "false" })})`)
return false
}
}
that.GetWebView().evalJS(`receiveCheckCamera(${JSON.stringify({ flag: "true" })})`)
return true;
}
}
}
</script>
<style lang="less" scoped>
.page-web {
width: 100vw;
height: 100vh;
web-view {
width: 100%;
height: 100%;
}
}
</style>
\ No newline at end of file
......@@ -58,14 +58,15 @@ export const switchShowTabbar = async () => {
try {
const res = await API.initTabBar()
const { data } = res.result
uni.setStorageSync('showIndex', data)
if (data == true) {
if (data) {
uni.setStorageSync('loanSwitch',true)
uni.setTabBarItem({
index: 1,
text: '贷款',
visible: true,
})
} else {
uni.setStorageSync('loanSwitch',false)
uni.setTabBarItem({
index: 1,
visible: false
......
......@@ -48,9 +48,13 @@ const request = async (url, type, data) => {
if (data.success == true) {
return resolve(data)
} else {
if (data.code == '403') uni.removeStorageSync('token')
return reject(data)
if (data.code == '403'){
// uni.removeStorageSync('token')
uni.clearStorageSync();
}
return uni.redirectTo({
url:"/pages/login/login"
})
}
} else {
return reject({ ...data, message: res.errMsg })
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment