|
@@ -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({
|