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
2024-12-25 14:31:18 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
dbc0f2c1358549986fb890befb6c09b2f6688419
dbc0f2c1
1 parent
0e87adb4
缓存修改
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
5 deletions
web/src/layout/components/AppMain.vue
web/src/layout/index.vue
web/src/views/WaybillInquiry/index.vue
web/src/views/uploadDetail/headData.vue
web/src/layout/components/AppMain.vue
View file @
dbc0f2c
...
...
@@ -16,7 +16,7 @@ export default {
return this.$store.state.tagsView.cachedViews
},
key() {
return this.$route.
p
ath
return this.$route.
fullP
ath
}
}
}
...
...
web/src/layout/index.vue
View file @
dbc0f2c
...
...
@@ -11,7 +11,7 @@
/>
<div :class="{ 'fixed-header': fixedHeader }">
<navbar />
<tags-view v-
if
="needTagsView" />
<tags-view v-
show
="needTagsView" />
</div>
<ViewOption :activeRoute="activeRoute"> </ViewOption>
<div :class="{ hasTagsView: needTagsView }" class="main-container">
...
...
web/src/views/WaybillInquiry/index.vue
View file @
dbc0f2c
...
...
@@ -145,7 +145,7 @@
>{{ scope.row.consignmentCode }}</span
>
</div>
<div v-else-if="item.prop == 'recipientContactName'">
<
!-- <
div v-else-if="item.prop == 'recipientContactName'">
<span
v-if="
scope.row.userUuid == $store.getters.userData.userUuid ||
...
...
@@ -177,7 +177,7 @@
"
>{{ scope.row.shipperCountry }}</span
>
</div>
</div>
-->
<div v-else-if="item.prop == 'createUserName'">
<div
:class="{
...
...
web/src/views/uploadDetail/headData.vue
View file @
dbc0f2c
...
...
@@ -820,7 +820,9 @@ export default {
setTimeout(() => {
if (res.code === 200) {
res.data.message = res.msg;
this.oldData.id = res.data.consignment.id;
if (res.data.consignment != null) {
this.oldData.id = res.data.consignment.id;
}
resolve(res);
} else {
this.msgWarning(res.msg);
...
...
Please
register
or
login
to post a comment