|
@@ -209,18 +209,75 @@ const barOptions = {
|
|
|
},
|
|
|
series: [
|
|
|
{
|
|
|
+ color: 'blue',
|
|
|
name: 'Punch Card',
|
|
|
type: 'scatter',
|
|
|
symbolSize: function (val) {
|
|
|
- return val[2] / 100;
|
|
|
+ return val[2] / 4;
|
|
|
},
|
|
|
data: [],
|
|
|
animationDelay: function (idx) {
|
|
|
- return idx / 100;
|
|
|
+ return idx / 4;
|
|
|
}
|
|
|
}
|
|
|
]
|
|
|
}
|
|
|
+const barOptioner = {
|
|
|
+title: {
|
|
|
+ text: ''
|
|
|
+},
|
|
|
+legend: {
|
|
|
+ data: ['Punch Card'],
|
|
|
+ left: 'right'
|
|
|
+},
|
|
|
+tooltip: {
|
|
|
+ position: 'top'
|
|
|
+},
|
|
|
+grid: {
|
|
|
+ left: 2,
|
|
|
+ bottom: 10,
|
|
|
+ right: 10,
|
|
|
+ containLabel: true
|
|
|
+},
|
|
|
+xAxis: {
|
|
|
+ axisLabel: {
|
|
|
+ color: '#8897BC',
|
|
|
+ },
|
|
|
+ type: 'category',
|
|
|
+ data: [],
|
|
|
+ boundaryGap: false,
|
|
|
+ splitLine: {
|
|
|
+ show: true
|
|
|
+ },
|
|
|
+ axisLine: {
|
|
|
+ show: false
|
|
|
+ }
|
|
|
+},
|
|
|
+yAxis: {
|
|
|
+ type: 'category',
|
|
|
+ axisLabel: {
|
|
|
+ color: '#8897BC',
|
|
|
+ },
|
|
|
+ data: [],
|
|
|
+ axisLine: {
|
|
|
+ show: false
|
|
|
+ }
|
|
|
+},
|
|
|
+series: [
|
|
|
+ {
|
|
|
+ color: 'blue',
|
|
|
+ name: 'Punch Card',
|
|
|
+ type: 'scatter',
|
|
|
+ symbolSize: function (val) {
|
|
|
+ return val[2] / 100;
|
|
|
+ },
|
|
|
+ data: [],
|
|
|
+ animationDelay: function (idx) {
|
|
|
+ return idx / 100;
|
|
|
+ }
|
|
|
+ }
|
|
|
+]
|
|
|
+}
|
|
|
export default {
|
|
|
name: "Singleairline",
|
|
|
data () {
|
|
@@ -231,7 +288,7 @@ export default {
|
|
|
{
|
|
|
prop: "aircompany",
|
|
|
inputType: "select",
|
|
|
- placeholder: "",
|
|
|
+ placeholder: "CZ",
|
|
|
requiredWarning: "",
|
|
|
clearable: true,
|
|
|
filterable: true,
|
|
@@ -257,9 +314,8 @@ export default {
|
|
|
{
|
|
|
prop: "dateTime",
|
|
|
inputType: "datePicker",
|
|
|
- clearable: true,
|
|
|
+ requiredWarning: "请先选择统计时间范围",
|
|
|
width: "240px",
|
|
|
- options: [],
|
|
|
},
|
|
|
],
|
|
|
formData: {
|
|
@@ -272,7 +328,7 @@ export default {
|
|
|
transHourDataOption: this._.cloneDeep(barOption),
|
|
|
baggageCountItems: this._.cloneDeep(barOption),
|
|
|
outHourDataOptioneol: this._.cloneDeep(barOptions),
|
|
|
- outHourDataOptioneols: this._.cloneDeep(barOptions),
|
|
|
+ outHourDataOptioneols: this._.cloneDeep(barOptioner),
|
|
|
}
|
|
|
},
|
|
|
components: {
|
|
@@ -409,7 +465,6 @@ export default {
|
|
|
ars.push([Object.keys(element)[i+2],element.project,Object.values(element)[i+2]])
|
|
|
}
|
|
|
});
|
|
|
- console.log(this.outHourDataOptioneol.yAxis.data)
|
|
|
arr.forEach(element => {
|
|
|
element = element.splice(0,2)
|
|
|
});
|