123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378 |
- <template>
- <div class="content-app">
- <div class="up">
- <SecurityCheckHeader
- title="航空货物关联统计"
- @change="change"
- :withExportButton="false"
- @search="search"
- />
- </div>
- <div class="content_top">
- <div class="header">
- <p>不同综合风险等级货物对应不同航线比例</p>
- </div>
- <div id="echarts-proportion"></div>
- </div>
- <div class="content_bottom">
- <div class="header">
- <p>不同综合风险等级货物分布比例</p>
- </div>
- <div class="content_classification">
- <div class="chart"><GraphicEchart :texter="dataall" /></div>
- <div class="chart"><GraphicEchart :texter="datarisk" /></div>
- <div class="chart">
- <GraphicEchart :texter="dataLowrisk" />
- </div>
- <div class="chart"><GraphicEchart :texter="datafirst" /></div>
- <div class="chart">
- <GraphicEchart :texter="dataordinary" />
- </div>
- <div class="chart">
- <GraphicEchart :texter="datastrictly" />
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- import { eleCake } from "@/utils/app-ecahrts";
- import GraphicEchart from "../components/graphicHome.vue";
- import SecurityCheckHeader from "../components/securityCheckHeader.vue";
- import { agent } from "@/api/statistics/statistics.js";
- export default {
- data() {
- return {
- dataall: {
- id: 7,
- name: "总件数",
- cont: "20000",
- top: "35%",
- textStyle: {
- fontSize: "16",
- color: "#ffffff",
- },
- data: [
- { value: 335, name: "1" },
- { value: 0, name: "2" },
- ],
- subtextStyle: {
- fontSize: "28",
- fontWeight: "800",
- color: "#ffffff",
- },
- color: ["#E7EBF4", "#6161BD"],
- },
- datarisk: {
- id: 8,
- kaer: 1,
- name: "高风险",
- cont: "70%",
- top: "35%",
- textStyle: {
- fontSize: "16",
- color: "#ffffff",
- },
- data: [
- { value: 335, name: "1" },
- { value: 310, name: "2" },
- ],
- subtextStyle: {
- fontSize: "28",
- fontWeight: "800",
- color: "#ffffff",
- },
- color: ["#E7EBF4", "#EE50A6"],
- },
- dataLowrisk: {
- id: 9,
- kaer: 1,
- name: "低风险",
- cont: "70%",
- top: "35%",
- data: [
- { value: 335, name: "1" },
- { value: 310, name: "2" },
- ],
- textStyle: {
- fontSize: "16",
- color: "#ffffff",
- },
- subtextStyle: {
- fontSize: "28",
- fontWeight: "800",
- color: "#ffffff",
- },
- color: ["#E7EBF4", "#F3C742"],
- },
- datafirst: {
- id: 10,
- kaer: 1,
- name: "优先级",
- cont: "10%",
- top: "35%",
- data: [
- { value: 335, name: "1" },
- { value: 310, name: "2" },
- ],
- textStyle: {
- fontSize: "16",
- color: "#ffffff",
- },
- subtextStyle: {
- fontSize: "28",
- fontWeight: "800",
- color: "#ffffff",
- },
- color: ["#E7EBF4", "#5AC591"],
- },
- dataordinary: {
- id: 11,
- kaer: 1,
- name: "普通级",
- cont: "10%",
- top: "35%",
- data: [
- { value: 335, name: "1" },
- { value: 310, name: "2" },
- ],
- textStyle: {
- fontSize: "16",
- color: "#ffffff",
- },
- subtextStyle: {
- fontSize: "28",
- fontWeight: "800",
- color: "#ffffff",
- },
- color: ["#E7EBF4", "#70B4D4"],
- },
- datastrictly: {
- id: 12,
- kaer: 1,
- name: "严控级",
- cont: "10%",
- top: "35%",
- data: [
- { value: 335, name: "1" },
- { value: 310, name: "2" },
- ],
- textStyle: {
- fontSize: "16",
- color: "#ffffff",
- },
- subtextStyle: {
- fontSize: "28",
- fontWeight: "800",
- color: "#ffffff",
- },
- color: ["#E7EBF4", "#E64545"],
- },
- };
- },
- components: {
- GraphicEchart,
- SecurityCheckHeader,
- },
- mounted() {
- // this.init();
- },
- methods: {
- //默认查询条件
- search(data) {
- this.relationDate(data);
- },
- //货物关联统计接口
- async relationDate(data) {
- try {
- let params = {
- beginDate: data[0][0],
- endDate: data[0][1],
- levelId: data[1],
- proxyId: data[2],
- };
- // console.log(params);
- const result = await agent(params);
- if (result.status == 200) {
- console.log(result);
- let arr = []; //高风险
- let Low = []; //低风险
- let firs = []; //优先级
- let pt = [];
- let strictly = [];
- let arrx = []; //x轴
- this.dataall.data = result.data;
- result.data.forEach((element) => {
- arrx.push(element.flightLine);
- 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);
- });
- let arrall = eval(arr.join("+")); //高风险总和
- let Lowall = eval(Low.join("+")); //低风险级总和
- let firsall = eval(firs.join("+")); //优先级总和
- let ptall = eval(pt.join("+")); //普通级总和
- let strictlyall = eval(strictly.join("+")); //严控级总和
- let alldata = arrall + Lowall + firsall + ptall + strictlyall; // 总数
- this.init(arr, arrx, Low, firs, pt, strictly);
- this.dataall.cont = alldata;
- this.dataall.data = [
- {
- value: 0,
- name: "",
- },
- {
- value: alldata,
- name: "总数",
- },
- ];
- this.datarisk.cont = Math.floor((arrall / alldata).toFixed(2) * 100);
- this.datarisk.data = [
- {
- value: alldata,
- name: "总数",
- },
- {
- value: arrall,
- name: "高风险",
- },
- ];
- this.dataLowrisk.cont = Math.floor(
- (Lowall / alldata).toFixed(2) * 100
- );
- this.dataLowrisk.data = [
- {
- value: alldata,
- name: "总数",
- },
- {
- value: Lowall,
- name: "低风险",
- },
- ];
- this.datafirst.cont = Math.floor(
- (firsall / alldata).toFixed(2) * 100
- );
- this.datafirst.data = [
- {
- value: alldata,
- name: "总数",
- },
- {
- value: firsall,
- name: "优先级",
- },
- ];
- this.dataordinary.cont = Math.floor(
- (ptall / alldata).toFixed(2) * 100
- );
- this.dataordinary.data = [
- {
- value: alldata,
- name: "总数",
- },
- {
- value: ptall,
- name: "普通",
- },
- ];
- this.datastrictly.cont = Math.floor(
- (strictlyall / alldata).toFixed(2) * 100
- );
- this.datastrictly.data = [
- {
- value: alldata,
- name: "总数",
- },
- {
- value: strictlyall,
- name: "严控级",
- },
- ];
- }
- console.log(result);
- } catch (error) {
- console.log(error);
- }
- },
- change() {
- this.$router.push("./cargoRelevanceTable");
- },
- init(arr, arrx, Low, firs, pt, strictly) {
- let myChart = this.$echarts.init(
- document.getElementById("echarts-proportion")
- ); //统计折线
- 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.setOption(eleCake, true);
- window.onresize = () => {
- myChart.resize();
- };
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .header {
- > p {
- font-size: 18px;
- font-family: Microsoft YaHei;
- font-weight: bold;
- color: #101116;
- margin: 0 0 24px 0;
- }
- }
- .content_top {
- width: 100%;
- height: 45vh;
- background: #ffffff;
- box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
- border-radius: 4px;
- margin-bottom: 16px;
- padding: 24px;
- }
- #echarts-proportion {
- width: 100%;
- height: 90%;
- }
- .content_bottom {
- width: 100%;
- height: 33vh;
- background: #ffffff;
- box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
- border-radius: 4px;
- padding: 24px;
- > .content_classification {
- width: 100%;
- height: 90%;
- display: flex;
- align-items: center;
- justify-content: space-around;
- }
- }
- #echarts-distribution {
- width: 100%;
- height: 80%;
- }
- .chart {
- width: 16%;
- height: 200px;
- }
- </style>
|