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