Browse Source

修改缓存

master
pref_mail@163.com 1 year ago
parent
commit
93c68f3767
  1. 1
      src/page/index/layout.vue
  2. 4
      src/router/avue-router.js
  3. 1
      src/router/index.js
  4. 15
      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>

4
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,

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);

15
src/router/views/index.js

@ -1,11 +1,16 @@
import Layout from '@/page/index/index.vue';
import Layout from '@/page/index/layout.vue';
import Store from '@/store/';
export default [
{
path: '/wel',
path: '/',
component: () =>
Store.getters.isMacOs ? import('@/mac/index.vue') : import('@/page/index/index.vue'),
redirect: '/wel',
children: [
{
path: '/wel',
component: Layout,
redirect: '/wel/index',
children: [
{
@ -785,6 +790,7 @@ export default [
name: '创建提货单',
meta: {
i18n: 'dict',
keepAlive: true
},
props: route => ({
name: route.query.name,
@ -1281,6 +1287,7 @@ export default [
],
},
// {
// path: '/distribution/turndelivery/devtmp',
// component: Layout,
@ -1352,4 +1359,8 @@ export default [
// ],
// }
]
},
];

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