Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Fedex
/
iClear-Connect-Pre-Clearance
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
jinhui.wang
2025-04-01 11:23:47 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f529b9923ed5e161f8b1b4365abdf5dba89446d4
f529b992
1 parent
7f6befc3
参数修改,路径修改
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
22 additions
and
11 deletions
web/.env.uat
web/src/assets/styles/fedex.scss
web/src/layout/components/Navbar.vue
web/src/router/index.js
web/src/utils/request.js
web/src/views/WaybillInquiry/index.vue
web/src/views/login.vue
web/src/views/redjrectLogin.vue
web/.env.uat
View file @
f529b99
...
...
@@ -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'
...
...
web/src/assets/styles/fedex.scss
View file @
f529b99
...
...
@@ -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
;
...
...
web/src/layout/components/Navbar.vue
View file @
f529b99
...
...
@@ -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
;
});
});
},
...
...
web/src/router/index.js
View file @
f529b99
...
...
@@ -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
,
...
...
web/src/utils/request.js
View file @
f529b99
...
...
@@ -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
===
1000
4
)
{
if
(
code
===
1000
1
||
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
)
{
...
...
web/src/views/WaybillInquiry/index.vue
View file @
f529b99
...
...
@@ -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"
...
...
web/src/views/login.vue
View file @
f529b99
...
...
@@ -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;
...
...
web/src/views/redjrectLogin.vue
View file @
f529b99
...
...
@@ -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;
}
},
...
...
Please
register
or
login
to post a comment