|
@@ -4,10 +4,8 @@
|
|
|
<div class="up">
|
|
|
<SecurityCheckHeader
|
|
|
title="安检通道综合效率"
|
|
|
- :withSelect="false"
|
|
|
- :withInput="false"
|
|
|
- :withChangeButton="false"
|
|
|
:withExportButton="false"
|
|
|
+ @search="search"
|
|
|
/>
|
|
|
</div>
|
|
|
<div class="comprehensive">
|
|
@@ -22,30 +20,100 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
<script>
|
|
|
-import { discoloration } from "@/utils/app-ecahrts";
|
|
|
+import { eleCake } from "@/utils/app-ecahrts";
|
|
|
import SecurityCheckHeader from "../components/securityCheckHeader.vue";
|
|
|
+import { correlation } from "@/api/statistics/statistics.js";
|
|
|
export default {
|
|
|
data() {
|
|
|
- return {};
|
|
|
+ return {
|
|
|
+ queryData: {},
|
|
|
+ };
|
|
|
},
|
|
|
components: {
|
|
|
SecurityCheckHeader,
|
|
|
},
|
|
|
mounted() {
|
|
|
- this.init();
|
|
|
+ // this.relationDate();
|
|
|
},
|
|
|
methods: {
|
|
|
+ search(data) {
|
|
|
+ this.queryData = {
|
|
|
+ startTime: data[0][0],
|
|
|
+ endTime: data[0][1],
|
|
|
+ riskRating: data[1],
|
|
|
+ agentCode: data[2],
|
|
|
+ };
|
|
|
+ this.relationDate(data);
|
|
|
+ },
|
|
|
+ //点击跳转
|
|
|
+ echar() {
|
|
|
+ this.$router.push({
|
|
|
+ path: "/waybillTable",
|
|
|
+ query: this.queryData,
|
|
|
+ });
|
|
|
+ },
|
|
|
// change() {
|
|
|
// this.$router.push("./agentTable");
|
|
|
// },
|
|
|
- init() {
|
|
|
+ async relationDate(data) {
|
|
|
+ try {
|
|
|
+ let params = {
|
|
|
+ beginDate: data[0][0],
|
|
|
+ endDate: data[0][1],
|
|
|
+ proxyId: data[1],
|
|
|
+ proxyLevel: data[2],
|
|
|
+ type: "",
|
|
|
+ };
|
|
|
+ const result = await correlation(params);
|
|
|
+ if (result.status == 200) {
|
|
|
+ let arr = []; //高风险
|
|
|
+ let Low = []; //低风险
|
|
|
+ let firs = []; //优先级
|
|
|
+ let pt = [];
|
|
|
+ let strictly = [];
|
|
|
+ let arrx = []; //x轴
|
|
|
+ result.data.forEach((element) => {
|
|
|
+ arrx.push(element.channel);
|
|
|
+ element.datas.forEach((res) => {
|
|
|
+ if (res.level === "高风险级") {
|
|
|
+ arr.push(res.count);
|
|
|
+ } else if (res.level == "低风险级") {
|
|
|
+ Low.push(res.count);
|
|
|
+ } else if (res.level == "优先级") {
|
|
|
+ firs.push(res.count);
|
|
|
+ } else if (res.level == "普通级") {
|
|
|
+ pt.push(res.count);
|
|
|
+ } else if (res.level == "严控级") {
|
|
|
+ strictly.push(res.count);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ // console.log(arr);
|
|
|
+ });
|
|
|
+ this.init(arr, arrx, Low, firs, pt, strictly);
|
|
|
+ }
|
|
|
+ console.log(result);
|
|
|
+ } catch (error) {
|
|
|
+ console.log(error);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ init(arr, arrx, Low, firs, pt, strictly) {
|
|
|
let myChart = this.$echarts.init(
|
|
|
document.getElementById("comprehensiveCharts")
|
|
|
); //统计折线
|
|
|
- myChart.setOption(discoloration);
|
|
|
+ eleCake.series[0].data = arr;
|
|
|
+ eleCake.series[1].data = Low;
|
|
|
+ eleCake.series[2].data = firs;
|
|
|
+ eleCake.series[3].data = pt;
|
|
|
+ eleCake.series[4].data = strictly;
|
|
|
+ eleCake.xAxis.data = arrx;
|
|
|
+ myChart.clear();
|
|
|
+ myChart.setOption(eleCake, true);
|
|
|
window.onresize = () => {
|
|
|
myChart.resize();
|
|
|
};
|
|
|
+ myChart.on("click", (a, b) => {
|
|
|
+ this.echar();
|
|
|
+ });
|
|
|
},
|
|
|
},
|
|
|
};
|