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>
<router-view #="{ Component }">
<!-- {{ $store.getters.tagsKeep }} -->
<keep-alive :include="$store.getters.tagsKeep">
<component :is="Component" />
</keep-alive>

6
src/router/avue-router.js

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

1
src/router/index.js

@ -14,7 +14,6 @@ AvueRouter.install({
store: Store,
router: Router,
i18n: i18n,
keepAlive: 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: {
handler(newVal, oldVal) {
this.fetchData();
this.onLoad(this.page);
// this.fetchData();
// this.onLoad(this.page);
},
deep: false,
immediate: true,

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

@ -1084,7 +1084,7 @@ export default {
],
};
},
mounted() {
created() {
this.init();
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);
}
},
watch: {
'$route.query.id': {
handler(newVal, oldVal) {
if (this.$route.query.type == '2') {
//
this.getDetailOen();
} else if (this.$route.query.type == '1') {
this.onLoad(this.page);
} else if (this.$route.query.type == '3') {
this.onLoadCj();
}
},
deep: true,
immediate: true,
},
},
// watch: {
// '$route.query.id': {
// handler(newVal, oldVal) {
// if (this.$route.query.type == '2') {
// //
// this.getDetailOen();
// } else if (this.$route.query.type == '1') {
// this.onLoad(this.page);
// } else if (this.$route.query.type == '3') {
// this.onLoadCj();
// }
// },
// deep: true,
// immediate: true,
// },
// },
computed: {
...mapGetters(['permission', 'tagWel', 'tagList', 'tag']),
ids() {

Loading…
Cancel
Save