督导检查、交叉互查、地市上报审核功能完善
This commit is contained in:
parent
a28429aaf3
commit
ec3b72ed29
|
|
@ -35,7 +35,13 @@
|
|||
</span>
|
||||
</div>
|
||||
</div>
|
||||
s="iconfont icon-zngzt_tcdl" @click="handleLogout" title="退出"></i>
|
||||
<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>
|
||||
</template>
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -290,7 +290,7 @@ const pageConfig = {
|
|||
}
|
||||
const activeTab = ref('案件 (首页)');
|
||||
// 已打开的标签页列表
|
||||
const openedTabs = ref([ {
|
||||
{
|
||||
name: '案件 (首页)',
|
||||
label: '案件 (首页)',
|
||||
component: caseMain,
|
||||
|
|
|
|||
|
|
@ -72,6 +72,11 @@ public class EnforcementInfoHistoryController {
|
|||
}
|
||||
|
||||
|
||||
* 立案上报审核
|
||||
* @param historyId 历史执法信息id
|
||||
* @param caseInfo 历史执法信息实体
|
||||
* @return 历史执法信息实体
|
||||
*/
|
||||
@PutMapping("/updateSupplementVerify/{historyId}")
|
||||
public Result<EnforcementInfoHistory> updateSupplementVerify(@PathVariable String historyId, @RequestBody EnforcementInfoHistory caseInfo, @CurrentUser RemoteUserInfo user) {
|
||||
caseInfo.setHistoryId(historyId);
|
||||
|
|
|
|||
|
|
@ -48,6 +48,8 @@ public class HomePageController {
|
|||
public Result<List<Map<String, Object>>> countCurrentNodeCode(@CurrentUser RemoteUserInfo user) {
|
||||
return Ok.of(homePageService.countCurrentNodeCode(user));
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 执法趋势统计
|
||||
*
|
||||
|
|
|
|||
Loading…
Reference in New Issue