From fa0b23dd73d57f3460e878fa9d990ec7440baae9 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期三, 26 二月 2020 12:50:01 +0800
Subject: [PATCH] 优化查询房屋信息
---
WebService/src/main/resources/components/pageFramePackage/nav/nav.html | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/WebService/src/main/resources/components/pageFramePackage/nav/nav.html b/WebService/src/main/resources/components/pageFramePackage/nav/nav.html
index ded8c94..ab697f0 100644
--- a/WebService/src/main/resources/components/pageFramePackage/nav/nav.html
+++ b/WebService/src/main/resources/components/pageFramePackage/nav/nav.html
@@ -19,8 +19,8 @@
<span class="caret"></span>
</a>
- <div class="dropdown-menu" v-for="currentCommunity in navCommunityInfo.communityInfos">
- <a class="dropdown-item" v-on:click="changeCommunity(currentCommunity)">{{currentCommunity.name}}</a>
+ <div class="dropdown-menu" >
+ <a class="dropdown-item" v-for="currentCommunity in navCommunityInfo.communityInfos" v-on:click="changeCommunity(currentCommunity)">{{currentCommunity.name}}</a>
<a href="/flow/enterCommunity" class="dropdown-item text-center">
<strong>鍏ラ┗灏忓尯</strong>
<i class="fa fa-angle-right"></i>
@@ -36,10 +36,10 @@
</a>
<ul class="dropdown-menu dropdown-alerts">
<li v-for="notice in nav.notices">
- <a v-bind:href="/flow/noticeDetailFlow?noticeId={{notice.noticeId}}" class="dropdown-item">
+ <a v-on:click="_noticeDetail(notice)" class="dropdown-item">
<div>
<i class="fa fa-envelope fa-fw"></i> {{notice.title}}
- <span class="float-right text-muted small">{{notice.startTime}}</span>
+ <span class="float-right text-muted small">{{notice.createTime}}</span>
</div>
</a>
<div class="dropdown-divider"></div>
--
Gitblit v1.8.0