zhangzeli
2022-01-05 9db558324bafc153052ab3af6d9235af6c5452d0
src/views/your/carRepairCost-manage/carRepairCostManage.vue
@@ -51,7 +51,6 @@
                show-total
                show-elevator
                show-sizer
                v-show="this.page"
        ></Page>
      </Row>
    </Card>
@@ -242,7 +241,7 @@
          {
            title: "车牌号",
            key: "carNo",
            width: 100,
            width: 110,
            align: "center",
          },
          {
@@ -502,14 +501,18 @@
          this.searchForm.endTime = this.selectDate(this.value[1]);
          this.page=false;
        }else{
          this.searchForm.beginTime = "";
          this.searchForm.endTime = "";
          var date = new Date();
          this.searchForm.endTime = this.selectDate(date);
          this.value[1] = this.searchForm.endTime;
          date.setDate(1);
          this.value[0] = date;
          this.searchForm.beginTime = this.selectDate(date);
        }
        getInfo(this.searchForm).then((res) => {
          this.loading = false;
          if (res.success) {
            this.data = res.result;
            this.total = res.result.length;
            this.total = res.result.total;
          }
        });
      },