Commit e1367d71 by caoyanzhi

Merge branch 'feature/act-code' of http://git.gicdev.com/office/haoban-3 into feature/act-code

parents 5ce409fd 6475c2bf
......@@ -76,7 +76,7 @@ Vue.axios.interceptors.request.use(
Vue.axios.interceptors.response.use(
data => {
removePending(data.config); //在一个ajax响应后再执行一下取消操作,把已经完成的请求从pending中移除
if (data.data.hasOwnProperty('errorCode') && data.data.errorCode != 1) {
if (data.data.hasOwnProperty('errorCode') && data.data.errorCode != 1 && data.data.errorCode != 0) {
Message.error({ message: `${data.data.message}` });
}
if (data.data.hasOwnProperty('code') && data.data.code != 0) {
......
......@@ -133,7 +133,7 @@ export default {
width: 176px;
height: 176px;
margin: 11px 0 16px 0;
background-image: url('../assets/QRcode.png');
background-image: url('../assets/QRcode.jpg');
background-size: 176px auto;
}
.leadingText {
......
......@@ -204,7 +204,7 @@ export default {
z-index: 100;
width: 236px;
height: 236px;
background-image: url('../../../../../assets/QRcode.png');
background-image: url('../../../../../assets/QRcode.jpg');
background-size: 236px auto;
}
.leadingText {
......
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