|
@@ -0,0 +1,498 @@
|
|
|
+<template>
|
|
|
+ <div class="flight-statistics-header">
|
|
|
+ <template v-if="title">
|
|
|
+ <div class="title">{{ title }}</div>
|
|
|
+ </template>
|
|
|
+ <el-form
|
|
|
+ ref="form"
|
|
|
+ class="form"
|
|
|
+ :model="formData"
|
|
|
+ >
|
|
|
+ <el-form-item
|
|
|
+ v-for="item in formItems"
|
|
|
+ :key="item.prop"
|
|
|
+ :prop="item.prop"
|
|
|
+ :label="item.label"
|
|
|
+ >
|
|
|
+ <template v-if="item.inputType === 'input'">
|
|
|
+ <el-input
|
|
|
+ v-model="formData[item.prop]"
|
|
|
+ :size="item.size || 'small'"
|
|
|
+ :placeholder="item.placeholder || '请输入'"
|
|
|
+ :clearable="item.clearable"
|
|
|
+ />
|
|
|
+ </template>
|
|
|
+ <template v-if="item.inputType === 'select'">
|
|
|
+ <el-select
|
|
|
+ v-model="formData[item.prop]"
|
|
|
+ :filterable="item.filterable"
|
|
|
+ :size="item.size || 'small'"
|
|
|
+ :placeholder="item.placeholder || '请选择'"
|
|
|
+ :clearable="item.clearable"
|
|
|
+ :disabled="item.disabled"
|
|
|
+ @change="
|
|
|
+ (value) => {
|
|
|
+ item.changeHandler && item.changeHandler(value);
|
|
|
+ }
|
|
|
+ "
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="option in item.options"
|
|
|
+ :key="option.value"
|
|
|
+ :value="option.value"
|
|
|
+ :label="option.label"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ </template>
|
|
|
+ <template v-if="item.inputType === 'datePicker'">
|
|
|
+ <el-date-picker
|
|
|
+ v-model="formData[item.prop]"
|
|
|
+ :size="item.size || 'small'"
|
|
|
+ type="daterange"
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
+ range-separator="至"
|
|
|
+ start-placeholder="开始日期"
|
|
|
+ end-placeholder="结束日期"
|
|
|
+ />
|
|
|
+ </template>
|
|
|
+ <template v-if="item.inputType === 'cascader'">
|
|
|
+ <el-cascader
|
|
|
+ v-model="formData[item.prop]"
|
|
|
+ :size="item.size || 'small'"
|
|
|
+ :placeholder="item.placeholder || '请选择'"
|
|
|
+ :options="item.options"
|
|
|
+ :props="item.props"
|
|
|
+ :clearable="item.clearable"
|
|
|
+ :disabled="item.disabled"
|
|
|
+ />
|
|
|
+ </template>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item v-if="formItems.length">
|
|
|
+ <el-button
|
|
|
+ size="small"
|
|
|
+ style="height:33px;border-radius:4px"
|
|
|
+ @click="getData"
|
|
|
+ >查询</el-button>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import { Query } from '@/api/dataIntegration'
|
|
|
+export default {
|
|
|
+ name: 'StatisticsHeader',
|
|
|
+ props: {
|
|
|
+ title: {
|
|
|
+ type: String,
|
|
|
+ default: ''
|
|
|
+ },
|
|
|
+ items: {
|
|
|
+ type: Array,
|
|
|
+ default: undefined
|
|
|
+ },
|
|
|
+ data: {
|
|
|
+ type: Object,
|
|
|
+ default: undefined
|
|
|
+ }
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ const that = this
|
|
|
+ return {
|
|
|
+ formData: {
|
|
|
+ range: '',
|
|
|
+ inOrOut: '',
|
|
|
+ interval: '',
|
|
|
+ airline: '',
|
|
|
+ area: '',
|
|
|
+ airport: '',
|
|
|
+ terminal: '',
|
|
|
+ dateTime: ''
|
|
|
+ },
|
|
|
+ formItems: [
|
|
|
+ {
|
|
|
+ prop: 'range',
|
|
|
+ inputType: 'select',
|
|
|
+ placeholder: '请选择统计范围',
|
|
|
+ options: [
|
|
|
+ {
|
|
|
+ value: '全部',
|
|
|
+ label: '全部'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ value: '航线',
|
|
|
+ label: '航线'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ value: '大区',
|
|
|
+ label: '大区'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ value: '航站',
|
|
|
+ label: '航站'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ value: '航站楼',
|
|
|
+ label: '航站楼'
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ changeHandler(value) {
|
|
|
+ that.getInOrOut(value)
|
|
|
+ that.formData.airline = ''
|
|
|
+ that.formData.area = ''
|
|
|
+ that.formData.airport = ''
|
|
|
+ that.formData.terminal = ''
|
|
|
+ that.formData.interval = ''
|
|
|
+ that.formData.inOrOut = ''
|
|
|
+ that.formItems[4].disabled = true
|
|
|
+ that.formItems[5].disabled = true
|
|
|
+ that.formItems[6].disabled = true
|
|
|
+ that.formItems[7].disabled = true
|
|
|
+ switch (value) {
|
|
|
+ case '全部':
|
|
|
+ that.formItems[4].disabled = false
|
|
|
+ that.formItems[5].disabled = false
|
|
|
+ that.formItems[6].disabled = false
|
|
|
+ that.formItems[7].disabled = false
|
|
|
+ break
|
|
|
+ case '航线':
|
|
|
+ that.formItems[4].disabled = false
|
|
|
+ break
|
|
|
+ case '大区':
|
|
|
+ that.formItems[5].disabled = false
|
|
|
+ break
|
|
|
+ case '航站':
|
|
|
+ that.formItems[6].disabled = false
|
|
|
+ break
|
|
|
+ case '航站楼':
|
|
|
+ that.formItems[7].disabled = false
|
|
|
+ break
|
|
|
+ default:
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ prop: 'inOrOut',
|
|
|
+ inputType: 'select',
|
|
|
+ placeholder: '请选择进离港',
|
|
|
+ clearable: true,
|
|
|
+ options: []
|
|
|
+ },
|
|
|
+ {
|
|
|
+ prop: 'interval',
|
|
|
+ inputType: 'select',
|
|
|
+ placeholder: '请选择统计时间维度',
|
|
|
+ clearable: true,
|
|
|
+ options: [
|
|
|
+ {
|
|
|
+ value: '日',
|
|
|
+ label: '按日统计'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ value: '月',
|
|
|
+ label: '按月统计'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ value: '季',
|
|
|
+ label: '按季统计'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ value: '年',
|
|
|
+ label: '按年统计'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ prop: 'dateTime',
|
|
|
+ inputType: 'datePicker',
|
|
|
+ clearable: true,
|
|
|
+ options: []
|
|
|
+ },
|
|
|
+ {
|
|
|
+ prop: 'airline',
|
|
|
+ inputType: 'select',
|
|
|
+ placeholder: '航线选择',
|
|
|
+ filterable: true,
|
|
|
+ clearable: true,
|
|
|
+ disabled: true,
|
|
|
+ options: []
|
|
|
+ },
|
|
|
+ {
|
|
|
+ prop: 'area',
|
|
|
+ inputType: 'select',
|
|
|
+ placeholder: '大区选择',
|
|
|
+ filterable: true,
|
|
|
+ clearable: true,
|
|
|
+ disabled: true,
|
|
|
+ options: []
|
|
|
+ },
|
|
|
+ {
|
|
|
+ prop: 'airport',
|
|
|
+ inputType: 'select',
|
|
|
+ placeholder: '航站选择',
|
|
|
+ filterable: true,
|
|
|
+ clearable: true,
|
|
|
+ // multiple: true,
|
|
|
+ disabled: true,
|
|
|
+ options: []
|
|
|
+ },
|
|
|
+ {
|
|
|
+ prop: 'terminal',
|
|
|
+ inputType: 'select',
|
|
|
+ placeholder: '航站楼选择',
|
|
|
+ filterable: true,
|
|
|
+ props: {
|
|
|
+ multiple: true
|
|
|
+ },
|
|
|
+ clearable: true,
|
|
|
+ disabled: true,
|
|
|
+ options: []
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ watch: {
|
|
|
+ items: {
|
|
|
+ handler(val) {
|
|
|
+ val && (this.formItems = val)
|
|
|
+ },
|
|
|
+ deep: true,
|
|
|
+ immediate: true
|
|
|
+ },
|
|
|
+ data: {
|
|
|
+ handler(val) {
|
|
|
+ val && (this.formData = val)
|
|
|
+ },
|
|
|
+ deep: true,
|
|
|
+ immediate: true
|
|
|
+ }
|
|
|
+ },
|
|
|
+ created() {
|
|
|
+ if (this.formItems.length) {
|
|
|
+ // this.getInOrOut()
|
|
|
+ // this.getInOrOut('全部')
|
|
|
+ this.getAirline()
|
|
|
+ this.getArea()
|
|
|
+ this.getAirport()
|
|
|
+ this.getTerminal()
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ getData() {
|
|
|
+ // console.log(this.formData)
|
|
|
+ this.$emit('getFormData', this.formData)
|
|
|
+ },
|
|
|
+ async getInOrOut(data) {
|
|
|
+ try {
|
|
|
+ const res = await Query({
|
|
|
+ id: DATACONTENT_ID.inOrOutId,
|
|
|
+ dataContent: [data]
|
|
|
+ })
|
|
|
+ if (res.code === '0') {
|
|
|
+ const arr = []
|
|
|
+ for (let i = 0; i < res.returnData.listValues.length; i++) {
|
|
|
+ arr.push({
|
|
|
+ label: res.returnData.listValues[i].a5,
|
|
|
+ value: res.returnData.listValues[i].a5
|
|
|
+ })
|
|
|
+ }
|
|
|
+ const theItem = this.formItems.find(item => item.prop === 'inOrOut')
|
|
|
+ theItem && (theItem.options = arr)
|
|
|
+ } else {
|
|
|
+ this.$message.error(res.message)
|
|
|
+ }
|
|
|
+ } catch (error) {
|
|
|
+ console.log('出错了', error)
|
|
|
+ }
|
|
|
+ },
|
|
|
+ async getAirline() {
|
|
|
+ try {
|
|
|
+ const res = await Query({
|
|
|
+ id: DATACONTENT_ID.AirlineId,
|
|
|
+ dataContent: []
|
|
|
+ })
|
|
|
+ if (res.code === '0') {
|
|
|
+ const arr = []
|
|
|
+ for (let i = 0; i < res.returnData.listValues.length; i++) {
|
|
|
+ arr.push({
|
|
|
+ label: res.returnData.listValues[i].a2,
|
|
|
+ value: res.returnData.listValues[i].a2
|
|
|
+ })
|
|
|
+ }
|
|
|
+ const theItem = this.formItems.find(item => item.prop === 'airline')
|
|
|
+ theItem && (theItem.options = arr)
|
|
|
+ } else {
|
|
|
+ this.$message.error(res.message)
|
|
|
+ }
|
|
|
+ } catch (error) {
|
|
|
+ console.log('出错了', error)
|
|
|
+ }
|
|
|
+ },
|
|
|
+ async getArea() {
|
|
|
+ try {
|
|
|
+ const res = await Query({
|
|
|
+ id: DATACONTENT_ID.AreaId,
|
|
|
+ dataContent: []
|
|
|
+ })
|
|
|
+ if (res.code === '0') {
|
|
|
+ const arr = []
|
|
|
+ for (let i = 0; i < res.returnData.listValues.length; i++) {
|
|
|
+ arr.push({
|
|
|
+ label: res.returnData.listValues[i].a4,
|
|
|
+ value: res.returnData.listValues[i].a4
|
|
|
+ })
|
|
|
+ }
|
|
|
+ const theItem = this.formItems.find(item => item.prop === 'area')
|
|
|
+ theItem && (theItem.options = arr)
|
|
|
+ } else {
|
|
|
+ this.$message.error(res.message)
|
|
|
+ }
|
|
|
+ } catch (error) {
|
|
|
+ console.log('出错了', error)
|
|
|
+ }
|
|
|
+ },
|
|
|
+ async getAirport() {
|
|
|
+ try {
|
|
|
+ const res = await Query({
|
|
|
+ id: DATACONTENT_ID.AirportId,
|
|
|
+ dataContent: []
|
|
|
+ })
|
|
|
+ if (res.code === '0') {
|
|
|
+ const arr = []
|
|
|
+ for (let i = 0; i < res.returnData.listValues.length; i++) {
|
|
|
+ arr.push({
|
|
|
+ label: res.returnData.listValues[i].a2,
|
|
|
+ value: res.returnData.listValues[i].a2
|
|
|
+ })
|
|
|
+ }
|
|
|
+ const theItem = this.formItems.find(item => item.prop === 'airport')
|
|
|
+ theItem && (theItem.options = arr)
|
|
|
+ } else {
|
|
|
+ this.$message.error(res.message)
|
|
|
+ }
|
|
|
+ } catch (error) {
|
|
|
+ console.log('出错了', error)
|
|
|
+ }
|
|
|
+ },
|
|
|
+ async getTerminal() {
|
|
|
+ try {
|
|
|
+ const res = await Query({
|
|
|
+ id: DATACONTENT_ID.TerminalId,
|
|
|
+ dataContent: []
|
|
|
+ })
|
|
|
+ if (res.code === '0') {
|
|
|
+ const arr = []
|
|
|
+ for (let i = 0; i < res.returnData.listValues.length; i++) {
|
|
|
+ arr.push({
|
|
|
+ label: res.returnData.listValues[i].a2,
|
|
|
+ value: res.returnData.listValues[i].a2
|
|
|
+ })
|
|
|
+ }
|
|
|
+ const theItem = this.formItems.find(item => item.prop === 'terminal')
|
|
|
+ theItem && (theItem.options = arr)
|
|
|
+ } else {
|
|
|
+ this.$message.error(res.message)
|
|
|
+ }
|
|
|
+ } catch (error) {
|
|
|
+ console.log('出错了', error)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+.flight-statistics-header {
|
|
|
+ padding-top: 14px;
|
|
|
+ min-height: 80px;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: flex-start;
|
|
|
+ .title {
|
|
|
+ // margin-right: 24px;
|
|
|
+ padding-left: 16px;
|
|
|
+ // min-width: 176px;
|
|
|
+ height: 32px;
|
|
|
+ line-height: 32px;
|
|
|
+ font-size: 18px;
|
|
|
+ font-family: Helvetica, 'Microsoft YaHei';
|
|
|
+ font-weight: bold;
|
|
|
+ position: relative;
|
|
|
+ &::before {
|
|
|
+ content: '';
|
|
|
+ width: 4px;
|
|
|
+ height: 20px;
|
|
|
+ background: #2d67e3;
|
|
|
+ position: absolute;
|
|
|
+ top: 0;
|
|
|
+ bottom: 0;
|
|
|
+ left: 0;
|
|
|
+ margin: auto;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ::v-deep .form {
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ > .el-form-item {
|
|
|
+ margin-bottom: 24px;
|
|
|
+ // width: 185px;
|
|
|
+ &:not(:last-child) {
|
|
|
+ margin-right: 8px;
|
|
|
+ }
|
|
|
+ .el-form-item__content {
|
|
|
+ height: 32px;
|
|
|
+ line-height: 30px;
|
|
|
+ .el-input {
|
|
|
+ &.is-disabled .el-input__inner {
|
|
|
+ border: none;
|
|
|
+ }
|
|
|
+ .el-input__inner {
|
|
|
+ border-radius: 4px;
|
|
|
+ font-family: Helvetica, 'Microsoft YaHei';
|
|
|
+ color: #303133;
|
|
|
+ border-color: #ffffff;
|
|
|
+ &:hover {
|
|
|
+ border-color: #c0c4cc;
|
|
|
+ }
|
|
|
+ &:focus {
|
|
|
+ border-color: #409eff;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .el-date-editor--daterange.el-input,
|
|
|
+ .el-date-editor--daterange.el-input__inner,
|
|
|
+ .el-date-editor--timerange.el-input,
|
|
|
+ .el-date-editor--timerange.el-input__inner {
|
|
|
+ width: 230px;
|
|
|
+ border-radius: 4px;
|
|
|
+ border-color: #ffffff;
|
|
|
+ &:hover {
|
|
|
+ border-color: #c0c4cc;
|
|
|
+ }
|
|
|
+ &.is-active {
|
|
|
+ border-color: #409eff;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .el-select,
|
|
|
+ .el-cascader {
|
|
|
+ .el-input {
|
|
|
+ .el-icon-arrow-up::before {
|
|
|
+ content: '\e78f';
|
|
|
+ }
|
|
|
+ .el-icon-arrow-down::before {
|
|
|
+ content: '\e790';
|
|
|
+ }
|
|
|
+ &:not(.is-disabled) {
|
|
|
+ .el-input__icon,
|
|
|
+ .el-input__inner::-webkit-input-placeholder {
|
|
|
+ color: #303133;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|