|
@@ -30,7 +30,7 @@
|
|
|
<el-option v-for="t in datelist" :key="t.value" :label="t.label" :value="t.value" />
|
|
|
</el-select>
|
|
|
|
|
|
- <el-select v-if="queryParams.dateType == 1" v-model="queryParams.dateValue" placeholder="选择月" clearable filterable class="se" style="margin-left: 10px;">
|
|
|
+ <el-select v-if="queryParams.dateType == 1" v-model="formatY" placeholder="选择月" clearable filterable class="se" style="margin-left: 10px;">
|
|
|
<el-option v-for="t in 12" :key="t.value" :label="t + '月'" :value="t" />
|
|
|
</el-select>
|
|
|
|
|
@@ -178,6 +178,7 @@ export default {
|
|
|
name: 'TQSJ',
|
|
|
data() {
|
|
|
return {
|
|
|
+ formatY:'',
|
|
|
categoryChartData: {},
|
|
|
contentType:'1',
|
|
|
contentTypelist:[
|
|
@@ -229,11 +230,20 @@ export default {
|
|
|
getList() {
|
|
|
this.timeValue = []
|
|
|
this.loading = true;
|
|
|
+ if(this.queryParams.dateType == '1'){
|
|
|
+ if(this.formatY >= 10){
|
|
|
+ this.queryParams.dateValue = this.formatY + '月'
|
|
|
+ }else{
|
|
|
+ this.queryParams.dateValue = '0'+this.formatY + '月'
|
|
|
+ }
|
|
|
+ }
|
|
|
getTQSJ(this.queryParams).then(response => {
|
|
|
this.dataList = []
|
|
|
this.dataList = response.data;
|
|
|
- for (const i in this.dataList[0].datails) {
|
|
|
- this.timeValue.push(this.dataList[0].datails[i].timeValue)
|
|
|
+ if(this.dataList){
|
|
|
+ for (const i in this.dataList[0].datails) {
|
|
|
+ this.timeValue.push(this.dataList[0].datails[i].timeValue)
|
|
|
+ }
|
|
|
}
|
|
|
this.loading = false;
|
|
|
});
|