kongdeqiang
2023-02-10 f3fe55f98c59dffc647a6440b2d236bea4440676
src/views/your/carRepairCost-manage/carRepairCostManage.vue
@@ -39,6 +39,7 @@
              @on-sort-change="changeSort"
              @on-selection-change="changeSelect"
      ></Table>
      <!--
      <Row type="flex" justify="end" class="page">
        <Page
                :current="searchForm.pageNumber"
@@ -51,9 +52,10 @@
                show-total
                show-elevator
                show-sizer
                v-show="this.page"
        ></Page>
      </Row>
      -->
    </Card>
    <!-- 编辑 -->
@@ -242,21 +244,19 @@
          {
            title: "车牌号",
            key: "carNo",
            width: 100,
            width: 110,
            align: "center",
          },
          {
            title: "开始使用日期",
            key: "buyYear",
            width: 150,
            sortable: true,
            align: "center",
          },
          {
            title: "使用年限",
            key: "usefulLife",
            width: 140,
            sortable: true,
            align: "center",
            render: (h, params) => {
              return h("div",1);
@@ -266,14 +266,12 @@
            title: "本期行使里程(KM)",
            key: "mileage",
            width: 180,
            sortable: true,
            align: "center",
          },
          {
            title: "累计行使里程(KM)",
            key: "allMileage",
            width: 180,
            sortable: true,
            align: "center",
          },
          {
@@ -497,14 +495,19 @@
      },
      getDataList() {
        this.loading = true;
        if (this.value[0]!="" && this.value[1]!=""){
        if (this.value.length > 0){
          this.searchForm.beginTime = this.selectDate(this.value[0]);
          this.searchForm.endTime = this.selectDate(this.value[1]);
          this.page=false;
        }else{
          this.searchForm.beginTime = "";
          this.searchForm.endTime = "";
        }
        // else{
        //   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) {
@@ -930,4 +933,4 @@
      this.init();
    },
  };
</script>
</script>