|
@@ -68,12 +68,12 @@
|
|
<el-table :data="benchmarkBasicPageData" style="width: 100%" :class="unitRatingTableSty()" v-else>
|
|
<el-table :data="benchmarkBasicPageData" style="width: 100%" :class="unitRatingTableSty()" v-else>
|
|
<el-table-column type="index" label="序号" align="center"></el-table-column>
|
|
<el-table-column type="index" label="序号" align="center"></el-table-column>
|
|
<el-table-column prop="time" label="频度" align="center"></el-table-column>
|
|
<el-table-column prop="time" label="频度" align="center"></el-table-column>
|
|
- <el-table-column v-for="(it, index) in benchmarkBasicHeader" :key="index" :label="it.name"
|
|
|
|
|
|
+ <el-table-column v-for="(it, index) in benchmarkBasic2Header" :key="index" :label="it.name"
|
|
align="center">
|
|
align="center">
|
|
|
|
|
|
<el-table-column prop="state" label="本期" align="center">
|
|
<el-table-column prop="state" label="本期" align="center">
|
|
<template #default="scope">
|
|
<template #default="scope">
|
|
- <span>{{scope.row[it.code+'_b']}}</span>
|
|
|
|
|
|
+ <span>{{scope.row[it.code]}}</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column prop="city" label="同期" v-if="showType === '2'" align="center">
|
|
<el-table-column prop="city" label="同期" v-if="showType === '2'" align="center">
|
|
@@ -96,8 +96,8 @@
|
|
|
|
|
|
<script>
|
|
<script>
|
|
import seachs from '../seachGroup.vue'
|
|
import seachs from '../seachGroup.vue'
|
|
- import baxicjson from '../basicJSON.json'
|
|
|
|
- import baxic2json from '../basic2JSON.json'
|
|
|
|
|
|
+ // import baxicjson from '../basicJSON.json'
|
|
|
|
+ // import baxic2json from '../basic2JSON.json'
|
|
import {
|
|
import {
|
|
apiPostbenchmarkBasicList,
|
|
apiPostbenchmarkBasicList,
|
|
apiPostbenchmarkcontemporaneousData,
|
|
apiPostbenchmarkcontemporaneousData,
|
|
@@ -115,6 +115,7 @@
|
|
statesVisible: false,
|
|
statesVisible: false,
|
|
benchmarkBasicPageData: [],
|
|
benchmarkBasicPageData: [],
|
|
benchmarkBasicHeader: [],
|
|
benchmarkBasicHeader: [],
|
|
|
|
+ benchmarkBasic2Header: [],
|
|
orgVal: [],
|
|
orgVal: [],
|
|
itemVal: '',
|
|
itemVal: '',
|
|
evalVal: '',
|
|
evalVal: '',
|
|
@@ -127,8 +128,8 @@
|
|
winPix: window.devicePixelRatio,
|
|
winPix: window.devicePixelRatio,
|
|
innerWidth: window.innerWidth,
|
|
innerWidth: window.innerWidth,
|
|
showType: '1',
|
|
showType: '1',
|
|
- baxicjson: baxicjson,
|
|
|
|
- baxic2json: baxic2json
|
|
|
|
|
|
+ // baxicjson: baxicjson,
|
|
|
|
+ // baxic2json: baxic2json
|
|
}
|
|
}
|
|
},
|
|
},
|
|
created() {
|
|
created() {
|
|
@@ -148,7 +149,7 @@
|
|
},
|
|
},
|
|
mounted() {
|
|
mounted() {
|
|
this.getorgSelectList()
|
|
this.getorgSelectList()
|
|
- this.getbenchmarkBasicList('1')
|
|
|
|
|
|
+ // this.getbenchmarkBasicList('1')
|
|
this.resAnnual = [this.getTime(new Date(new Date().getTime() - 6 * 30 * 24 * 60 * 60 * 1000)), this.getTime(
|
|
this.resAnnual = [this.getTime(new Date(new Date().getTime() - 6 * 30 * 24 * 60 * 60 * 1000)), this.getTime(
|
|
new Date(new Date().getTime()))]
|
|
new Date(new Date().getTime()))]
|
|
},
|
|
},
|
|
@@ -251,27 +252,16 @@
|
|
}
|
|
}
|
|
}
|
|
}
|
|
apiPostbenchmarkBasicList(params).then(datas => {
|
|
apiPostbenchmarkBasicList(params).then(datas => {
|
|
|
|
+ this.benchmarkBasicPageData = []
|
|
if (type === '1') {
|
|
if (type === '1') {
|
|
that.changeLineData(datas, type)
|
|
that.changeLineData(datas, type)
|
|
} else {
|
|
} else {
|
|
that.changeBarData(datas, type)
|
|
that.changeBarData(datas, type)
|
|
}
|
|
}
|
|
})
|
|
})
|
|
- // if (type === '1') {
|
|
|
|
-
|
|
|
|
- // // that.changeLineData(that.baxicjson)
|
|
|
|
- // } else if (type === '2') {
|
|
|
|
- // apiPostbenchmarkcontemporaneousData(params).then(datas => {
|
|
|
|
- // that.changeData(datas, type)
|
|
|
|
- // })
|
|
|
|
- // // that.changeBarData(that.baxic2json, type)
|
|
|
|
- // } else if (type === '3') {
|
|
|
|
- // apiPostbenchmarkpreviousPeriodData(params).then(datas => {
|
|
|
|
- // that.changeData(datas, type)
|
|
|
|
- // })
|
|
|
|
- // }
|
|
|
|
},
|
|
},
|
|
changeLineData(showData) {
|
|
changeLineData(showData) {
|
|
|
|
+ this.benchmarkBasicHeader = []
|
|
if (showData.data.title) {
|
|
if (showData.data.title) {
|
|
this.benchmarkBasicHeader = showData.data.title
|
|
this.benchmarkBasicHeader = showData.data.title
|
|
}
|
|
}
|
|
@@ -301,8 +291,13 @@
|
|
}
|
|
}
|
|
},
|
|
},
|
|
changeBarData(showData, type) {
|
|
changeBarData(showData, type) {
|
|
|
|
+ this.benchmarkBasic2Header = []
|
|
if (showData.data.title) {
|
|
if (showData.data.title) {
|
|
- this.benchmarkBasicHeader = showData.data.title
|
|
|
|
|
|
+ showData.data.title.forEach(iv =>{
|
|
|
|
+ if (iv.code !== 'time') {
|
|
|
|
+ this.benchmarkBasic2Header.push(iv)
|
|
|
|
+ }
|
|
|
|
+ })
|
|
}
|
|
}
|
|
if (showData.data.list) {
|
|
if (showData.data.list) {
|
|
this.benchmarkBasicPageData = showData.data.list
|
|
this.benchmarkBasicPageData = showData.data.list
|
|
@@ -311,13 +306,13 @@
|
|
this.benchmarkBasicPageData.forEach(it => {
|
|
this.benchmarkBasicPageData.forEach(it => {
|
|
xaxisArr.push(it.time)
|
|
xaxisArr.push(it.time)
|
|
})
|
|
})
|
|
- this.benchmarkBasicHeader.forEach(iv => {
|
|
|
|
|
|
+ this.benchmarkBasic2Header.forEach(iv => {
|
|
if (iv.code !== 'time') {
|
|
if (iv.code !== 'time') {
|
|
let seriesitemArrB = []
|
|
let seriesitemArrB = []
|
|
let seriesitemArrT = []
|
|
let seriesitemArrT = []
|
|
let seriesitemArrS = []
|
|
let seriesitemArrS = []
|
|
this.benchmarkBasicPageData.forEach(item => {
|
|
this.benchmarkBasicPageData.forEach(item => {
|
|
- seriesitemArrB.push(item[iv.code + '_b'])
|
|
|
|
|
|
+ seriesitemArrB.push(item[iv.code])
|
|
if (type === '2') {
|
|
if (type === '2') {
|
|
seriesitemArrT.push(item[iv.code + '_t'])
|
|
seriesitemArrT.push(item[iv.code + '_t'])
|
|
} else {
|
|
} else {
|
|
@@ -330,7 +325,7 @@
|
|
data: seriesitemArrB
|
|
data: seriesitemArrB
|
|
}
|
|
}
|
|
let obj1 = {
|
|
let obj1 = {
|
|
- name: iv.name + type === '2' ? '同期' : '上期',
|
|
|
|
|
|
+ name: type === '2' ? iv.name + '同期' : iv.name + '上期',
|
|
type: 'bar',
|
|
type: 'bar',
|
|
data: type === '2' ? seriesitemArrT : seriesitemArrS
|
|
data: type === '2' ? seriesitemArrT : seriesitemArrS
|
|
}
|
|
}
|