修改系统bug
This commit is contained in:
parent
5a33891424
commit
50353b807a
|
|
@ -450,7 +450,6 @@ const baseRoutes = [
|
|||
// title: '扫码入企',
|
||||
// },
|
||||
// },
|
||||
|
||||
{
|
||||
path: 'jcbgl',
|
||||
name: '_jcbgl',
|
||||
|
|
|
|||
|
|
@ -55,7 +55,9 @@
|
|||
<el-table-column prop="agency.agencyName" label="属地" min-width="250"/>
|
||||
<el-table-column prop="unitName" label="企业" min-width="350"/>
|
||||
<el-table-column prop="industryType" label="行业类型" min-width="200">
|
||||
|
||||
<template #default="{row}">
|
||||
<el-span>{{ DICTDISPLAYS.HYLB_MAP[row.industryType] || row.industryType }}</el-span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="videoAccessMsg" label="视频" min-width="100"/>
|
||||
<el-table-column prop="perceptionAccessMsg" label="感知" min-width="100"/>
|
||||
|
|
|
|||
|
|
@ -198,6 +198,7 @@ const {
|
|||
queryParams
|
||||
} = toRefs(state)
|
||||
|
||||
// 扫码入企
|
||||
function handleMask(row) {
|
||||
maskConfig.value.show = true
|
||||
maskConfig.value.data = row
|
||||
|
|
|
|||
|
|
@ -38,6 +38,7 @@ public class BigScreenController {
|
|||
public Result<Map> getDataOverview() {
|
||||
return Ok.of(bigScreenService.getDataOverview());
|
||||
}
|
||||
|
||||
/**
|
||||
* 企业信息统计
|
||||
*
|
||||
|
|
|
|||
|
|
@ -109,6 +109,7 @@ public class EnterpriseJoinScheduleService {
|
|||
@Transactional(propagation = Propagation.REQUIRES_NEW)
|
||||
public void scheduledUpdateEnterpriseTask2() {
|
||||
log.info("===== 开始执行企业感知设备信息同步任务 =====");
|
||||
|
||||
int page = 0;
|
||||
final int limit = 2000;
|
||||
Page<Enterprise> pageResult;
|
||||
|
|
|
|||
Loading…
Reference in New Issue