123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469 |
- import { Query } from '@/api/webApi'
- import { CommonData } from '~/common'
- import * as _ from 'lodash'
- export enum showTimeMsg {
- HourlyPeak, //小时峰值
- WaybillTrend, //运单趋势
- NodePeak, //始发站/目的站统计分析
- AirlineTraffic, //航司统计
- AirlineAbnormal, //航班统计
- PickingStatistics, //拉货统计
- }
- export function usePublic() {
- const optionLeft = {
- tooltip: {
- trigger: 'axis',
- },
- legend: {
- show: true,
- top: 0,
- left: '30%',
- icon: 'roundRect',
- textStyle: {
- color: '#698dc3',
- },
- },
- grid: {
- left: '5%',
- right: '5%',
- bottom: '0%',
- top: '17%',
- containLabel: true,
- },
- color: ['#F5BB3D', '#73D970', '#6A9DD9'],
- xAxis: {
- type: 'category',
- boundaryGap: true,
- data: [
- '0:00',
- '2:00',
- '4:00',
- '6:00',
- '8:00',
- '10:00',
- '12:00',
- '14:00',
- '16:00',
- '18:00',
- '20:00',
- '22:00',
- ],
- axisLine: {
- show: true,
- lineStyle: {
- color: '#8897BC',
- },
- },
- axisTick: {
- show: false,
- },
- axisLabel: {
- color: '#8897BC',
- },
- },
- yAxis: [
- {
- type: 'value',
- axisLabel: {
- color: '#8897BC',
- formatter: function (item) {
- return item / 10000 + '万'
- },
- },
- splitLine: {
- lineStyle: {
- type: 'dashed',
- color: 'rgba(196,194,225, 0.54)',
- },
- },
- name: '单',
- },
- {
- type: 'value',
- axisLabel: {
- color: '#8897BC',
- },
- splitLine: {
- lineStyle: {
- type: 'dashed',
- color: 'rgba(196,194,225, 0.54)',
- },
- },
- name: '吨',
- },
- ],
- series: [
- {
- name: '运单/单',
- type: 'line',
- symbol: 'none',
- key: 'bagsnum',
- yAxisIndex: 0,
- data: [120, 132, 101, 134, 90, 230, 210, 132, 101, 134, 90, 230],
- areaStyle: {
- color: {
- type: 'linear',
- x: 0,
- y: 0,
- x2: 0,
- y2: 1,
- colorStops: [
- {
- offset: 0,
- color: 'rgba(125,72,255,0.5)',
- },
- {
- offset: 1,
- color: 'rgba(0,180,255,0.01)',
- },
- ],
- global: false,
- },
- },
- },
- {
- name: '重量/吨',
- type: 'line',
- symbol: 'none',
- yAxisIndex: 1,
- key: 'passengers',
- data: [220, 182, 191, 234, 290, 330, 310, 132, 101, 134, 90, 230],
- areaStyle: {
- color: {
- type: 'linear',
- x: 0,
- y: 0,
- x2: 0,
- y2: 1,
- colorStops: [
- {
- offset: 0,
- color: 'rgba(125,72,255,0.5)',
- },
- {
- offset: 1,
- color: 'rgba(0,180,255,0.01)',
- },
- ],
- global: false,
- },
- },
- },
- ],
- }
- const airlineAbnormalBaggage = {
- component: 'commonChartsBar',
- option: {
- baseOption: {
- tooltip: {
- trigger: 'axis',
- valueFormatter: function (value) {
- return value + '单'
- },
- },
- legend: {
- data: ['报警', '预警'],
- right: '20%',
- textStyle: {
- color: '#8897BC',
- },
- // top:"-10"
- },
- color: ['#EC3B71', '#E5B35C'],
- grid: {
- bottom: '10%',
- left: '5%',
- right: '1%',
- top: '17%',
- },
- xAxis: {
- data: ['卸机', '机下交接', '货站交接', '提取'],
- axisLine: {
- show: true,
- lineStyle: {
- color: '#8897BC',
- },
- },
- axisTick: {
- show: false,
- },
- axisLabel: {
- color: '#8897BC',
- },
- },
- yAxis: {
- type: 'value',
- axisLabel: {
- color: '#8897BC',
- },
- splitLine: {
- lineStyle: {
- type: 'dashed',
- color: 'rgba(196,194,225, 0.54)',
- },
- },
- name: '单',
- },
- series: [
- {
- name: '报警',
- type: 'bar',
- data: [0, 0, 0, 0],
- },
- {
- name: '预警',
- type: 'bar',
- data: [0, 0, 0, 0],
- },
- ],
- },
- },
- }
- const airCompaneBaggage = {
- component: 'commonChartsBar',
- option: {
- baseOption: {
- tooltip: {
- trigger: 'axis',
- },
- legend: {
- data: ['运单/单', '重量/吨'],
- right: '20%',
- textStyle: {
- color: '#8897BC',
- },
- },
- color: ['#51DEE9', '#4C88E1'],
- grid: {
- bottom: '10%',
- left: '13%',
- right: '8%',
- top: '17%',
- },
- xAxis: {
- data: ['国航', '南航', '深航', '东航', '海航', '国泰', '川航'],
- axisLine: {
- show: true,
- lineStyle: {
- color: '#8897BC',
- },
- },
- axisTick: {
- show: false,
- },
- axisLabel: {
- color: '#8897BC',
- },
- },
- yAxis: [
- {
- type: 'value',
- axisLabel: {
- color: '#8897BC',
- formatter: function (item) {
- return item / 10000 + '万'
- },
- },
- splitLine: {
- lineStyle: {
- type: 'dashed',
- color: 'rgba(196,194,225, 0.54)',
- },
- },
- name: '单',
- },
- {
- type: 'value',
- axisLabel: {
- color: '#8897BC',
- },
- splitLine: {
- lineStyle: {
- type: 'dashed',
- color: 'rgba(196,194,225, 0.54)',
- },
- },
- name: '吨',
- },
- ],
- series: [
- {
- name: '运单/单',
- type: 'bar',
- data: [12, 10, 15, 11, 16, 4, 6],
- yAxisIndex: 0,
- },
- {
- name: '重量/吨',
- type: 'bar',
- data: [11, 15, 17, 8, 1, 4, 6],
- yAxisIndex: 1,
- },
- ],
- },
- },
- }
- const airStutas = {
- component: 'commonChartsBar',
- option: {
- baseOption: {
- // legend: {
- // data: ['2020年', '2021年'],
- // right:"20",
- // textStyle:{
- // color: "#8897BC"
- // }
- // // top:"-10"
- // },
- tooltip: {
- trigger: 'axis',
- valueFormatter: function (value) {
- return value + '单'
- },
- },
- color: ['#51DEE9', '#4C88E1'],
- grid: {
- bottom: '10%',
- left: '5%',
- right: '1%',
- top: '17%',
- },
- xAxis: {
- data: ['机下交接', '货站交接', '理货'],
- axisLine: {
- show: true,
- lineStyle: {
- color: '#8897BC',
- },
- },
- axisTick: {
- show: false,
- },
- axisLabel: {
- color: '#8897BC',
- },
- },
- yAxis: {
- type: 'value',
- axisLabel: {
- color: '#8897BC',
- },
- splitLine: {
- lineStyle: {
- type: 'dashed',
- color: 'rgba(196,194,225, 0.54)',
- },
- },
- name: '单',
- },
- series: [
- {
- type: 'bar',
- data: [12, 10, 15],
- },
- ],
- },
- },
- }
- const node = ['卸机', '机下交接', '货站交接', '提取']
- const hours = Array.from({ length: 24 }, (v, i) => i + 1)
- const hourPeak = {
- component: 'commonChartsScatter',
- option: {
- tooltip: {
- trigger: 'axis',
- valueFormatter: function (value) {
- return value + '单'
- },
- },
- title: node.map((month, index) => ({
- top: ((index + 0.5) * 100) / 4 - 3 + '%',
- text: month,
- textStyle: {
- fontSize: 12,
- fontWeight: 'normal',
- color: '#698dc3',
- },
- })),
- singleAxis: node.map((month, index) => ({
- type: 'category',
- data: hours,
- top: ((index + 0.5) * 100) / 4 - 3 + '%',
- height: 100 / 4 - 5 + '%',
- left: '12%',
- right: '1%',
- axisTick: {
- show: false,
- },
- splitLine: {
- show: false,
- },
- })),
- series: node.map((month, index) => ({
- singleAxisIndex: index,
- coordinateSystem: 'singleAxis',
- type: 'scatter',
- data: [
- 3,
- 6,
- 1,
- 4,
- 0,
- 4,
- 2,
- 5,
- 4,
- 4,
- 6,
- 2,
- 0,
- 3,
- 1,
- 6,
- 6,
- 1,
- 0,
- 3,
- 6,
- 3,
- 0,
- 5,
- ],
- symbolSize: function (dataItem) {
- return dataItem * 3
- },
- })),
- },
- }
- const getPublicData = async (id: number, times?: any[]) => {
- try {
- const {
- code,
- returnData: { listValues },
- } = await Query<CommonData>({
- id,
- dataContent: times,
- })
- if (Number(code) !== 0) {
- return []
- } else {
- return listValues
- }
- } catch (err) {
- return []
- }
- }
- return {
- optionLeft,
- airlineAbnormalBaggage,
- airCompaneBaggage,
- airStutas,
- hourPeak,
- getPublicData,
- }
- }
|