Merge pull request 'ccaolc' (#2) from ccaolc into master

Reviewed-on: #2
lx
曹连存 2 years ago
commit dcac2db1fa
  1. 1
      pages/escalation/escalation.vue
  2. 10
      pages/home/home.vue
  3. 10
      utils/request.js

@ -126,7 +126,6 @@
onShow() {
this.start = this.datefn();
this.single = this.datefn()
console.log(this.start),'+++++++++++++++++++'
this.getByPage()
},
methods: {

@ -416,6 +416,7 @@
},
//
getSiteInfo(channelId) {
console.log('获取油站信息')
oliSiteApi.getSiteDetail(channelId).then(res => {
// //console.log(res)
if (res.code === 20000) {
@ -451,13 +452,7 @@
this.checkList = ''
this.checkFirst = false
uni.setStorageSync('checkFirst',false)
uni.setStorage({
key: 'Authorization',
data: res.data.authTokenDTO.accessToken,
success: () => {
//console.log('Authorization', res.data.authTokenDTO.accessToken)
}
})
uni.setStorageSync('Authorization',res.data.authTokenDTO.accessToken)
this.checkForE =false
uni.setStorageSync('userMenu', res.data.authTokenDTO.loginUser.roleMenus)
uni.setStorageSync('loginUser', {
@ -478,6 +473,7 @@
},
//
getUserInfo(id) {
console.log('获取油站基本资料')
//
oliSiteApi.getSiteBasicData(id).then(res => {
//console.log('', res)

@ -2,16 +2,16 @@ import axios from 'axios'
import utils from '@/utils/encode'
// const env = 'test' /* */
const env = 'test'// 仅用于测试、
// const env = 'production'
// const env = 'test'// 仅用于测试、
const env = 'production'
//42 洛超 /29 孙志华 /40 阿浩
// 测试日日顺时需要连阿浩
const testUrl = 'http://192.168.110.208:38080'
const testUrl = 'http://192.168.54:38080'
// const productionUrl = 'https://www.51xingka.net/oilApp' // 生产,加密 old
// const productionUrl = 'https://www.xingoil.com/adminapi' // 生产,加密 new
const productionUrl = 'http://uat.xingoil.com/adminapi' // 生产,加密 new
// const productionUrl = 'http://121.196.213.68/adminapi' //预生产
// const productionUrl = 'https://www.xingoil.com/adminapi' // 生产,加密 new
const productionUrl = 'http://uat.xingoil.com/adminapi'
// const env = process.env.NODE_ENV // 环境
const service = axios.create({
baseURL: env=='production'?productionUrl:testUrl, //

Loading…
Cancel
Save