123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349 |
- <template>
- <div class="statistic">
- <div class="statistic-tr">
- <div class="statistic-block">
- <div class="title">离岛旅客总量统计
- <a-date-picker v-model:value="state.date1"/>
- </div>
- <div class="content content-1">
- <div class="left">
- <div class="total">
- <div class="card">{{ total1[0] }}</div>
- <div class="card">{{ total1[1] }}</div>
- <div class="dou"></div>
- <div class="card">{{ total1[2] }}</div>
- <div class="card">{{ total1[3] }}</div>
- <div class="card">{{ total1[4] }}</div>
- <div class="dou"></div>
- <div class="card">{{ total1[5] }}</div>
- <div class="card">{{ total1[6] }}</div>
- <div class="card">{{ total1[7] }}</div>
- <div class="unit">/离岛旅客量</div>
- </div>
- <pieChart :data="state.arr1" :color="state.color1"/>
- </div>
- <div class="line"/>
- <div class="right">
- <template v-for="(item, index) in state.arr1">
- <div class="right-item">
- <div class="value" :style="{color: state.color1[index]}">{{ item.value }}</div>
- <div class="name">{{ item.name }}</div>
- </div>
- </template>
- </div>
- </div>
- </div>
- </div>
- <div class="statistic-tr">
- <div class="statistic-block">
- <div class="title">旅客日流量分析
- <a-date-picker v-model:value="state.date2"/>
- </div>
- <div class="content">
- <lineChart :data="state.arr2" :color="state.color2" unit="时"/>
- </div>
- </div>
- <div class="statistic-block">
- <div class="title">旅客月流量分析
- <a-date-picker v-model:value="state.date3" picker="month"/>
- </div>
- <div class="content">
- <lineChart :data="state.arr3" :color="state.color3" unit="日"/>
- </div>
- </div>
- </div>
- <div class="statistic-tr">
- <div class="statistic-block">
- <div class="title">查验通过率分析
- <a-date-picker v-model:value="state.date4"/>
- </div>
- <div class="content" style="display: flex">
- <pie2Chart :data="state.arr4" :color="state.color4" :index="0"/>
- <pie2Chart :data="state.arr4" :color="state.color6" :index="1"/>
- </div>
- </div>
- <div class="statistic-block">
- <div class="title">平均查验时间分析
- <a-date-picker v-model:value="state.date5"/>
- </div>
- <div class="content">
- <barChart :data="state.arr5" :color="state.color5"/>
- </div>
- </div>
- </div>
- <div class="statistic-tr">
- <div class="statistic-block">
- <div class="title">拦截成功率分析
- <a-date-picker v-model:value="state.date6"/>
- </div>
- <div class="content" style="display: flex">
- <pie2Chart :data="state.arr6" :color="state.color4" :index="0"/>
- <pie2Chart :data="state.arr6" :color="state.color6" :index="1"/>
- </div>
- </div>
- <div class="statistic-block">
- <div class="title">风险趋势分析
- <a-date-picker v-model:value="state.date7"/>
- </div>
- <div class="content">
- <pieChart :data="state.arr7" :color="state.color7" :type="2"/>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script setup name="demo2">
- import basicApi from '@/api/gsc/basic'
- import pieChart from './chart/pie.vue'
- import lineChart from './chart/line.vue'
- import pie2Chart from './chart/pie2.vue'
- import barChart from './chart/bar.vue'
- import dayjs from "dayjs";
- const {proxy} = getCurrentInstance()
- const state = reactive({
- date1: dayjs(new Date()),
- date2: dayjs(new Date()),
- date3: dayjs(new Date()),
- date4: dayjs(new Date()),
- date5: dayjs(new Date()),
- date6: dayjs(new Date()),
- date7: dayjs(new Date()),
- arr1: [],
- arr2: [],
- arr3: [],
- arr4: [],
- arr5: [],
- arr6: [],
- arr7: [],
- color1: ['#16C843', '#00EAFF', '#FB9A04', '#00A2FF', '#5AD8A6', '#F4FF78'],
- color2: ['rgba(1, 255, 246, 1)', 'rgba(1, 255, 246, 0)'],
- color3: ['rgba(14, 156, 255, 1)', 'rgba(14, 156, 255, 0)'],
- color4: ['rgba(0, 194, 255, 1)', 'rgba(255, 0, 61, 1)'],
- color5: ['#00A8FF', '#0F3352'],
- color6: ['#00A3FF', '#BDFF00'],
- color7: ['#16C843', '#00EAFF', '#FB9A04', '#00A2FF', '#9966FF', '#FC6767', '#ABB2B4'],
- })
- const initData = () => {
- basicApi.passengerstatisticsList({type: 1}).then(res => {
- state.arr1 = res
- })
- basicApi.passengerstatisticsList({type: 2}).then(res => {
- state.arr2 = res
- })
- basicApi.passengerstatisticsList({type: 3}).then(res => {
- state.arr3 = res
- })
- basicApi.passengerstatisticsList({type: 4}).then(res => {
- state.arr4 = res
- })
- basicApi.passengerstatisticsList({type: 5}).then(res => {
- state.arr5 = res
- })
- basicApi.passengerstatisticsList({type: 6}).then(res => {
- state.arr6 = res
- })
- basicApi.passengerstatisticsList({type: 7}).then(res => {
- state.arr7 = res
- })
- }
- const total1 = computed(() => {
- let total = 0
- state.arr1.forEach(v => {
- total += Number(v.value)
- })
- const str = String(total).split('')
- for (let i = 0; i < (9 - str.length); i++) {
- str.unshift('0')
- }
- return str
- })
- onMounted(() => {
- initData()
- })
- </script>
- <style lang="less" scoped>
- .statistic {
- width: 100%;
- height: 100%;
- overflow-y: auto;
- display: flex;
- flex-direction: column;
- gap: 10px;
- .statistic-tr {
- background: #14204A;
- border-radius: 8px;
- padding: 24px;
- display: flex;
- gap: 24px;
- .statistic-block {
- flex: 1;
- box-shadow: inset 0px 0px 100px 0px rgba(0, 228, 255, 0.12);
- border-radius: 0px 0px 0px 0px;
- border: 2px solid rgba(0, 174, 255, 0.33);
- .title {
- height: 46px;
- line-height: 46px;
- padding: 0 16px;
- background: linear-gradient(90deg, rgba(31, 180, 255, 0.12) 0%, rgba(31, 180, 255, 0) 100%);
- color: #ffffff;
- font-size: 20px;
- font-weight: bold;
- display: flex;
- align-items: center;
- :deep(.ant-picker) {
- margin-left: auto;
- height: 30px;
- background: linear-gradient(180deg, rgba(31, 180, 255, 0.32) 0%, rgba(31, 180, 255, 0) 100%);
- border-radius: 0;
- border-top: 1px solid #1FC6FF;
- .ant-picker-input {
- > input {
- color: #1DC8FF;
- &::placeholder {
- color: #1DC8FF;
- }
- }
- .ant-picker-suffix {
- > span {
- color: #1DC8FF;
- }
- }
- }
- }
- }
- }
- }
- }
- .content {
- height: 300px;
- width: 100%;
- &.content-1 {
- height: 290px;
- padding-top: 24px;
- display: flex;
- gap: 40px;
- .left {
- width: 595px;
- height: 100%;
- display: flex;
- flex-direction: column;
- .total {
- height: 79px;
- width: 100%;
- background: rgba(0, 174, 255, 0.05);
- border-radius: 0px 0px 0px 0px;
- border: 2px solid rgba(0, 174, 255, 0.33);
- display: flex;
- align-items: center;
- padding-left: 10px;
- .card {
- background-image: url("./card.png");
- background-size: 42px 56px;
- width: 43px;
- height: 56px;
- display: flex;
- align-items: center;
- justify-content: center;
- font-family: Bebas;
- font-weight: 400;
- font-size: 38px;
- color: #FFFFFF;
- }
- .dou {
- background-image: url("./dou.png");
- width: 12px;
- height: 16px;
- margin-top: 40px;
- }
- .unit {
- font-weight: 500;
- font-size: 18px;
- color: #68C3FF;
- }
- > * {
- margin-left: 8px;
- }
- }
- }
- .line {
- width: 1px;
- height: calc(100% - 16px);
- background-color: rgba(18, 104, 155, 0.4);
- }
- .right {
- flex: 1;
- height: 100%;
- display: grid;
- grid-template-columns: repeat(3, 1fr);
- grid-template-rows: repeat(auto-fill, 113px);
- gap: 24px 16px;
- padding-right: 16px;
- .right-item {
- box-shadow: inset 0px 0px 5px 2px #0CBDAF;
- display: flex;
- flex-direction: column;
- padding-left: 13px;
- background-color: rgba(31, 180, 255, 0.12);
- font-family: "PingFang SC";
- position: relative;
- &:after {
- z-index: 1;
- content: '';
- position: absolute;
- width: 94px;
- height: 75px;
- background-image: url('./feiji.png');
- top: 18px;
- right: 22px;
- }
- .value {
- z-index: 2;
- font-weight: 500;
- font-size: 40px;
- line-height: 60px;
- margin-top: 13px;
- }
- .name {
- z-index: 2;
- font-weight: 400;
- font-size: 16px;
- color: rgba(255, 255, 255, 0.6);
- }
- &:nth-child(n+4) {
- &:after {
- width: 84px;
- height: 84px;
- background-image: url('./port.png');
- }
- }
- }
- }
- }
- }
- </style>
|