Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Fedex
/
imac-vue
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
Elements-SY
2023-10-13 11:00:09 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
cb465f9f6f4bac08a48dfec94c93cfc93fa25b69
cb465f9f
1 parent
203d5016
modify
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
2 deletions
src/components/YlForm/index.vue
src/views/et86Config/et86HsCodeBlack/index.vue
src/views/et86Config/et86RuleConfig/index.vue
src/views/et86Config/et86ShipmentDesc/index.vue
src/components/YlForm/index.vue
View file @
cb465f9
...
...
@@ -268,6 +268,7 @@
import request from "@/utils/request";
import { deepClone } from "@/utils";
export default {
name: "YlForm",
props: {
rowGutter: {
type: Number,
...
...
src/views/et86Config/et86HsCodeBlack/index.vue
View file @
cb465f9
...
...
@@ -70,6 +70,13 @@ export default {
multipleSelection: [],
};
},
watch: {
$route(to, from) {
if (to.name == this.$options.name) {
this.searchBtn();
}
},
},
created() {
// 黑名单查询
this.$nextTick(() => {
...
...
src/views/et86Config/et86RuleConfig/index.vue
View file @
cb465f9
...
...
@@ -73,8 +73,9 @@ export default {
watch: {
$route(to, from) {
// 如果是从edit页面进入的Et86RuleConfig页面,那么删除Et86RuleConfig页面缓存
if (from.name == "edit" && to.name == "Et86RuleConfig") {
store.dispatch("tagsView/delCachedView", to);
// store.dispatch("tagsView/delCachedView", to); // 删除当前路由组件Et86RuleConfig缓存
if (to.name == this.$options.name) {
this.searchBtn();
}
},
},
...
...
src/views/et86Config/et86ShipmentDesc/index.vue
View file @
cb465f9
...
...
@@ -72,6 +72,13 @@ export default {
multipleSelection: [],
};
},
watch: {
$route(to, from) {
if (to.name == this.$options.name) {
this.searchBtn();
}
},
},
created() {
// 黑名单查询
this.$nextTick(() => {
...
...
Please
register
or
login
to post a comment