首页任务提醒功能、执法检查上报统计功能完善修改
This commit is contained in:
parent
1ce8972242
commit
228df363fb
|
|
@ -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>
|
||||||
|
|
|
||||||
|
|
@ -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)
|
||||||
|
|
|
||||||
|
|
@ -72,6 +72,7 @@ public class EnforcementInfoHistoryController {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 立案上报审核
|
* 立案上报审核
|
||||||
* @param historyId 历史执法信息id
|
* @param historyId 历史执法信息id
|
||||||
|
|
|
||||||
|
|
@ -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));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 执法趋势统计
|
* 执法趋势统计
|
||||||
*
|
*
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue