Browse Source

修复数据统计-数据对比查询月份时传参不生效

Sanmu8 1 year ago
parent
commit
2a9f7c5baa
1 changed files with 13 additions and 3 deletions
  1. 13 3
      src/views/TQSJ/index.vue

+ 13 - 3
src/views/TQSJ/index.vue

@@ -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;
       });