diff --git a/public/components/nav/nav.html b/public/components/nav/nav.html
deleted file mode 100644
index c70d80d32..000000000
--- a/public/components/nav/nav.html
+++ /dev/null
@@ -1,68 +0,0 @@
-
\ No newline at end of file
diff --git a/public/components/nav/nav.js b/public/components/nav/nav.js
deleted file mode 100644
index 89a36ff41..000000000
--- a/public/components/nav/nav.js
+++ /dev/null
@@ -1,188 +0,0 @@
-/**
- 导航栏
- **/
-(function (vc) {
- var vm = new Vue({
- el: '#nav',
- data: {
- nav: {
- moreNoticeUrl: '/admin.html#/noticeManage',
- notices: [],
- total: 0
- },
- logo: '',
- userName: "",
- navCommunityInfo: {
- _currentCommunity: {},
- communityInfos: []
- }
- },
- mounted: function () {
- this._initSysInfo();
- this.getNavCommunity();
- this.getNavData();
- //this.getUserInfo();
- },
- methods: {
- _initSysInfo: function () {
- var sysInfo = vc.getData("_sysInfo");
- if (sysInfo == null) {
- this.logo = "HC";
- return;
- }
- this.logo = sysInfo.logo;
- },
- getNavData: function () {
-
- var param = {
- params: {
- page: 1,
- row: 3,
- communityId: vc.getCurrentCommunity().communityId
- }
-
- };
-
- //发送get请求
- vc.http.get('nav',
- 'getNavData',
- param,
- function (json) {
- var _noticeObj = JSON.parse(json);
- vm.nav.notices = _noticeObj.msgs;
- vm.nav.total = _noticeObj.total;
- }, function () {
- console.log('请求失败处理');
- }
- );
-
- },
- logout: function () {
- var param = {
- msg: 123
- };
- //发送get请求
- vc.http.post('nav',
- 'logout',
- JSON.stringify(param),
- {
- emulateJSON: true
- },
- function (json, res) {
- if (res.status == 200) {
- vc.jumpToPage("/user.html#/login");
- return;
- }
- }, function () {
- console.log('请求失败处理');
- }
- );
- },
- getUserInfo: function () {
-// var _userInfo = vc.getData("_userInfo");
-// //浏览器缓存中能获取到
-// if(_userInfo != null && _userInfo != undefined){
-// vm.userName = _userInfo.name;
-// return ;
-// }
- //获取用户名
- var param = {
- msg: '123',
- };
-
- //发送get请求
- vc.http.get('nav',
- 'getUserInfo',
- param,
- function (json, res) {
- if (res.status == 200) {
- var tmpUserInfo = JSON.parse(json);
- console.log(vm, tmpUserInfo);
- vm.userName = tmpUserInfo.name;
-// vc.saveData("_userInfo",tmpUserInfo);
- }
- }, function () {
- console.log('请求失败处理');
- }
- );
- },
- getNavCommunity: function () {
- var _tmpCurrentCommunity = vc.getCurrentCommunity();
- //浏览器缓存中能获取到
- if (_tmpCurrentCommunity != null && _tmpCurrentCommunity != undefined) {
- this.navCommunityInfo._currentCommunity = _tmpCurrentCommunity;
- this.navCommunityInfo.communityInfos = vc.getCommunitys();
-
- return;
- }
-
- //说明缓存中没有数据
- //发送get请求
- /**
- [{community:"123123",name:"测试1小区"},{community:"223123",name:"测试2小区"}]
- **/
- var param = {
- params:{
- _uid:'123mlkdinkldldijdhuudjdjkkd'
- }
- };
- vc.http.get('nav',
- 'getCommunitys',
- param,
- function (json, res) {
- if (res.status == 200) {
- vm.navCommunityInfo.communityInfos = JSON.parse(json).communitys;
-
- if (vm.navCommunityInfo.communityInfos == null || vm.navCommunityInfo.communityInfos.length == 0) {
- vm.navCommunityInfo._currentCommunity = {
- name: "还没有入驻小区"
- };
- return;
- }
-
- vm.navCommunityInfo._currentCommunity = vm.navCommunityInfo.communityInfos[0];
- vc.setCurrentCommunity(vm.navCommunityInfo._currentCommunity);
- vc.setCommunitys(vm.navCommunityInfo.communityInfos);
-
- //对首页做特殊处理,因为首页在加载数据时还没有小区信息 会报错
- if (vm.navCommunityInfo.communityInfos != null && vm.navCommunityInfo.communityInfos.length > 0) {
- vc.emit("indexContext", "_queryIndexContextData", {});
- vc.emit("indexArrears", "_listArrearsData", {});
- }
-
- }
- }, function () {
- console.log('请求失败处理');
- }
- );
-
- },
- changeCommunity: function (_community) {
- vc.setCurrentCommunity(_community);
- vm.navCommunityInfo._currentCommunity = _community;
- //中心加载当前页
- location.reload();
- },
- _noticeDetail: function (_msg) {
- //console.log(_notice.noticeId);
- //vc.jumpToPage("/admin.html#/noticeDetail?noticeId="+_notice.noticeId);
-
- //标记为消息已读
- vc.http.post('nav',
- 'readMsg',
- JSON.stringify(_msg),
- function (json, res) {
- if (res.status == 200) {
- vc.jumpToPage(_msg.url);
- }
- }, function () {
- console.log('请求失败处理');
- }
- );
- }
- }
- });
-
- vm.getUserInfo();
-
-})(window.vc);
\ No newline at end of file
diff --git a/public/frameComponents/nav/nav.html b/public/frameComponents/nav/nav.html
index cefcc96ee..60c2378ed 100644
--- a/public/frameComponents/nav/nav.html
+++ b/public/frameComponents/nav/nav.html
@@ -1,6 +1,6 @@