送达业务统计、现场执法检查功能修改测试
This commit is contained in:
parent
41ebce7d3b
commit
b66ca06979
|
|
@ -36,7 +36,12 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="right-profile">
|
<div class="right-profile">
|
||||||
onfont icon-zngzt_tcdl" @click="handleLogout" title="退出"></i>
|
<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>
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,15 @@ public class BigScreenController {
|
||||||
/**
|
/**
|
||||||
* 数据概览统计
|
* 数据概览统计
|
||||||
*
|
*
|
||||||
|
* @param
|
||||||
|
* @return 数据概览统计
|
||||||
|
*/
|
||||||
|
@GetMapping("/dataoverview")
|
||||||
|
public Result<Map> getDataOverview() {
|
||||||
|
return Ok.of(bigScreenService.getDataOverview());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
* 企业信息统计
|
* 企业信息统计
|
||||||
*
|
*
|
||||||
* @param
|
* @param
|
||||||
|
|
|
||||||
|
|
@ -72,7 +72,14 @@ public class BigScreenService {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public Map<String, Long> getDataOverview() {
|
||||||
|
// Long qys = bigScreenRepository.getqys();
|
||||||
|
// Long ajs = bigScreenRepository.getajs();
|
||||||
|
Map<String, Long> res = new HashMap<>();
|
||||||
|
// res.put("qys", qys);
|
||||||
|
// res.put("ajs", ajs);
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
public Map<String, Long> getEnterpriseStatistics(RemoteUserInfo user) {
|
public Map<String, Long> getEnterpriseStatistics(RemoteUserInfo user) {
|
||||||
String agencyCode = com.aisino.iles.common.util.StringUtils.trimEven0(user.getGajgjgdm()) + "%";
|
String agencyCode = com.aisino.iles.common.util.StringUtils.trimEven0(user.getGajgjgdm()) + "%";
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue