mirror of
https://github.com/sunniejs/vue-h5-template.git
synced 2025-04-06 03:57:50 +08:00
修改全局变量VUE_APP_ENV
This commit is contained in:
parent
a65a25d761
commit
09485e7952
@ -1,8 +1,8 @@
|
|||||||
NODE_ENV
|
NODE_ENV='development'
|
||||||
# just a flag
|
# must start with VUE_APP_
|
||||||
ENV = 'development'
|
VUE_APP_ENV = 'development'
|
||||||
#base url
|
#base url
|
||||||
BASE_URL = https://www.xxx.com/
|
BASE_URL = 'https://www.xxx.com/'
|
||||||
# base api
|
# base api
|
||||||
VUE_APP_BASE_API = '/dev-api'
|
VUE_APP_BASE_API = '/dev-api'
|
||||||
VUE_CLI_BABEL_TRANSPILE_MODULES = true
|
VUE_CLI_BABEL_TRANSPILE_MODULES = true
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
# just a flag
|
NODE_ENV='production'
|
||||||
ENV = 'production'
|
# must start with VUE_APP_
|
||||||
|
VUE_APP_ENV = 'production'
|
||||||
#base url
|
#base url
|
||||||
BASE_URL = https://www.top1buyer.com/
|
BASE_URL = https://www.top1buyer.com/
|
||||||
# base api
|
# base api
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
NODE_ENV = production
|
NODE_ENV='production'
|
||||||
|
# must start with VUE_APP_
|
||||||
# just a flag
|
VUE_APP_ENV = 'staging'
|
||||||
ENV = 'staging'
|
#base url
|
||||||
#base url
|
#base url
|
||||||
BASE_URL = https://www.top1buyer.com/
|
BASE_URL = https://www.top1buyer.com/
|
||||||
# base api
|
# base api
|
||||||
|
@ -3,6 +3,7 @@ import request from '@/utils/request'
|
|||||||
import { api } from '@/config'
|
import { api } from '@/config'
|
||||||
// api
|
// api
|
||||||
const { common_api } = api
|
const { common_api } = api
|
||||||
|
|
||||||
// 登录
|
// 登录
|
||||||
export function login(params) {
|
export function login(params) {
|
||||||
return request({
|
return request({
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
// 根据环境引入不同配置 process.env.NODE_ENV
|
// 根据环境引入不同配置 process.env.NODE_ENV
|
||||||
const config = require('./env.' + process.env.ENV)
|
const config = require('./env.' + process.env.VUE_APP_ENV)
|
||||||
console.log( process.env.ENV)
|
|
||||||
module.exports = config
|
module.exports = config
|
||||||
|
@ -1,76 +0,0 @@
|
|||||||
import axios from 'axios'
|
|
||||||
import store from '@/store'
|
|
||||||
|
|
||||||
// create an axios instance
|
|
||||||
const service = axios.create({
|
|
||||||
baseURL: process.env.VUE_APP_BASE_API, // url = base url + request url
|
|
||||||
withCredentials: true, // send cookies when cross-domain requests
|
|
||||||
timeout: 5000 // request timeout
|
|
||||||
})
|
|
||||||
|
|
||||||
// request interceptor
|
|
||||||
service.interceptors.request.use(
|
|
||||||
config => {
|
|
||||||
// do something before request is sent
|
|
||||||
if (store.getters.token) {
|
|
||||||
// let each request carry token
|
|
||||||
// ['X-Token'] is a custom headers key
|
|
||||||
// please modify it according to the actual situation
|
|
||||||
config.headers['X-Token'] = ''
|
|
||||||
}
|
|
||||||
return config
|
|
||||||
},
|
|
||||||
error => {
|
|
||||||
// do something with request error
|
|
||||||
console.log(error) // for debug
|
|
||||||
return Promise.reject(error)
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
// response interceptor
|
|
||||||
service.interceptors.response.use(
|
|
||||||
response => {
|
|
||||||
const res = response.data
|
|
||||||
|
|
||||||
// if the custom code is not 20000, it is judged as an error.
|
|
||||||
if (res.code !== 20000) {
|
|
||||||
Message({
|
|
||||||
message: res.message || 'error',
|
|
||||||
type: 'error',
|
|
||||||
duration: 5 * 1000
|
|
||||||
})
|
|
||||||
|
|
||||||
// 50008: Illegal token; 50012: Other clients logged in; 50014: Token expired;
|
|
||||||
if (res.code === 50008 || res.code === 50012 || res.code === 50014) {
|
|
||||||
// to re-login
|
|
||||||
MessageBox.confirm(
|
|
||||||
'You have been logged out, you can cancel to stay on this page, or log in again',
|
|
||||||
'Confirm logout',
|
|
||||||
{
|
|
||||||
confirmButtonText: 'Re-Login',
|
|
||||||
cancelButtonText: 'Cancel',
|
|
||||||
type: 'warning'
|
|
||||||
}
|
|
||||||
).then(() => {
|
|
||||||
store.dispatch('user/resetToken').then(() => {
|
|
||||||
location.reload()
|
|
||||||
})
|
|
||||||
})
|
|
||||||
}
|
|
||||||
return Promise.reject(res.message || 'error')
|
|
||||||
} else {
|
|
||||||
return res
|
|
||||||
}
|
|
||||||
},
|
|
||||||
error => {
|
|
||||||
console.log('err' + error) // for debug
|
|
||||||
Message({
|
|
||||||
message: error.message,
|
|
||||||
type: 'error',
|
|
||||||
duration: 5 * 1000
|
|
||||||
})
|
|
||||||
return Promise.reject(error)
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
export default service
|
|
@ -1,9 +1,10 @@
|
|||||||
import axios from 'axios'
|
import axios from 'axios'
|
||||||
import store from '@/store'
|
import store from '@/store'
|
||||||
import { Toast } from 'vant'
|
import { Toast } from 'vant'
|
||||||
|
import { api } from '@/config'
|
||||||
// create an axios instance
|
// create an axios instance
|
||||||
const service = axios.create({
|
const service = axios.create({
|
||||||
baseURL: process.env.BASE_URL, // url = base url + request url
|
baseURL: api.base_api, // url = base url + request url
|
||||||
withCredentials: true, // send cookies when cross-domain requests
|
withCredentials: true, // send cookies when cross-domain requests
|
||||||
timeout: 5000 // request timeout
|
timeout: 5000 // request timeout
|
||||||
})
|
})
|
||||||
|
@ -7,30 +7,32 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import {
|
// import { api } from '@/config'
|
||||||
Button
|
import {
|
||||||
} from 'vant'
|
Button
|
||||||
export default {
|
} from 'vant'
|
||||||
components: {
|
export default {
|
||||||
'van-button': Button
|
components: {
|
||||||
},
|
'van-button': Button
|
||||||
|
},
|
||||||
|
|
||||||
data() {
|
data () {
|
||||||
return {}
|
return {}
|
||||||
},
|
},
|
||||||
|
|
||||||
computed: {},
|
computed: {},
|
||||||
|
|
||||||
mounted() {},
|
mounted () {
|
||||||
|
console.log(process.env)
|
||||||
|
},
|
||||||
|
|
||||||
methods: {}
|
methods: {}
|
||||||
}
|
}
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
<style lang='scss' scoped>
|
<style lang='scss' scoped>
|
||||||
h1 {
|
h1 {
|
||||||
background: red;
|
background: red;
|
||||||
width: 375px;
|
width: 375px;
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
'use strict'
|
'use strict'
|
||||||
const path = require('path')
|
const path = require('path')
|
||||||
const defaultSettings = require('./src/config/index.js')
|
const defaultSettings = require('./src/config/index.js')
|
||||||
function resolve(dir) {
|
function resolve(dir) {
|
||||||
return path.join(__dirname, dir)
|
return path.join(__dirname, dir)
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user