督导检查、交叉互查、地市上报审核功能完善

This commit is contained in:
zhangchaoyang02 2025-08-01 19:16:32 +08:00
parent a28429aaf3
commit ec3b72ed29
5 changed files with 16 additions and 3 deletions

View File

@ -35,7 +35,13 @@
</span> </span>
</div> </div>
</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>
</div> </div>
</template> </template>

File diff suppressed because one or more lines are too long

View File

@ -290,7 +290,7 @@ const pageConfig = {
} }
const activeTab = ref('案件 (首页)'); const activeTab = ref('案件 (首页)');
// //
const openedTabs = ref([ { {
name: '案件 (首页)', name: '案件 (首页)',
label: '案件 (首页)', label: '案件 (首页)',
component: caseMain, component: caseMain,

View File

@ -72,6 +72,11 @@ public class EnforcementInfoHistoryController {
} }
* 立案上报审核
* @param historyId 历史执法信息id
* @param caseInfo 历史执法信息实体
* @return 历史执法信息实体
*/
@PutMapping("/updateSupplementVerify/{historyId}") @PutMapping("/updateSupplementVerify/{historyId}")
public Result<EnforcementInfoHistory> updateSupplementVerify(@PathVariable String historyId, @RequestBody EnforcementInfoHistory caseInfo, @CurrentUser RemoteUserInfo user) { public Result<EnforcementInfoHistory> updateSupplementVerify(@PathVariable String historyId, @RequestBody EnforcementInfoHistory caseInfo, @CurrentUser RemoteUserInfo user) {
caseInfo.setHistoryId(historyId); caseInfo.setHistoryId(historyId);

View File

@ -48,6 +48,8 @@ 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));
} }
/** /**
* 执法趋势统计 * 执法趋势统计
* *