From 4ee6445f67bbb56caa2b2f981afce6e87cc602af Mon Sep 17 00:00:00 2001
From: 吴学文 <wuxuewen@wuxuewendeMacBook-Pro.local>
Date: 星期三, 10 七月 2019 21:01:26 +0800
Subject: [PATCH] 每个页面显示当前页面名称,将上下框无法对其的处理对齐

---
 WebService/src/main/resources/components/breadcrumb/breadcrumb.js |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/WebService/src/main/resources/components/breadcrumb/breadcrumb.js b/WebService/src/main/resources/components/breadcrumb/breadcrumb.js
index cb6e73f..fd01baf 100644
--- a/WebService/src/main/resources/components/breadcrumb/breadcrumb.js
+++ b/WebService/src/main/resources/components/breadcrumb/breadcrumb.js
@@ -34,12 +34,12 @@
                                     parentPageName: "",
                                     pageName: _tmpMenus[menuIndex].name
                                 };
-                                vm.breadCrumbInfo.breadCrumbs.push(_tmpBreadCrumbInf);
+                                this.breadCrumbs.push(_tmpBreadCrumbInf);
                                 _tmpBreadCrumbInf = {
                                     parentPageName: _tmpMenus[menuIndex].name,
                                     pageName: _childs[_childIndex].name
                                 };
-                               vm.breadCrumbs.push(_tmpBreadCrumbInf);
+                               this.breadCrumbs.push(_tmpBreadCrumbInf);
                                 break;
                             }
                         }
@@ -49,7 +49,7 @@
                                 parentPageName: "棣栭〉",
                                 pageName: _tmpMenus[menuIndex].name
                             };
-                            vm.breadCrumbs.push(_tmpBreadCrumbInf);
+                            this.breadCrumbs.push(_tmpBreadCrumbInf);
                         }
                     }
                 }

--
Gitblit v1.8.0