首页任务提醒功能、执法检查上报统计功能完善修改

This commit is contained in:
renhao02 2025-08-01 19:13:25 +08:00
parent 1ce8972242
commit 228df363fb
4 changed files with 7 additions and 10 deletions

View File

@ -35,13 +35,7 @@
</span> </span>
</div> </div>
</div> </div>
<div class="right-profile">
<span class="zyt" @click="skipPage"><i>综合执法一张图</i></span>
<i class="iconfont icon-zngzt_zfdc" v-if="projectName == 'gzt'" title="编辑桌面"></i>
<i class="iconfont icon-zngzt_syfw" v-if="projectName != 'gzt'" @click="handleTo({ path: 'gzt' })" title="首页"></i>
<NotificationBell/>
<public-full-screen></public-full-screen>
<i class="iconfont icon-zngzt_tcdl" @click="handleLogout" title="退出"></i>
</div> </div>
</div> </div>
</template> </template>

View File

@ -204,7 +204,11 @@ function reset(query) {
handleQuery() handleQuery()
} }
function getCurrentQuarter() {
const now = new Date()
const quarter = Math.floor(now.getMonth() / 3) + 1;
queryParams.value.Jd = queryParams.value.Jd === undefined ? quarter : queryParams.value.Jd
}
const {componentLoading, queryParams, permissions, tableConfig, apiConfig, dialogConfig, actions} = toRefs(state) const {componentLoading, queryParams, permissions, tableConfig, apiConfig, dialogConfig, actions} = toRefs(state)

View File

@ -72,6 +72,7 @@ public class EnforcementInfoHistoryController {
} }
/** /**
* 立案上报审核 * 立案上报审核
* @param historyId 历史执法信息id * @param historyId 历史执法信息id

View File

@ -48,8 +48,6 @@ public class HomePageController {
public Result<List<Map<String, Object>>> countCurrentNodeCode(@CurrentUser RemoteUserInfo user) { public Result<List<Map<String, Object>>> countCurrentNodeCode(@CurrentUser RemoteUserInfo user) {
return Ok.of(homePageService.countCurrentNodeCode(user)); return Ok.of(homePageService.countCurrentNodeCode(user));
} }
/** /**
* 执法趋势统计 * 执法趋势统计
* *