diff --git a/src/components/HeaderSearch/index3.vue b/src/components/HeaderSearch/index3.vue
index 347d3333..c78b9aac 100644
--- a/src/components/HeaderSearch/index3.vue
+++ b/src/components/HeaderSearch/index3.vue
@@ -13,7 +13,7 @@
>
-
@@ -53,7 +53,6 @@ watch: {
},
searchPool(list) {
this.initFuse(list)
- this.initQuickActionList();
},
show(value) {
if (value) {
@@ -65,6 +64,7 @@ watch: {
},
mounted() {
this.searchPool = this.generateRoutes(this.routes);
+ this.initQuickActionList();
},
methods: {
initQuickActionList() {
@@ -101,6 +101,7 @@ methods: {
this.$nextTick(() => {
this.show = false
})
+ this.initQuickActionList();
},
initFuse(list) {
this.fuse = new Fuse(list, {
diff --git a/src/layout/components/Sidebar/BizNav.vue b/src/layout/components/Sidebar/BizNav.vue
index 32fcef9e..0bd20228 100644
--- a/src/layout/components/Sidebar/BizNav.vue
+++ b/src/layout/components/Sidebar/BizNav.vue
@@ -28,34 +28,16 @@
-
-
-
+
@@ -79,6 +61,7 @@ export default {
},
data() {
return {
+ refreshId:'0',
// 当前激活菜单的 index
currentIndex: undefined,
domainId:undefined,
diff --git a/src/store/modules/tagsView.js b/src/store/modules/tagsView.js
index 6f75baac..8ab2fb4b 100644
--- a/src/store/modules/tagsView.js
+++ b/src/store/modules/tagsView.js
@@ -21,7 +21,7 @@ const mutations = {
try{
var addActionLogData = {
title: view.meta.title,
- path: view.path,
+ path: view.fullPath,
menuId: view.meta.menuId,
navPath: "",
groupName: "",
diff --git a/src/views/emis/emisWaybill/waybillRecord.vue b/src/views/emis/emisWaybill/waybillRecord.vue
index cfa495b2..94b34300 100644
--- a/src/views/emis/emisWaybill/waybillRecord.vue
+++ b/src/views/emis/emisWaybill/waybillRecord.vue
@@ -313,8 +313,8 @@
-
-
+
+
@@ -1456,6 +1456,7 @@ methods: {
destinationCountry: null,
destinationCode: null,
dispatchUnderlingSiteCode: null,
+ dispatchUnderlingSiteName:null,
destinationCenterCode: null,
marketManCode: null,
payee: null,
@@ -1651,7 +1652,7 @@ methods: {
this.form.dispatchSite = response.data.siteName;
this.form.dispatchUnderlingSiteCode= response.data.siteCode;
- this.form.dispatchUnderlingSite= response.data.siteName;
+ this.form.dispatchUnderlingSiteName= response.data.siteName;
});
}
@@ -1846,10 +1847,9 @@ methods: {
onDestinationChange(item){
// this.form.destinationCode = item.destCode;
this.form.dispatchUnderlingSiteCode= item.siteCode;
- this.form.dispatchSiteCode= item.siteCode;
-
- this.form.dispatchUnderlingSite= item.siteName;
- this.form.dispatchSite= item.siteName;
+ // this.form.dispatchSiteCode= item.siteCode;
+ this.form.dispatchUnderlingSiteName= item.siteName;
+ // this.form.dispatchSite= item.siteName;
},
onGoodsChange(goodsList,selNameStr){
this.form.goodsInfo = selNameStr;