chenrui  1 year ago
parent
commit
d75cc7d793

+ 7 - 6
src/views/statisticsCharts/components/newPieStatisticsCharts.vue

@@ -353,13 +353,13 @@ export default {
       delete params.dateTime
       this.params = Object.values(params)
       const paramsList = [params]
-      this.getMultipleChartsData(this.querySettings.serviceId, paramsList)
+      this.getMultipleChartsData(this.querySettings.serviceid, paramsList)
     },
-    async getMultipleChartsData(serviceId, paramsList) {
+    async getMultipleChartsData(serviceid, paramsList) {
       this.loading = true
       try {
         const listValuesArray = await Promise.all(
-          paramsList.map(params => this.getChartsData(serviceId, params))
+          paramsList.map(params => this.getChartsData(serviceid, params))
         )
         this.tableData = this._.sortBy(listValuesArray.flat(), 'fdt')
         const categories = this.categoryDatas.map(category => category.key)
@@ -394,15 +394,16 @@ export default {
       }
       this.loading = false
     },
-    async getChartsData(serviceId, params) {
+    async getChartsData(serviceid, params) {
       try {
         const {
           code,
           returnData: listValues,
           message,
         } = await TempQuery({
-          serviceId,
-          dataContent: params,
+          serviceid,
+          datacontent: [{filter:params}],
+          event: '0',
         })
         if (String(code) === '0') {
           return listValues.map(obj => ({

+ 7 - 6
src/views/statisticsCharts/components/newPieStatisticsChartscpsy.vue

@@ -353,13 +353,13 @@ export default {
       delete params.dateTime
       this.params = Object.values(params)
       const paramsList = [params]
-      this.getMultipleChartsData(this.querySettings.serviceId, paramsList)
+      this.getMultipleChartsData(this.querySettings.serviceid, paramsList)
     },
-    async getMultipleChartsData(serviceId, paramsList) {
+    async getMultipleChartsData(serviceid, paramsList) {
       this.loading = true
       try {
         const listValuesArray = await Promise.all(
-          paramsList.map(params => this.getChartsData(serviceId, params))
+          paramsList.map(params => this.getChartsData(serviceid, params))
         )
         this.tableData = this._.sortBy(listValuesArray.flat(), 'fdt')
         const categories = this.categoryDatas.map(category => category.key)
@@ -401,15 +401,16 @@ export default {
       }
       this.loading = false
     },
-    async getChartsData(serviceId, params) {
+    async getChartsData(serviceid, params) {
       try {
         const {
           code,
           returnData: listValues,
           message,
         } = await TempQuery({
-          serviceId,
-          dataContent: params,
+          serviceid,
+          datacontent: [{filter:params}],
+          event: '0',
         })
         if (String(code) === '0') {
           return listValues.map(obj => ({

+ 28 - 3
src/views/statisticsCharts/views/abnormalBaggageClassificationStatisticsCharts.vue

@@ -10,6 +10,7 @@
 
 <script>
 import CommonPieStatisticsCharts from '../components/newPieStatisticsCharts.vue'
+import { mapGetters } from 'vuex'
 
 export default {
   name: 'AbnormalBaggageClassificationStatisticsCharts',
@@ -18,7 +19,7 @@ export default {
   data() {
     return {
       querySettings: {
-        serviceId: SERVICE_ID.abnormalBaggageClassification,
+        serviceid:'',
       },
       categories: [
         {
@@ -46,8 +47,8 @@ export default {
           width: '150px',
           filterable: true,
           // multiple: true,
-          queryId: SERVICE_ID.AirportIds,
-          setKey: 'code3',
+          queryId: 74,
+          setKey: 'IATACode',
           requiredWarning: '请先选择航站',
           options: [],
         },
@@ -60,5 +61,29 @@ export default {
       ],
     }
   },
+  computed: {
+    ...mapGetters(['authArrs']),
+  },
+  mounted() {
+    this.pageInit()
+  },
+  methods: {
+    //页面初始化
+    pageInit () {
+      //获取页面查询参数
+      const { query } = this.$route
+      this.pageQuery = query
+      //获取页面配置
+      const { pagecode, qid, auth_id } = this.$route.meta
+      //获取页面权限类型组件  pagetype 1模块  2页面  3按钮 4表格 5树形  6弹窗 
+      const pageAuths = this.authArrs
+      if (!pageAuths.length) return
+      //获取当前页面权限类型
+      const pageAuthArrs = pageAuths.filter(item => item['superiorid'] == auth_id)
+      if (!pageAuthArrs.length) return
+      // console.log(pageAuthArrs)
+      this.querySettings.serviceid = pageAuthArrs[0].serviceid
+    },
+  },
 }
 </script>

+ 25 - 2
src/views/statisticsCharts/views/averagepassengers/averagepassairlineStatisticsCharts.vue

@@ -4,6 +4,7 @@
 
 <script>
 import CommonBarStatisticsCharts from '../../components/newBarStatisticsCharts.vue'
+import { mapGetters } from 'vuex'
 import { Query } from '@/api/webApi'
 import { parseTime } from '@/utils'
 
@@ -14,7 +15,7 @@ export default {
     const that = this
     return {
       querySettings: {
-        serviceId: SERVICE_ID.averagepassairline,
+        serviceid: '',
         seriesKey: 'workload',
         xAxisKey: 'fd',
       },
@@ -118,7 +119,7 @@ export default {
           inputType: 'select',
           placeholder: '航司',
           filterable: true,
-          queryId: SERVICE_ID.AirlinportId,
+          queryId: 73,
           setKey: 'ITATCode',
           requiredWarning: '请先选择航司',
           options: [],
@@ -148,7 +149,29 @@ export default {
       ],
     }
   },
+  computed: {
+    ...mapGetters(['authArrs']),
+  },
+  mounted() {
+    this.pageInit()
+  },
   methods: {
+    //页面初始化
+    pageInit () {
+      //获取页面查询参数
+      const { query } = this.$route
+      this.pageQuery = query
+      //获取页面配置
+      const { pagecode, qid, auth_id } = this.$route.meta
+      //获取页面权限类型组件  pagetype 1模块  2页面  3按钮 4表格 5树形  6弹窗 
+      const pageAuths = this.authArrs
+      if (!pageAuths.length) return
+      //获取当前页面权限类型
+      const pageAuthArrs = pageAuths.filter(item => item['superiorid'] == auth_id)
+      if (!pageAuthArrs.length) return
+      // console.log(pageAuthArrs)
+      this.querySettings.serviceid = pageAuthArrs[0].serviceid
+    },
     async getAgentOptions (airport) {
       try {
         const { code, returnData, message } = await Query({

+ 25 - 2
src/views/statisticsCharts/views/averagepassengers/averagepassrouteStatisticsCharts.vue

@@ -4,6 +4,7 @@
 
 <script>
 import CommonBarStatisticsCharts from '../../components/newBarStatisticsCharts.vue'
+import { mapGetters } from 'vuex'
 import { Query } from '@/api/webApi'
 import { parseTime } from '@/utils'
 
@@ -14,7 +15,7 @@ export default {
     const that = this
     return {
       querySettings: {
-        serviceId: SERVICE_ID.averagepassroute,
+        serviceid:'',
         seriesKey: 'workload',
         xAxisKey: 'fd',
       },
@@ -118,7 +119,7 @@ export default {
           inputType: 'select',
           placeholder: '航线',
           filterable: true,
-          queryId: SERVICE_ID.AirlineIds,
+          queryId: 75,
           setKey: 'air_line',
           requiredWarning: '请先选择航线',
           options: [],
@@ -148,7 +149,29 @@ export default {
       ],
     }
   },
+  computed: {
+    ...mapGetters(['authArrs']),
+  },
+  mounted() {
+    this.pageInit()
+  },
   methods: {
+    //页面初始化
+    pageInit () {
+      //获取页面查询参数
+      const { query } = this.$route
+      this.pageQuery = query
+      //获取页面配置
+      const { pagecode, qid, auth_id } = this.$route.meta
+      //获取页面权限类型组件  pagetype 1模块  2页面  3按钮 4表格 5树形  6弹窗 
+      const pageAuths = this.authArrs
+      if (!pageAuths.length) return
+      //获取当前页面权限类型
+      const pageAuthArrs = pageAuths.filter(item => item['superiorid'] == auth_id)
+      if (!pageAuthArrs.length) return
+      // console.log(pageAuthArrs)
+      this.querySettings.serviceid = pageAuthArrs[0].serviceid
+    },
     async getAgentOptions (airport) {
       try {
         const { code, returnData, message } = await Query({

+ 26 - 3
src/views/statisticsCharts/views/averagepassengers/averagepassterminalStatisticsCharts.vue

@@ -4,6 +4,7 @@
 
 <script>
 import CommonBarStatisticsCharts from '../../components/newBarStatisticsCharts.vue'
+import { mapGetters } from 'vuex'
 import { Query } from '@/api/webApi'
 import { parseTime } from '@/utils'
 
@@ -14,7 +15,7 @@ export default {
     const that = this
     return {
       querySettings: {
-        serviceId: SERVICE_ID.averagepassterminal,
+        serviceid: '',
         seriesKey: 'workload',
         xAxisKey: 'fd',
       },
@@ -118,8 +119,8 @@ export default {
           inputType: 'select',
           placeholder: '航站',
           filterable: true,
-          queryId: SERVICE_ID.AirportIds,
-          setKey: 'code3',
+          queryId: 74,
+          setKey: 'IATACode',
           requiredWarning: '请先选择航站',
           options: [],
         },
@@ -166,7 +167,29 @@ export default {
       ],
     }
   },
+  computed: {
+    ...mapGetters(['authArrs']),
+  },
+  mounted() {
+    this.pageInit()
+  },
   methods: {
+    //页面初始化
+    pageInit () {
+      //获取页面查询参数
+      const { query } = this.$route
+      this.pageQuery = query
+      //获取页面配置
+      const { pagecode, qid, auth_id } = this.$route.meta
+      //获取页面权限类型组件  pagetype 1模块  2页面  3按钮 4表格 5树形  6弹窗 
+      const pageAuths = this.authArrs
+      if (!pageAuths.length) return
+      //获取当前页面权限类型
+      const pageAuthArrs = pageAuths.filter(item => item['superiorid'] == auth_id)
+      if (!pageAuthArrs.length) return
+      // console.log(pageAuthArrs)
+      this.querySettings.serviceid = pageAuthArrs[0].serviceid
+    },
     async getAgentOptions (airport) {
       try {
         const { code, returnData, message } = await Query({

+ 27 - 4
src/views/statisticsCharts/views/flight/flightvolumeStatisticsCharts.vue

@@ -4,6 +4,7 @@
 
 <script>
 import CommonBarStatisticsCharts from '../../components/newBarStatisticsCharts.vue'
+import { mapGetters } from 'vuex'
 import { Query } from '@/api/webApi'
 import { parseTime } from '@/utils'
 
@@ -14,7 +15,7 @@ export default {
     const that = this
     return {
       querySettings: {
-        serviceId: SERVICE_ID.terminalflight,
+        serviceid: '',
         seriesKey: 'workload',
         xAxisKey: 'fd',
       },
@@ -121,8 +122,8 @@ export default {
           inputType: 'select',
           placeholder: '航站',
           filterable: true,
-          queryId: SERVICE_ID.AirportIds,
-          setKey: 'code3',
+          queryId: 74,
+          setKey: 'IATACode',
           requiredWarning: '请先选择航站',
           options: [],
         },
@@ -169,7 +170,7 @@ export default {
           placeholder: '机型',
           requiredWarning: '请先选择机型',
           filterable: true,
-          queryId: SERVICE_ID.ModelIds,
+          queryId: 94,
           setKey: 'craftType',
           options: [],
         },
@@ -215,7 +216,29 @@ export default {
       ],
     }
   },
+  computed: {
+    ...mapGetters(['authArrs']),
+  },
+  mounted() {
+    this.pageInit()
+  },
   methods: {
+    //页面初始化
+    pageInit () {
+      //获取页面查询参数
+      const { query } = this.$route
+      this.pageQuery = query
+      //获取页面配置
+      const { pagecode, qid, auth_id } = this.$route.meta
+      //获取页面权限类型组件  pagetype 1模块  2页面  3按钮 4表格 5树形  6弹窗 
+      const pageAuths = this.authArrs
+      if (!pageAuths.length) return
+      //获取当前页面权限类型
+      const pageAuthArrs = pageAuths.filter(item => item['superiorid'] == auth_id)
+      if (!pageAuthArrs.length) return
+      // console.log(pageAuthArrs)
+      this.querySettings.serviceid = pageAuthArrs[0].serviceid
+    },
     async getAgentOptions (airport) {
       try {
         const { code, returnData, message } = await Query({

+ 26 - 3
src/views/statisticsCharts/views/flight/numberairStatisticsCharts.vue

@@ -4,6 +4,7 @@
 
 <script>
 import CommonBarStatisticsCharts from '../../components/newBarStatisticsCharts.vue'
+import { mapGetters } from 'vuex'
 import { Query } from '@/api/webApi'
 import { parseTime } from '@/utils'
 
@@ -14,7 +15,7 @@ export default {
     const that = this
     return {
       querySettings: {
-        serviceId: SERVICE_ID.numberairline,
+        serviceid: '',
         seriesKey: 'workload',
         xAxisKey: 'fd',
       },
@@ -121,7 +122,7 @@ export default {
           inputType: 'select',
           placeholder: '航司',
           filterable: true,
-          queryId: SERVICE_ID.AirlinportId,
+          queryId: 73,
           setKey: 'ITATCode',
           requiredWarning: '请先选择航司',
           options: [],
@@ -152,7 +153,7 @@ export default {
           placeholder: '全部',
           requiredWarning: '请先选择机型',
           filterable: true,
-          queryId: SERVICE_ID.ModelIds,
+          queryId: 94,
           setKey: 'craftType',
           options: [],
         },
@@ -198,7 +199,29 @@ export default {
       ],
     }
   },
+  computed: {
+    ...mapGetters(['authArrs']),
+  },
+  mounted() {
+    this.pageInit()
+  },
   methods: {
+    //页面初始化
+    pageInit () {
+      //获取页面查询参数
+      const { query } = this.$route
+      this.pageQuery = query
+      //获取页面配置
+      const { pagecode, qid, auth_id } = this.$route.meta
+      //获取页面权限类型组件  pagetype 1模块  2页面  3按钮 4表格 5树形  6弹窗 
+      const pageAuths = this.authArrs
+      if (!pageAuths.length) return
+      //获取当前页面权限类型
+      const pageAuthArrs = pageAuths.filter(item => item['superiorid'] == auth_id)
+      if (!pageAuthArrs.length) return
+      // console.log(pageAuthArrs)
+      this.querySettings.serviceid = pageAuthArrs[0].serviceid
+    },
     async getAgentOptions (airport) {
       try {
         const { code, returnData, message } = await Query({

+ 26 - 3
src/views/statisticsCharts/views/flight/volumeofStatisticsCharts.vue

@@ -4,6 +4,7 @@
 
 <script>
 import CommonBarStatisticsCharts from '../../components/newBarStatisticsCharts.vue'
+import { mapGetters } from 'vuex'
 import { Query } from '@/api/webApi'
 import { parseTime } from '@/utils'
 
@@ -14,7 +15,7 @@ export default {
     const that = this
     return {
       querySettings: {
-        serviceId: SERVICE_ID.flightvolume,
+        serviceid: '',
         seriesKey: 'workload',
         xAxisKey: 'fd',
       },
@@ -121,7 +122,7 @@ export default {
           inputType: 'select',
           placeholder: '航线',
           filterable: true,
-          queryId: SERVICE_ID.AirlineIds,
+          queryId: 75,
           setKey: 'air_line',
           requiredWarning: '请先选择航线',
           options: [],
@@ -152,7 +153,7 @@ export default {
           placeholder: '全部',
           requiredWarning: '请先选择机型',
           filterable: true,
-          queryId: SERVICE_ID.ModelIds,
+          queryId: 94,
           setKey: 'craftType',
           options: [],
         },
@@ -198,7 +199,29 @@ export default {
       ],
     }
   },
+  computed: {
+    ...mapGetters(['authArrs']),
+  },
+  mounted() {
+    this.pageInit()
+  },
   methods: {
+    //页面初始化
+    pageInit () {
+      //获取页面查询参数
+      const { query } = this.$route
+      this.pageQuery = query
+      //获取页面配置
+      const { pagecode, qid, auth_id } = this.$route.meta
+      //获取页面权限类型组件  pagetype 1模块  2页面  3按钮 4表格 5树形  6弹窗 
+      const pageAuths = this.authArrs
+      if (!pageAuths.length) return
+      //获取当前页面权限类型
+      const pageAuthArrs = pageAuths.filter(item => item['superiorid'] == auth_id)
+      if (!pageAuthArrs.length) return
+      // console.log(pageAuthArrs)
+      this.querySettings.serviceid = pageAuthArrs[0].serviceid
+    },
     async getAgentOptions (airport) {
       try {
         const { code, returnData, message } = await Query({

+ 25 - 2
src/views/statisticsCharts/views/passenger/passengerairlineStatisticsCharts.vue

@@ -4,6 +4,7 @@
 
 <script>
 import CommonBarStatisticsCharts from '../../components/newBarStatisticsCharts.vue'
+import { mapGetters } from 'vuex'
 import { Query } from '@/api/webApi'
 import { parseTime } from '@/utils'
 
@@ -14,7 +15,7 @@ export default {
     const that = this
     return {
       querySettings: {
-        serviceId: SERVICE_ID.passengerairline,
+        serviceid: '',
         seriesKey: 'workload',
         xAxisKey: 'fd',
       },
@@ -118,7 +119,7 @@ export default {
           inputType: 'select',
           placeholder: '航司',
           filterable: true,
-          queryId: SERVICE_ID.AirlinportId,
+          queryId: 73,
           setKey: 'ITATCode',
           requiredWarning: '请先选择航司',
           options: [],
@@ -148,7 +149,29 @@ export default {
       ],
     }
   },
+  computed: {
+    ...mapGetters(['authArrs']),
+  },
+  mounted() {
+    this.pageInit()
+  },
   methods: {
+    //页面初始化
+    pageInit () {
+      //获取页面查询参数
+      const { query } = this.$route
+      this.pageQuery = query
+      //获取页面配置
+      const { pagecode, qid, auth_id } = this.$route.meta
+      //获取页面权限类型组件  pagetype 1模块  2页面  3按钮 4表格 5树形  6弹窗 
+      const pageAuths = this.authArrs
+      if (!pageAuths.length) return
+      //获取当前页面权限类型
+      const pageAuthArrs = pageAuths.filter(item => item['superiorid'] == auth_id)
+      if (!pageAuthArrs.length) return
+      // console.log(pageAuthArrs)
+      this.querySettings.serviceid = pageAuthArrs[0].serviceid
+    },
     async getAgentOptions (airport) {
       try {
         const { code, returnData, message } = await Query({

+ 25 - 2
src/views/statisticsCharts/views/passenger/passengerrouteStatisticsCharts.vue

@@ -4,6 +4,7 @@
 
 <script>
 import CommonBarStatisticsCharts from '../../components/newBarStatisticsCharts.vue'
+import { mapGetters } from 'vuex'
 import { Query } from '@/api/webApi'
 import { parseTime } from '@/utils'
 
@@ -14,7 +15,7 @@ export default {
     const that = this
     return {
       querySettings: {
-        serviceId: SERVICE_ID.passengerroute,
+        serviceid: '',
         seriesKey: 'workload',
         xAxisKey: 'fd',
       },
@@ -118,7 +119,7 @@ export default {
           inputType: 'select',
           placeholder: '航线',
           filterable: true,
-          queryId: SERVICE_ID.AirlineIds,
+          queryId: 75,
           setKey: 'air_line',
           requiredWarning: '请先选择航线',
           options: [],
@@ -148,7 +149,29 @@ export default {
       ],
     }
   },
+  computed: {
+    ...mapGetters(['authArrs']),
+  },
+  mounted() {
+    this.pageInit()
+  },
   methods: {
+    //页面初始化
+    pageInit () {
+      //获取页面查询参数
+      const { query } = this.$route
+      this.pageQuery = query
+      //获取页面配置
+      const { pagecode, qid, auth_id } = this.$route.meta
+      //获取页面权限类型组件  pagetype 1模块  2页面  3按钮 4表格 5树形  6弹窗 
+      const pageAuths = this.authArrs
+      if (!pageAuths.length) return
+      //获取当前页面权限类型
+      const pageAuthArrs = pageAuths.filter(item => item['superiorid'] == auth_id)
+      if (!pageAuthArrs.length) return
+      // console.log(pageAuthArrs)
+      this.querySettings.serviceid = pageAuthArrs[0].serviceid
+    },
     async getAgentOptions (airport) {
       try {
         const { code, returnData, message } = await Query({

+ 26 - 3
src/views/statisticsCharts/views/passenger/terminalpassengersStatisticsCharts.vue

@@ -4,6 +4,7 @@
 
 <script>
 import CommonBarStatisticsCharts from '../../components/newBarStatisticsCharts.vue'
+import { mapGetters } from 'vuex'
 import { Query } from '@/api/webApi'
 import { parseTime } from '@/utils'
 
@@ -14,7 +15,7 @@ export default {
     const that = this
     return {
       querySettings: {
-        serviceId: SERVICE_ID.passengerterminal,
+        serviceid: '',
         seriesKey: 'workload',
         xAxisKey: 'fd',
       },
@@ -118,8 +119,8 @@ export default {
           inputType: 'select',
           placeholder: '航站',
           filterable: true,
-          queryId: SERVICE_ID.AirportIds,
-          setKey: 'code3',
+          queryId: 74,
+          setKey: 'IATACode',
           requiredWarning: '请先选择航站',
           options: [],
         },
@@ -166,7 +167,29 @@ export default {
       ],
     }
   },
+  computed: {
+    ...mapGetters(['authArrs']),
+  },
+  mounted() {
+    this.pageInit()
+  },
   methods: {
+        //页面初始化
+    pageInit () {
+      //获取页面查询参数
+      const { query } = this.$route
+      this.pageQuery = query
+      //获取页面配置
+      const { pagecode, qid, auth_id } = this.$route.meta
+      //获取页面权限类型组件  pagetype 1模块  2页面  3按钮 4表格 5树形  6弹窗 
+      const pageAuths = this.authArrs
+      if (!pageAuths.length) return
+      //获取当前页面权限类型
+      const pageAuthArrs = pageAuths.filter(item => item['superiorid'] == auth_id)
+      if (!pageAuthArrs.length) return
+      // console.log(pageAuthArrs)
+      this.querySettings.serviceid = pageAuthArrs[0].serviceid
+    },
     async getAgentOptions (airport) {
       try {
         const { code, returnData, message } = await Query({

+ 28 - 4
src/views/statisticsCharts/views/specialbaggageanalysisStatisticsCharts.vue

@@ -10,7 +10,7 @@
 
 <script>
 import CommonPieStatisticsCharts from '../components/newPieStatisticsChartscpsy.vue'
-
+import { mapGetters } from 'vuex'
 export default {
   name: 'AbnormalBaggageClassificationStatisticsCharts',
   components: { CommonPieStatisticsCharts },
@@ -18,7 +18,7 @@ export default {
   data() {
     return {
       querySettings: {
-        serviceId: SERVICE_ID.specialbaggageanalysis,
+        serviceid: '',
       },
       categories: ['小动物', '机组', '枪支', '其它', '超规'],
       formData: {
@@ -33,8 +33,8 @@ export default {
           width: '150px',
           filterable: true,
           // multiple: true,
-          queryId: SERVICE_ID.AirportIds,
-          setKey: 'code3',
+          queryId: 74,
+          setKey: 'IATACode',
           requiredWarning: '请先选择航站',
           options: [],
         },
@@ -47,5 +47,29 @@ export default {
       ],
     }
   },
+  computed: {
+    ...mapGetters(['authArrs']),
+  },
+  mounted() {
+    this.pageInit()
+  },
+  methods: {
+    //页面初始化
+    pageInit () {
+      //获取页面查询参数
+      const { query } = this.$route
+      this.pageQuery = query
+      //获取页面配置
+      const { pagecode, qid, auth_id } = this.$route.meta
+      //获取页面权限类型组件  pagetype 1模块  2页面  3按钮 4表格 5树形  6弹窗 
+      const pageAuths = this.authArrs
+      if (!pageAuths.length) return
+      //获取当前页面权限类型
+      const pageAuthArrs = pageAuths.filter(item => item['superiorid'] == auth_id)
+      if (!pageAuthArrs.length) return
+      // console.log(pageAuthArrs)
+      this.querySettings.serviceid = pageAuthArrs[0].serviceid
+    },
+  },
 }
 </script>

+ 30 - 8
src/views/statisticsCharts/views/workloadStatisticsCharts.vue

@@ -4,6 +4,7 @@
 
 <script>
 import CommonBarStatisticsCharts from '../components/newBarStatisticsCharts.vue'
+import { mapGetters } from 'vuex'
 import { Query } from '@/api/webApi'
 import { parseTime } from '@/utils'
 
@@ -14,7 +15,7 @@ export default {
     const that = this
     return {
       querySettings: {
-        serviceId: SERVICE_ID.workload,
+        serviceid: '',
         seriesKey: 'workload',
         xAxisKey: 'fd',
       },
@@ -115,8 +116,8 @@ export default {
           inputType: 'select',
           placeholder: '航站',
           filterable: true,
-          queryId: SERVICE_ID.AirportIds,
-          setKey: 'code3',
+          queryId: 74,
+          setKey: 'IATACode',
           requiredWarning: '请先选择航站',
           options: [],
           changeHandler (value) {
@@ -141,16 +142,37 @@ export default {
       ],
     }
   },
+  mounted() {
+    this.pageInit()
+  },
+  computed: {
+    ...mapGetters(['authArrs']),
+  },
   methods: {
+    //页面初始化
+    pageInit () {
+      //获取页面查询参数
+      const { query } = this.$route
+      this.pageQuery = query
+      //获取页面配置
+      const { pagecode, qid, auth_id } = this.$route.meta
+      //获取页面权限类型组件  pagetype 1模块  2页面  3按钮 4表格 5树形  6弹窗 
+      const pageAuths = this.authArrs
+      if (!pageAuths.length) return
+      //获取当前页面权限类型
+      const pageAuthArrs = pageAuths.filter(item => item['superiorid'] == auth_id)
+      if (!pageAuthArrs.length) return
+      // console.log(pageAuthArrs)
+      this.querySettings.serviceid = pageAuthArrs[0].serviceid
+    },
     async getAgentOptions (airport) {
       try {
         const { code, returnData, message } = await Query({
-          serviceId: SERVICE_ID.agentCode,
-          dataContent: [
-            {
-              airport,
-            },
+          serviceid: 88,
+          datacontent: [
+            {filter:{airport}}
           ],
+          event: "0"
         })
         if (String(code) === '0') {
           const listValues = returnData.listValues || returnData