From b3f85b60ba9e39572e686009d36b5e5d7e81e910 Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期四, 11 七月 2019 20:30:10 +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