2025年03月17日 1.0.13 增加收费站效能评价系统相关页面及代码

main
gaoshuguang 8 months ago
parent a549e2ee89
commit 694ee301f0

@ -77,9 +77,9 @@ public class XnpjServiceImpl implements XnpjService {
int inCount = 0;
//出口流量
int outCount = 0;
//入口车道过车时长 单位
//入口车道过车时长 单位
long inoprtimelen = 0;
//出口车道过车时长 单位
//出口车道过车时长 单位
long outoprtimelen = 0;
//入口特情数量
int inspecialcount;
@ -232,15 +232,28 @@ public class XnpjServiceImpl implements XnpjService {
//入口车道通行效率:(入口车道实际平均过车时间*100/入口车道平均饱和过车时间)
String intrafficefficiency;
if (inBhCount > 0 && inCount > 0 && inBhTime > 0) {
intrafficefficiency = StringUtils.formattedResult((double) inoprtimelen / inCount * 100, (double) inBhTime / inBhCount);
intrafficefficiency = StringUtils.formattedResult((double) inoprtimelen / 1000 / inCount * 100, (double) inBhTime / inBhCount);
//System.err.println("inoprtimelen==>"+inoprtimelen);
//System.err.println("inCount==>"+inCount);
//System.err.println("inBhTime==>"+inBhTime);
//System.err.println("inBhCount==>"+inBhCount);
//System.err.println("入口车道实际平均过车时间==>"+inoprtimelen / 1000 / inCount);
//System.err.println("入口车道平均饱和过车时间==>"+inBhTime / inBhCount);
//System.err.println("intrafficefficiency==>"+intrafficefficiency);
} else {
intrafficefficiency = "0";
}
//出口车道通行效率:(出口车道实际平均过车时间*100/出口车道平均饱和过车时间)
String outtrafficefficiency;
if (outBhCount > 0 && outCount > 0 && outBhTime > 0) {
//outtrafficefficiency = StringUtils.formattedResult((double) outoprtimelen / 1000 / outCount * 100, (double) outBhTime / outBhCount);
outtrafficefficiency = StringUtils.formattedResult((double) outoprtimelen / outCount * 100, (double) outBhTime / outBhCount);
outtrafficefficiency = StringUtils.formattedResult((double) outoprtimelen / 1000 / outCount * 100, (double) outBhTime / outBhCount);
//System.err.println("outoprtimelen==>"+outoprtimelen);
//System.err.println("outCount==>"+outCount);
//System.err.println("outBhTime==>"+outBhTime);
//System.err.println("outBhCount==>"+outBhCount);
//System.err.println("出口车道实际平均过车时间==>"+outoprtimelen / 1000 / outCount);
//System.err.println("出口车道平均饱和过车时间==>"+outBhTime / outBhCount);
//System.err.println("outtrafficefficiency==>"+outtrafficefficiency);
} else {
outtrafficefficiency = "0";
}
@ -268,7 +281,7 @@ public class XnpjServiceImpl implements XnpjService {
log.error("[uuid:{}]-查询失败,报错为:{}", uuid, e.getMessage(), e);
throw new PPException(MessageEnum..getCode(), MessageEnum..getMessage());
}
log.info("[uuid:{}]-根据查询参数{}查询数据完成{}", uuid, map,cardInfo);
log.info("[uuid:{}]-根据查询参数{}查询数据完成{}", uuid, map, cardInfo);
return cardInfo;
}
@ -348,7 +361,7 @@ public class XnpjServiceImpl implements XnpjService {
log.error("[uuid:{}]-查询失败,报错为:{}", uuid, e.getMessage(), e);
throw new PPException(MessageEnum..getCode(), MessageEnum..getMessage());
}
log.info("[uuid:{}]-根据查询参数{}查询数据完成{}", uuid, map,list);
log.info("[uuid:{}]-根据查询参数{}查询数据完成{}", uuid, map, list);
return list;
}
@ -428,7 +441,7 @@ public class XnpjServiceImpl implements XnpjService {
log.error("[uuid:{}]-查询失败,报错为:{}", uuid, e.getMessage(), e);
throw new PPException(MessageEnum..getCode(), MessageEnum..getMessage());
}
log.info("[uuid:{}]-根据查询参数{}查询数据完成{}", uuid, map,list);
log.info("[uuid:{}]-根据查询参数{}查询数据完成{}", uuid, map, list);
return list;
}
@ -508,7 +521,7 @@ public class XnpjServiceImpl implements XnpjService {
log.error("[uuid:{}]-查询失败,报错为:{}", uuid, e.getMessage(), e);
throw new PPException(MessageEnum..getCode(), MessageEnum..getMessage());
}
log.info("[uuid:{}]-根据查询参数{}查询数据完成{}", uuid, map,list);
log.info("[uuid:{}]-根据查询参数{}查询数据完成{}", uuid, map, list);
return list;
}
@ -588,7 +601,7 @@ public class XnpjServiceImpl implements XnpjService {
log.error("[uuid:{}]-查询失败,报错为:{}", uuid, e.getMessage(), e);
throw new PPException(MessageEnum..getCode(), MessageEnum..getMessage());
}
log.info("[uuid:{}]-根据查询参数{}查询数据完成{}", uuid, map,list);
log.info("[uuid:{}]-根据查询参数{}查询数据完成{}", uuid, map, list);
return list;
}
@ -671,7 +684,7 @@ public class XnpjServiceImpl implements XnpjService {
o.put("FLAGSTRING", flagString);
}
resultList= aggProcessing(list);
resultList = aggProcessing(list);
}
@ -679,7 +692,7 @@ public class XnpjServiceImpl implements XnpjService {
log.error("[uuid:{}]-查询失败,报错为:{}", uuid, e.getMessage(), e);
throw new PPException(MessageEnum..getCode(), MessageEnum..getMessage());
}
log.info("[uuid:{}]-根据查询参数{}查询数据完成{}", uuid, map,list);
log.info("[uuid:{}]-根据查询参数{}查询数据完成{}", uuid, map, list);
return resultList;
}
@ -764,14 +777,14 @@ public class XnpjServiceImpl implements XnpjService {
o.put("FLAGSTRING", flagString);
}
resultList= aggProcessing(list);
resultList = aggProcessing(list);
}
} catch (Exception e) {
log.error("[uuid:{}]-查询失败,报错为:{}", uuid, e.getMessage(), e);
throw new PPException(MessageEnum..getCode(), MessageEnum..getMessage());
}
log.info("[uuid:{}]-根据查询参数{}查询数据完成{}", uuid, map,list);
log.info("[uuid:{}]-根据查询参数{}查询数据完成{}", uuid, map, list);
return resultList;
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.9 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 155 KiB

@ -5,8 +5,8 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>大屏展示</title>
<script type="module" crossorigin src="./assets/index-2e2c5028.js"></script>
<link rel="stylesheet" href="./assets/index-ccbee14e.css">
<script type="module" crossorigin src="./assets/index-5404bbf9.js"></script>
<link rel="stylesheet" href="./assets/index-1b5afa1b.css">
</head>
<body>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 562 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.6 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.9 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 134 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 94 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 59 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 180 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 327 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 86 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 155 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.6 MiB

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="37.07" height="36" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 198"><path fill="#41B883" d="M204.8 0H256L128 220.8L0 0h97.92L128 51.2L157.44 0h47.36Z"></path><path fill="#41B883" d="m0 0l128 220.8L256 0h-51.2L128 132.48L50.56 0H0Z"></path><path fill="#35495E" d="M50.56 0L128 133.12L204.8 0h-47.36L128 51.2L97.92 0H50.56Z"></path></svg>

Before

Width:  |  Height:  |  Size: 496 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

@ -12,6 +12,6 @@
11 2024年11月20日 1.0.10 优化大屏折线图
12 2024年11月25日 1.0.11 优化关注门架查询语句
13 2025年01月10日 1.0.12 报表查询跳转地址从10.15.110.58:8081更改为10.15.0.171:8081
14 2025年03月13日 1.0.13 增加收费站效能评价系统相关页面及代码
14 2025年03月17日 1.0.13 增加收费站效能评价系统相关页面及代码(55-乌银高速分中心5514-巴彦浩特南)

@ -5,8 +5,8 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>大屏展示</title>
<script type="module" crossorigin src="./assets/index-2e2c5028.js"></script>
<link rel="stylesheet" href="./assets/index-ccbee14e.css">
<script type="module" crossorigin src="./assets/index-5404bbf9.js"></script>
<link rel="stylesheet" href="./assets/index-1b5afa1b.css">
</head>
<body>

@ -12,6 +12,6 @@
11 2024年11月20日 1.0.10 优化大屏折线图
12 2024年11月25日 1.0.11 优化关注门架查询语句
13 2025年01月10日 1.0.12 报表查询跳转地址从10.15.110.58:8081更改为10.15.0.171:8081
14 2025年03月13日 1.0.13 增加收费站效能评价系统相关页面及代码
14 2025年03月17日 1.0.13 增加收费站效能评价系统相关页面及代码(55-乌银高速分中心5514-巴彦浩特南)

@ -5,8 +5,8 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>大屏展示</title>
<script type="module" crossorigin src="./assets/index-2e2c5028.js"></script>
<link rel="stylesheet" href="./assets/index-ccbee14e.css">
<script type="module" crossorigin src="./assets/index-5404bbf9.js"></script>
<link rel="stylesheet" href="./assets/index-1b5afa1b.css">
</head>
<body>

@ -12,6 +12,6 @@
11 2024年11月20日 1.0.10 优化大屏折线图
12 2024年11月25日 1.0.11 优化关注门架查询语句
13 2025年01月10日 1.0.12 报表查询跳转地址从10.15.110.58:8081更改为10.15.0.171:8081
14 2025年03月13日 1.0.13 增加收费站效能评价系统相关页面及代码
14 2025年03月17日 1.0.13 增加收费站效能评价系统相关页面及代码(55-乌银高速分中心5514-巴彦浩特南)

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -5,8 +5,8 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>大屏展示</title>
<script type="module" crossorigin src="./assets/index-2e2c5028.js"></script>
<link rel="stylesheet" href="./assets/index-ccbee14e.css">
<script type="module" crossorigin src="./assets/index-5404bbf9.js"></script>
<link rel="stylesheet" href="./assets/index-1b5afa1b.css">
</head>
<body>

@ -4,8 +4,8 @@ import { defineStore } from 'pinia';
export const useSelectFormStore = defineStore('selectForm', {
state: () => ({
selectForm: {
subcomno: 3,
stano: 305,
subcomno: 55,
stano: 5514,
querytype: 1,
},
}),

@ -128,16 +128,12 @@ export default {
data() {
return {
selectForm: {
subcomno: 3,
stano: 305,
subcomno: 55,
stano: 5514,
querytype: 1,
},
subComnoList: [
{'subcomno': 3, 'subcomname': '呼和浩特分公司'}
],
stanoList: [
{'stano': 305, 'staname': '呼和浩特'}
],
subComnoList: [],
stanoList: [],
cardQueryResults: {
outpressure: '0',
inpressure: '0',

Loading…
Cancel
Save