|
@@ -3,17 +3,24 @@
|
|
|
<el-row>
|
|
|
<el-col :span="18" class="quarter">
|
|
|
<div class="searchFn">
|
|
|
- <el-date-picker v-model="changeYear" type="year" value-format="YYYY" placeholder="选择年份"
|
|
|
- @change="changeYearFn" :style="getPickerSty()" />
|
|
|
- <div class="quarterChoose">
|
|
|
- <el-icon :size="20" color="#3B7AD1" @click="arrowLeft">
|
|
|
- <ArrowLeft />
|
|
|
- </el-icon>
|
|
|
- <span class="choose">{{seasonStr}}</span>
|
|
|
- <el-icon :size="20" color="#3B7AD1" @click="arrowRight">
|
|
|
- <ArrowRight />
|
|
|
- </el-icon>
|
|
|
+ <div class="searchFn_left">
|
|
|
+ <el-date-picker v-model="changeNewYear" type="year" value-format="YYYY" placeholder="选择年份"
|
|
|
+ @change="changeNewYearFn" :style="getPickerSty()" />
|
|
|
+ </div>
|
|
|
+ <div class="searchFn_right">
|
|
|
+ <el-date-picker v-model="changeYear" type="year" value-format="YYYY" placeholder="选择年份"
|
|
|
+ @change="changeYearFn" :style="getPickerSty()" />
|
|
|
+ <div class="quarterChoose">
|
|
|
+ <el-icon :size="20" color="#3B7AD1" @click="arrowLeft">
|
|
|
+ <ArrowLeft />
|
|
|
+ </el-icon>
|
|
|
+ <span class="choose">{{seasonStr}}</span>
|
|
|
+ <el-icon :size="20" color="#3B7AD1" @click="arrowRight">
|
|
|
+ <ArrowRight />
|
|
|
+ </el-icon>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
+
|
|
|
</div>
|
|
|
<div class="tableHeader">
|
|
|
<div class="headerOne"></div>
|
|
@@ -350,6 +357,7 @@
|
|
|
topImg: topImg,
|
|
|
botImg: botImg,
|
|
|
cenImg: cenImg,
|
|
|
+ changeNewYear: '',
|
|
|
changeYear: '',
|
|
|
seasonStr: '',
|
|
|
seasonArr: ['第一季度', '第二季度', '第三季度'],
|
|
@@ -388,6 +396,7 @@
|
|
|
apiGetevaluationportalhomeSeason().then(datas => {
|
|
|
if (datas.success) {
|
|
|
if (datas.data) {
|
|
|
+ that.changeNewYear = datas.data.newyear
|
|
|
that.changeYear = datas.data.year
|
|
|
if (datas.data.season === '1') {
|
|
|
that.seasonStr = '第一季度'
|
|
@@ -454,8 +463,15 @@
|
|
|
return 'width: 3.4vw;padding: 5px 3px 0;'
|
|
|
}
|
|
|
},
|
|
|
+ changeNewYearFn(val) {
|
|
|
+ this.changeNewYear = val
|
|
|
+ this.changeComYearFn()
|
|
|
+ },
|
|
|
changeYearFn(val) {
|
|
|
this.changeYear = val
|
|
|
+ this.changeComYearFn()
|
|
|
+ },
|
|
|
+ changeComYearFn() {
|
|
|
this.cupDataYearArr = {
|
|
|
section: [],
|
|
|
integration: []
|
|
@@ -513,6 +529,7 @@
|
|
|
let that = this
|
|
|
let params = {
|
|
|
binSection: '',
|
|
|
+ newyear: that.changeNewYear,
|
|
|
year: that.changeYear,
|
|
|
season: that.seasonStr === '第一季度' ? '1' : that.seasonStr === '第二季度' ? '2' : '3'
|
|
|
}
|
|
@@ -609,8 +626,6 @@
|
|
|
}
|
|
|
}
|
|
|
})
|
|
|
- debugger
|
|
|
-
|
|
|
that.cupDataYearArr.section.forEach(item => {
|
|
|
for (let i in datas.data.season) {
|
|
|
let it = datas.data.season[i]
|
|
@@ -693,9 +708,9 @@
|
|
|
},
|
|
|
yearSeeMore(name, type) {
|
|
|
if (type === 'year') {
|
|
|
- this.$refs.yearFrom.init(name, this.changeYear, this.seasonStr)
|
|
|
+ this.$refs.yearFrom.init(name, this.changeNewYear, this.changeYear, this.seasonStr)
|
|
|
} else {
|
|
|
- this.$refs.seasonFrom.init(name, this.changeYear, this.seasonStr)
|
|
|
+ this.$refs.seasonFrom.init(name, this.changeNewYear, this.changeYear, this.seasonStr)
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -720,6 +735,31 @@
|
|
|
height: 5vh;
|
|
|
display: flex;
|
|
|
border-bottom: 1px solid #E1E3EA;
|
|
|
+ .searchFn_left{
|
|
|
+ width: 43%;
|
|
|
+ }
|
|
|
+ .searchFn_right{
|
|
|
+ width: 57%;
|
|
|
+ position: relative;
|
|
|
+
|
|
|
+ .quarterChoose {
|
|
|
+ position: absolute;
|
|
|
+ left: 33%;
|
|
|
+ top: 15px;
|
|
|
+ width: 225px;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-around;
|
|
|
+
|
|
|
+ .choose {
|
|
|
+ position: relative;
|
|
|
+ top: -1px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-icon {
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
.el-date-editor--year {
|
|
|
width: 130px;
|
|
@@ -741,23 +781,6 @@
|
|
|
color: #fff;
|
|
|
}
|
|
|
|
|
|
- .quarterChoose {
|
|
|
- position: relative;
|
|
|
- left: 33%;
|
|
|
- top: 15px;
|
|
|
- width: 225px;
|
|
|
- display: flex;
|
|
|
- justify-content: space-around;
|
|
|
-
|
|
|
- .choose {
|
|
|
- position: relative;
|
|
|
- top: -1px;
|
|
|
- }
|
|
|
-
|
|
|
- .el-icon {
|
|
|
- cursor: pointer;
|
|
|
- }
|
|
|
- }
|
|
|
}
|
|
|
|
|
|
.tableHeader {
|