Browse Source

修改缓存

master
pref_mail@163.com 1 year ago
parent
commit
93c68f3767
  1. 1
      src/page/index/layout.vue
  2. 6
      src/router/avue-router.js
  3. 1
      src/router/index.js
  4. 2365
      src/router/views/index.js
  5. 4
      src/views/distribution/deliverylist/distributionDeliveryList.vue
  6. 2
      src/views/distribution/inventory/delivery/distributionStockArticleSelf.vue
  7. 32
      src/views/distribution/inventory/distrilbutionBillLading.vue

1
src/page/index/layout.vue

@ -1,5 +1,6 @@
<template> <template>
<router-view #="{ Component }"> <router-view #="{ Component }">
<!-- {{ $store.getters.tagsKeep }} -->
<keep-alive :include="$store.getters.tagsKeep"> <keep-alive :include="$store.getters.tagsKeep">
<component :is="Component" /> <component :is="Component" />
</keep-alive> </keep-alive>

6
src/router/avue-router.js

@ -42,6 +42,7 @@ RouterPlugin.install = function (option = {}) {
}, },
//动态路由 //动态路由
formatRoutes: function (aMenu = [], first) { formatRoutes: function (aMenu = [], first) {
const aRouter = []; const aRouter = [];
const propsDefault = website.menu; const propsDefault = website.menu;
if (aMenu && aMenu.length === 0) return; if (aMenu && aMenu.length === 0) return;
@ -55,9 +56,6 @@ RouterPlugin.install = function (option = {}) {
query = oMenu[propsDefault.query], query = oMenu[propsDefault.query],
meta = oMenu[propsDefault.meta]; meta = oMenu[propsDefault.meta];
if (option.keepAlive) {
meta.keepAlive = option.keepAlive;
}
const isChild = !!(children && children.length !== 0); const isChild = !!(children && children.length !== 0);
const oRouter = { const oRouter = {
path: path, path: path,
@ -131,7 +129,7 @@ export const formatPath = (ele, first) => {
const propsDefault = website.menu; const propsDefault = website.menu;
const icon = ele[propsDefault.icon]; const icon = ele[propsDefault.icon];
ele[propsDefault.icon] = !icon ? propsDefault.iconDefault : icon; ele[propsDefault.icon] = !icon ? propsDefault.iconDefault : icon;
ele.meta = { keepAlive: ele.isOpen == 2 }; ele.meta = { keepAlive: ele.isOpen == 2 };
const iframeComponent = 'components/iframe/main'; const iframeComponent = 'components/iframe/main';
const iframeSrc = href => { const iframeSrc = href => {
return href.replace(/&/g, '#'); return href.replace(/&/g, '#');

1
src/router/index.js

@ -14,7 +14,6 @@ AvueRouter.install({
store: Store, store: Store,
router: Router, router: Router,
i18n: i18n, i18n: i18n,
keepAlive: true
}); });
Router.$avueRouter.formatRoutes(Store.getters.menuAll, true); Router.$avueRouter.formatRoutes(Store.getters.menuAll, true);

2365
src/router/views/index.js

File diff suppressed because it is too large Load Diff

4
src/views/distribution/deliverylist/distributionDeliveryList.vue

@ -624,8 +624,8 @@ export default {
}, },
watch: { watch: {
handler(newVal, oldVal) { handler(newVal, oldVal) {
this.fetchData(); // this.fetchData();
this.onLoad(this.page); // this.onLoad(this.page);
}, },
deep: false, deep: false,
immediate: true, immediate: true,

2
src/views/distribution/inventory/delivery/distributionStockArticleSelf.vue

@ -1084,7 +1084,7 @@ export default {
], ],
}; };
}, },
mounted() { created() {
this.init(); this.init();
this.onLoad(this.page); this.onLoad(this.page);
/** /**

32
src/views/distribution/inventory/distrilbutionBillLading.vue

@ -1813,22 +1813,22 @@ export default {
this.$functions.setStorage(window.location.pathname + 'sortlist', arr); this.$functions.setStorage(window.location.pathname + 'sortlist', arr);
} }
}, },
watch: { // watch: {
'$route.query.id': { // '$route.query.id': {
handler(newVal, oldVal) { // handler(newVal, oldVal) {
if (this.$route.query.type == '2') { // if (this.$route.query.type == '2') {
// // //
this.getDetailOen(); // this.getDetailOen();
} else if (this.$route.query.type == '1') { // } else if (this.$route.query.type == '1') {
this.onLoad(this.page); // this.onLoad(this.page);
} else if (this.$route.query.type == '3') { // } else if (this.$route.query.type == '3') {
this.onLoadCj(); // this.onLoadCj();
} // }
}, // },
deep: true, // deep: true,
immediate: true, // immediate: true,
}, // },
}, // },
computed: { computed: {
...mapGetters(['permission', 'tagWel', 'tagList', 'tag']), ...mapGetters(['permission', 'tagWel', 'tagList', 'tag']),
ids() { ids() {

Loading…
Cancel
Save