71584341 by joe

1

1 parent 763390f7
......@@ -11,10 +11,7 @@ function Toast(msg) {
// axios.defaults.baseURL = ""
// 服务器地址
let base = "https://ow.go.qudone.com";
if (location.href.indexOf("//k.wxpai.cn") > 0) {
base = "https://api.k.wxpai.cn/bizproxy"
}
let base = "http://localhost:9101";
// let base = COM.baseUrl;
// 请求拦截器
......
......@@ -8,7 +8,11 @@ export default {
data() {
return {
key: 'value',
type: 1, // 1:帐密登陆 2:OTP登陆
type: 1, // 1:帐密登陆 2:OTP登陆,
values : {
// 返回的token,串连整个流程,后台安全校验使用
token : "",
}
}
},
components: {},
......@@ -43,7 +47,11 @@ export default {
onLoginTypeHandler(val) {
this.type = val;
},
initData() {}
initData() {},
// 是否显示图形二维码
handlerIsShowImageVcode(){
}
},
mounted() {},
created() {}
......