3ef94794 by joe

1

1 parent b55ff84b
Showing 23 changed files with 6 additions and 6 deletions
NODE_ENV = 'development'
VUE_APP_TITLE = 'development'
VUE_APP_BASE_URL= 'https://ow.go.qudone.com'
VUE_APP_BASE_URL= 'http://localhost:9101'
VUE_APP_RSA_PUBLIC_KEY = 'B5FE03847F02046C47292AF0FF2DE88977241483DD40C123046EB39CBE4C48167B120096CFF12CD16559322884A3C56FA92B07B89AB51FC8C91A75127622151DDD730DFF1F993D5A290CEAC0BBA7FC88285D8994ACBAFF50101EDE9A0925AD5DFFAFE96D53C370E9C5B37DF2F871F81C4D7CA6B7EC37FF459C07975AD9A74A95'
VUE_APP_RSA_KEY_INDEX = '10001'
......
......@@ -9,7 +9,7 @@
<link rel="stylesheet" href="./css/pure-min.css">
<link rel="stylesheet" href="./css/grids-responsive-min.css">
<title>平安人寿保险官网</title>
<link href="static/js/0.1573652689022.js" rel="prefetch"><link href="static/js/1.1573652689022.js" rel="prefetch"><link href="static/js/10.1573652689022.js" rel="prefetch"><link href="static/js/11.1573652689022.js" rel="prefetch"><link href="static/js/12.1573652689022.js" rel="prefetch"><link href="static/js/13.1573652689022.js" rel="prefetch"><link href="static/js/14.1573652689022.js" rel="prefetch"><link href="static/js/15.1573652689022.js" rel="prefetch"><link href="static/js/16.1573652689022.js" rel="prefetch"><link href="static/js/2.1573652689022.js" rel="prefetch"><link href="static/js/3.1573652689022.js" rel="prefetch"><link href="static/js/4.1573652689022.js" rel="prefetch"><link href="static/js/5.1573652689022.js" rel="prefetch"><link href="static/js/6.1573652689022.js" rel="prefetch"><link href="static/js/7.1573652689022.js" rel="prefetch"><link href="static/js/8.1573652689022.js" rel="prefetch"><link href="static/js/9.1573652689022.js" rel="prefetch"><link href="static/js/app.1573652689022.js" rel="preload" as="script"></head>
<link href="static/js/0.1574223183500.js" rel="prefetch"><link href="static/js/1.1574223183500.js" rel="prefetch"><link href="static/js/10.1574223183500.js" rel="prefetch"><link href="static/js/11.1574223183500.js" rel="prefetch"><link href="static/js/12.1574223183500.js" rel="prefetch"><link href="static/js/13.1574223183500.js" rel="prefetch"><link href="static/js/14.1574223183500.js" rel="prefetch"><link href="static/js/15.1574223183500.js" rel="prefetch"><link href="static/js/16.1574223183500.js" rel="prefetch"><link href="static/js/2.1574223183500.js" rel="prefetch"><link href="static/js/3.1574223183500.js" rel="prefetch"><link href="static/js/4.1574223183500.js" rel="prefetch"><link href="static/js/5.1574223183500.js" rel="prefetch"><link href="static/js/6.1574223183500.js" rel="prefetch"><link href="static/js/7.1574223183500.js" rel="prefetch"><link href="static/js/8.1574223183500.js" rel="prefetch"><link href="static/js/9.1574223183500.js" rel="prefetch"><link href="static/js/app.1574223183500.js" rel="preload" as="script"></head>
<body>
<noscript>
......@@ -19,6 +19,6 @@
<div id="app"></div>
<!-- built files will be auto injected -->
<script src="./js/unionrsa.js"></script>
<script type="text/javascript" src="static/js/app.1573652689022.js"></script></body>
<script type="text/javascript" src="static/js/app.1574223183500.js"></script></body>
</html>
......
......@@ -14,10 +14,10 @@ function Toast(msg) {
// 服务器地址
// let base = process.env.REQUEST_DOMAIN || "http://localhost:9101";
// let base = COM.baseUrl;
console.log(process.env);
let base = "";
const axios = axiosIns.create({
// baseURL: process.env.VUE_APP_BASE_URL || "http://localhost:9101",
baseURL: "http://localhost:9101",
baseURL: process.env.VUE_APP_BASE_URL,
timeout: 5000
})
......
......@@ -423,7 +423,7 @@ export default {
url: api.otpRegisterAndLogin,
data: data
}).then(response => {
this._handlerLoginResponse(response);
})
}
},
......