Commit e8099181 authored by caimeng's avatar caimeng

配合多典花进行优化1

parent dfee72cb
...@@ -9,9 +9,6 @@ export default { ...@@ -9,9 +9,6 @@ export default {
}, },
onLaunch: async function () { onLaunch: async function () {
// #ifdef APP-PLUS // #ifdef APP-PLUS
// var w = plus.webview.open('hybrid/html/advertise/advertise.html','splashscreen', { // var w = plus.webview.open('hybrid/html/advertise/advertise.html','splashscreen', {
// top: 0, // top: 0,
......
...@@ -229,13 +229,6 @@ ...@@ -229,13 +229,6 @@
"enablePullDownRefresh": false, "enablePullDownRefresh": false,
"navigationBarTitleText": "" "navigationBarTitleText": ""
} }
},
{
"path": "finance/index",
"style": {
"enablePullDownRefresh": true,
"navigationStyle": "custom"
}
} }
] ]
} }
......
...@@ -214,15 +214,12 @@ export default { ...@@ -214,15 +214,12 @@ export default {
GetTop() { GetTop() {
var _this = this var _this = this
uni.getSystemInfo({ uni.getSystemInfo({
success: (res) => { success: () => {
const query = uni.createSelectorQuery().in(this); const query = uni.createSelectorQuery().in(this);
query.select("#box").boundingClientRect((data) => { query.select("#box").boundingClientRect((data) => {
_this.Topdistance = data.top _this.Topdistance = data.top
}).exec(); }).exec();
},
fail: (res) => {
} }
}) })
}, },
......
...@@ -35,18 +35,19 @@ ...@@ -35,18 +35,19 @@
</template> </template>
<script> <script>
import {
switchShowTabbar
} from '@/utils/index'
import { switchShowTabbar } from '@/utils/index' export default {
export default {
data() { data() {
return { return {
clickStatus: false, clickStatus: false,
mobile: '', mobile: '',
sendcode: '', sendcode: '',
canSendCode: true, canSendCode: true,
timer: null,//倒计时 timer: null, //倒计时
count: '',//倒计时 count: '', //倒计时
smsDownCacheCode: '', smsDownCacheCode: '',
// 协议列表 // 协议列表
...@@ -61,12 +62,23 @@ export default { ...@@ -61,12 +62,23 @@ export default {
methods: { methods: {
// 登录页返回 // 登录页返回
GoBack() { GoBack() {
const pages = getCurrentPages();
console.log(pages.length, '数量')
if (pages.length <= 1) {
uni.switchTab({
url: "/pages/index/index"
})
} else {
this.Back() this.Back()
}
}, },
// 预加载 // 预加载
initPreloadH5() { initPreloadH5() {
try { try {
const { h5Url } = JSON.parse(uni.getStorageSync('APP-SETTING')); const {
h5Url
} = JSON.parse(uni.getStorageSync('APP-SETTING'));
// 预加载H5 // 预加载H5
plus.webview.prefetchURL(h5Url); plus.webview.prefetchURL(h5Url);
...@@ -80,9 +92,11 @@ export default { ...@@ -80,9 +92,11 @@ export default {
}, },
async init() { async init() {
const $App_Setting = uni.getStorageSync("APP-SETTING") const $App_Setting = uni.getStorageSync("APP-SETTING")
console.log($App_Setting,'内容呢') console.log($App_Setting, '内容呢')
if ($App_Setting) { if ($App_Setting) {
const { protocol } = JSON.parse($App_Setting) const {
protocol
} = JSON.parse($App_Setting)
this.protocolList = JSON.parse(protocol) this.protocolList = JSON.parse(protocol)
} }
}, },
...@@ -91,11 +105,15 @@ export default { ...@@ -91,11 +105,15 @@ export default {
}, },
GetVerifyCode() { GetVerifyCode() {
const self = this const self = this
const params = {mobile:this.mobile} const params = {
console.log(params,'日') mobile: this.mobile
}
console.log(params, '日')
self.$request('/pawn/client/sendCode', 'POST', params).then(res => { self.$request('/pawn/client/sendCode', 'POST', params).then(res => {
console.log(res, 'sendCode'); console.log(res, 'sendCode');
const { smsBizNo } = res.result const {
smsBizNo
} = res.result
if (smsBizNo) { if (smsBizNo) {
self.countdowns() self.countdowns()
self.smsDownCacheCode = smsBizNo self.smsDownCacheCode = smsBizNo
...@@ -163,9 +181,14 @@ export default { ...@@ -163,9 +181,14 @@ export default {
"verifyCode": self.sendcode "verifyCode": self.sendcode
} }
self.$request('/pawn/client/login', 'POST', params).then(res => { self.$request('/pawn/client/login', 'POST', params).then(res => {
const { userInfo, token } = res.result const {
userInfo,
token
} = res.result
if (userInfo) { if (userInfo) {
const { deviceId } = userInfo const {
deviceId
} = userInfo
uni.setStorageSync('deviceId', deviceId) uni.setStorageSync('deviceId', deviceId)
} }
...@@ -191,11 +214,15 @@ export default { ...@@ -191,11 +214,15 @@ export default {
"promoCode": 'own' "promoCode": 'own'
} }
self.$request('/app/v1/loginNoCheck', 'POST', params).then(res => { self.$request('/app/v1/loginNoCheck', 'POST', params).then(res => {
const { deviceId, token } = res.result const {
const cacheData = Object.assign({}, res.result, { mobile: self.mobile }) deviceId,
token
} = res.result
const cacheData = Object.assign({}, res.result, {
mobile: self.mobile
})
uni.setStorageSync('user_info_obj', JSON.stringify(cacheData)); uni.setStorageSync('user_info_obj', JSON.stringify(cacheData));
uni.setStorageSync('mobileCall', self.mobile)
uni.setStorageSync('deviceId', deviceId) uni.setStorageSync('deviceId', deviceId)
uni.setStorageSync('tokenFinance', token) uni.setStorageSync('tokenFinance', token)
...@@ -215,7 +242,7 @@ export default { ...@@ -215,7 +242,7 @@ export default {
this[key] = val this[key] = val
} }
} }
} }
</script> </script>
<style src='./index.less' lang="less" scoped></style> <style src='./index.less' lang="less" scoped></style>
\ No newline at end of file
...@@ -6,16 +6,14 @@ ...@@ -6,16 +6,14 @@
<view class='my-header'> <view class='my-header'>
<image class='header-img' src='https://ddh.yyhock.com/ddhMall/my-icon.png'></image> <image class='header-img' src='https://ddh.yyhock.com/ddhMall/my-icon.png'></image>
<view class='header-des'> <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-name' v-else @click='GoLogin'>注册/登录</view>
<view class='des-text'>多典花承诺保护您的信息安全</view> <view class='des-text'>多典花承诺保护您的信息安全</view>
</view> </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='my-line'>
<view class='line-left' v-for="item in menuBar" :key="item.id" @click="goBar(item)"> <view class='line-left' v-for="item in menuBar" :key="item.id" @click="goBar(item)">
<image class='left-img' :src='item.iconUrl'></image> <image class='left-img' :src='item.iconUrl'></image>
...@@ -54,10 +52,9 @@ ...@@ -54,10 +52,9 @@
</view> </view>
</view> </view>
</template>
<!-- 未登录状态 -->
<template v-else> <!-- 未登录状态 -->
<template v-if="false">
<view class='my-box-s'> <view class='my-box-s'>
<view class='s-con'> <view class='s-con'>
...@@ -132,16 +129,16 @@ ...@@ -132,16 +129,16 @@
<script> <script>
import { switchShowTabbar } from '@/utils/index' import { switchShowTabbar } from '@/utils/index'
import { isLogin } from '../../utils';
const APP = JSON.parse(uni.getStorageSync('APP-SETTING')); 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') : ''; const mobile = uni.getStorageSync('l-mobile') ? uni.getStorageSync('l-mobile') : '';
export default { export default {
data() { data() {
return { return {
isLogin: hasToken, isLogin: false,
userTel: mobile, loanSwitch: false,
mobile: '',
menuList: [], menuList: [],
mobileNum: '', mobileNum: '',
menuBar: [], menuBar: [],
...@@ -152,9 +149,15 @@ export default { ...@@ -152,9 +149,15 @@ export default {
} }
}, },
onShow() { 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 // 显示隐藏tabBar
switchShowTabbar() switchShowTabbar()
// 埋点 // 埋点
...@@ -162,7 +165,7 @@ export default { ...@@ -162,7 +165,7 @@ export default {
}, },
// 页面下拉刷新 // 页面下拉刷新
async onPullDownRefresh() { async onPullDownRefresh() {
await this.init() await this.initMine()
setTimeout(() => { setTimeout(() => {
uni.stopPullDownRefresh(); uni.stopPullDownRefresh();
}, 1000); }, 1000);
...@@ -174,35 +177,14 @@ export default { ...@@ -174,35 +177,14 @@ export default {
GoLogin() { GoLogin() {
this.Go('uni:/pages/login/login') 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() { initMine() {
const self = this const self = this
self.$request('/app/v1/userIndex', 'GET').then(res => { self.$request('/app/v1/userIndex', 'GET').then(res => {
const { menuBar, user, baseMenuBar, extMenuBarList } = res.result const { menuBar, baseMenuBar, extMenuBarList } = res.result
const showIndex = uni.getStorageSync('showIndex')
console.log(showIndex, 'myindex')
if (showIndex == true) {
self.menuBar = menuBar self.menuBar = menuBar
} else {
self.menuBar = []
}
self.menuList = baseMenuBar self.menuList = baseMenuBar
self.extMenuBarList = extMenuBarList self.extMenuBarList = extMenuBarList
self.userTel = ''
if (user.cell) self.userTel = user.cell
this.isLogin = true
}).catch(err => { }).catch(err => {
console.log(err, '请求出错') console.log(err, '请求出错')
...@@ -231,29 +213,30 @@ export default { ...@@ -231,29 +213,30 @@ export default {
}, },
goBar(item) { 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) { switch (item.title) {
case "我的还款": case "我的还款":
this.buryingPoint('app:my_repayment_click') 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; break;
case "申请记录": case "申请记录":
this.buryingPoint('app:my_application_record_click') this.buryingPoint('app:my_application_record_click')
// const url='http://192.168.0.82:8080/#/loanRecord' break;
newPath = H5.h5Url + item.linkUrl }
// newPath =this.hFUrl+ item.linkUrl
uni.navigateTo({ uni.navigateTo({
url: `/pages/web/websrc?url=${newPath}` url: `/pages/web/websrc?url=${targetSrc}`
}) })
break;
default: } catch (err) {
break; console.log(err)
} }
}, },
goTel() { goTel() {
const self = this const self = this
......
...@@ -25,7 +25,7 @@ export default { ...@@ -25,7 +25,7 @@ export default {
canBack: false, canBack: false,
webviewStyles: { webviewStyles: {
progress: { progress: {
color: '#FF4050' color: '#5688E8'
} }
}, },
deviceStatus: '', deviceStatus: '',
...@@ -70,7 +70,8 @@ export default { ...@@ -70,7 +70,8 @@ export default {
const timestamp = new Date().getTime() const timestamp = new Date().getTime()
setTimeout(() => { setTimeout(() => {
const token = uni.getStorageSync('tokenFinance') 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, '刷新的地址') console.log($src, '刷新的地址')
that.src = $src that.src = $src
}, 100); }, 100);
...@@ -103,10 +104,7 @@ export default { ...@@ -103,10 +104,7 @@ export default {
}, },
onHide() { onHide() {
// uni.removeStorageSync('hasRefresh')
const user_info_obj = uni.getStorageSync('user_info_obj') ? JSON.parse(uni.getStorageSync('user_info_obj')) : {} 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)); uni.setStorageSync('user_info_obj', JSON.stringify(user_info_obj));
}, },
onShow() { onShow() {
......
...@@ -11,7 +11,6 @@ import { UploadFile } from './utils/uploads' ...@@ -11,7 +11,6 @@ import { UploadFile } from './utils/uploads'
import Permission from '@/js_sdk/wa-permission/permission' //权限工具类 import Permission from '@/js_sdk/wa-permission/permission' //权限工具类
const LF = uni.requireNativePlugin('AThree-LFv2') const LF = uni.requireNativePlugin('AThree-LFv2')
let token = uni.getStorageSync('token') let token = uni.getStorageSync('token')
let reloadTimeOut = null
export default { export default {
name: "WEB", name: "WEB",
data() { data() {
...@@ -22,7 +21,7 @@ export default { ...@@ -22,7 +21,7 @@ export default {
canBack: false, canBack: false,
webviewStyles: { webviewStyles: {
progress: { progress: {
color: '#FF4050' color: '#5688E8'
} }
}, },
deviceStatus: '', deviceStatus: '',
...@@ -56,16 +55,10 @@ export default { ...@@ -56,16 +55,10 @@ export default {
}, 1000) //如果是页面初始化调用时,需要延时一下 }, 1000) //如果是页面初始化调用时,需要延时一下
// #endif // #endif
}, },
onTabItemTap(e) {
console.log(e, 'tabItemTap')
this.wv && this.wv.evalJS(`callback({ 'action': 'OnShow' })`)
},
async onLoad(option) { async onLoad(option) {
const that = this const that = this;
if (option.url) that.src = option.url if (option.url) this.src = option.url
console.log(option, '参数') console.log(option.url,'地址')
uni.getStorage({ uni.getStorage({
key: 'm-device-info', key: 'm-device-info',
success: function (res) { success: function (res) {
...@@ -74,31 +67,12 @@ export default { ...@@ -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() { 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')):{} 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)); uni.setStorageSync('user_info_obj', JSON.stringify(user_info_obj));
}, },
methods: { methods: {
handleMessage(e) { handleMessage(e) {
const data = e.detail.data; const data = e.detail.data;
if (!data || data.lenght === 0) { if (!data || data.lenght === 0) {
...@@ -250,6 +224,7 @@ export default { ...@@ -250,6 +224,7 @@ export default {
this.toast('提示框报错') this.toast('提示框报错')
} }
}, },
// 实名认证正面 // 实名认证正面
Camera_OCR_Front(config) { Camera_OCR_Front(config) {
console.log('实名认证前面', config) console.log('实名认证前面', config)
...@@ -389,6 +364,7 @@ export default { ...@@ -389,6 +364,7 @@ export default {
this.toast('隐藏导航报错') this.toast('隐藏导航报错')
} }
}, },
// 显示导航了 // 显示导航了
ShowNavBar() { ShowNavBar() {
try { try {
...@@ -446,6 +422,7 @@ export default { ...@@ -446,6 +422,7 @@ export default {
console.log(err, 'LIVE活体识别错误') console.log(err, 'LIVE活体识别错误')
} }
}, },
// 活体认证 // 活体认证
async uniFace(config) { async uniFace(config) {
console.log(config, 'config') console.log(config, 'config')
...@@ -462,6 +439,7 @@ export default { ...@@ -462,6 +439,7 @@ export default {
} }
}, },
// 获取设备信息 // 获取设备信息
async GetDeviceInfo() { async GetDeviceInfo() {
try { try {
......
This diff is collapsed.
...@@ -58,14 +58,15 @@ export const switchShowTabbar = async () => { ...@@ -58,14 +58,15 @@ export const switchShowTabbar = async () => {
try { try {
const res = await API.initTabBar() const res = await API.initTabBar()
const { data } = res.result const { data } = res.result
uni.setStorageSync('showIndex', data) if (data) {
if (data == true) { uni.setStorageSync('loanSwitch',true)
uni.setTabBarItem({ uni.setTabBarItem({
index: 1, index: 1,
text: '贷款', text: '贷款',
visible: true, visible: true,
}) })
} else { } else {
uni.setStorageSync('loanSwitch',false)
uni.setTabBarItem({ uni.setTabBarItem({
index: 1, index: 1,
visible: false visible: false
......
...@@ -48,9 +48,13 @@ const request = async (url, type, data) => { ...@@ -48,9 +48,13 @@ const request = async (url, type, data) => {
if (data.success == true) { if (data.success == true) {
return resolve(data) return resolve(data)
} else { } else {
if (data.code == '403') uni.removeStorageSync('token') if (data.code == '403'){
return reject(data) // uni.removeStorageSync('token')
uni.clearStorageSync();
}
return uni.redirectTo({
url:"/pages/login/login"
})
} }
} else { } else {
return reject({ ...data, message: res.errMsg }) 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