jinhui.wang

参数修改,路径修改

......@@ -8,7 +8,7 @@ VUE_APP_Version = '1.0.0'
VUE_APP_WEB_ADDRESS = 'uat'
VUE_APP_BASE_API = 'https://exportdeclarationuat-tw.apac.fedex.com/'
VUE_APP_BASE_API = 'https://iclear-connectuat.apac.fedex.com'
VUE_APP_BASE_ROUTE = '/ipc'
......
......@@ -1178,6 +1178,16 @@ input:disabled {
}
}
.el-message-box {
.el-message-box__content {
word-wrap: break-word !important
}
}
.el-popper {
word-wrap: break-word !important
}
.el-table__body-wrapper {
&::-webkit-scrollbar {
height: 8px;
......
......@@ -161,7 +161,7 @@ export default {
type: "warning",
}).then(() => {
this.$store.dispatch("LogOut").then(() => {
location.href = "/ImpPer";
location.href = process.env.VUE_APP_BASE_LOGINOUT;
});
});
},
......
......@@ -43,7 +43,8 @@ export const constantRoutes = [
path: "/login",
component: (resolve) => require(["@/views/login"], resolve),
hidden: true,
}, {
},
{
path: "/redjrectLogin",
component: (resolve) => require(["@/views/redjrectLogin"], resolve),
hidden: true,
......
......@@ -58,9 +58,9 @@ service.interceptors.response.use(
const code = Number(res.data.code) || 200;
// 获取错误信息
const msg = errorCode[code] || res.data.msg || errorCode["default"];
if (code === 10004) {
if (code === 10001 || code === 10002 || code === 10003 || code === 10004 || code === 10005) {
MessageBox.alert(
"The login status has expired. You can continue to stay on this page or log in again.",
"Please log in again!",
"System prompt",
{
confirmButtonText: "Login again",
......@@ -69,7 +69,7 @@ service.interceptors.response.use(
}
).then(() => {
store.dispatch("FedLogOut").then(() => {
location.href = "/ImpPer";
location.href = process.env.VUE_APP_BASE_LOGINOUT;
});
});
} else if (code === 500) {
......
......@@ -97,10 +97,9 @@
ADD
</el-button>
<el-popover placement="top" width="430" trigger="hover">
<div>
If the waybill you want too upload thecustoms clearance files
<br />
is not listed,please click here to add the tracking number.
<div style="word-wrap: break-word !important">
If the waybill you want too upload thecustoms clearance files is
not listed,please click here to add the tracking number.
</div>
<svg-icon
slot="reference"
......
......@@ -266,6 +266,7 @@ export default {
height: 100%;
width: 100%;
font-size: 14px;
word-wrap: break-word !important;
.main-bg {
min-height: 400px;
position: relative;
......
......@@ -19,7 +19,7 @@ export default {
this.loading = false;
// this.$router.push({ path: '/login',query:{changePasswordType:this.$route.query.changePasswordType,loginname:this.$route.query.loginname} })
} else {
this.$router.push({ path: "/login" });
this.$router.push({ path: "/404" });
this.loading = false;
}
},
......