Commit e9ddb18d authored by caimeng's avatar caimeng

1

parent 4ea05d26
......@@ -11,19 +11,19 @@ export default {
const appStart = uni.getStorageSync('appStart')
if (appStart) {
// uni.switchTab({
// url: "/pages/index/index",
// success: function () {
// plus.navigator.closeSplashscreen()
// }
// })
uni.navigateTo({
url: "/subPackage/setting/setting",
uni.switchTab({
url: "/pages/index/index",
success: function () {
plus.navigator.closeSplashscreen()
}
})
// uni.navigateTo({
// url: "/subPackage/setting/setting",
// success: function () {
// plus.navigator.closeSplashscreen()
// }
// })
} else {
uni.redirectTo({
......
......@@ -9,13 +9,13 @@ const request = async (url, type, data) => {
// 获取版本号
let AppVersion = uni.getStorageSync('m-header-version');
AppVersion = AppVersion === '1.0.8' ? AppVersion : '1.0.8';
const device = Object.assign({},JSON.parse(headerDevice))
const device = Object.assign({}, JSON.parse(headerDevice))
device.appVersion = AppVersion
console.log(device.appVersion,'设备头信息')
console.log(headerDevice, '设备头信息')
console.log('+++++++++++++++++++++++++从缓存拿数据')
rd = encodeURIComponent(headerDevice)
} else {
console.log(initHeaderDevice(),'=========================不从缓存拿数据')
console.log(initHeaderDevice(), '=========================不从缓存拿数据')
rd = JSON.stringify(initHeaderDevice())
}
......@@ -24,8 +24,17 @@ const request = async (url, type, data) => {
const token = uni.getStorageSync('token')
const tokenFinance = uni.getStorageSync('tokenFinance')
const $data = Object.assign({}, data);
const headers = {
Accept: "application/json;charset=UTF-8",
"Content-Type": "application/json;charset=UTF-8",
device: rd,
Authorization: tokenFinance, //贷超
Author: token, //多典花
}
console.log(baseUrl+url,'请求地址');
console.log(headers, '请求头');
console.log(baseUrl + url, '请求地址');
uni.request({
url: baseUrl + url,
......@@ -33,14 +42,8 @@ const request = async (url, type, data) => {
data: {
...data
},
timeout:10000,
header: {
Accept: "application/json;charset=UTF-8",
"Content-Type": "application/json;charset=UTF-8",
device: rd,
Authorization: tokenFinance, //贷超
Author: token, //多典花
},
timeout: 10000,
header: headers,
success: (res) => {
// #ifdef APP
......
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