kongdeqiang
2023-02-10 f3fe55f98c59dffc647a6440b2d236bea4440676
提交更新
5个文件已修改
1个文件已删除
1802 ■■■■■ 已修改文件
src/views/your/addOilInfo-manage/addOilInfoManage.vue 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/your/carCost-manage/carCostManage.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/your/carInfo-manage/carInfoManage.vue 19 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/your/carRepairCost-manage/carRepairCostManage.vue 19 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/your/sign-manage/signManage.less 17 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/your/sign-manage/signManage.vue 1738 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/your/addOilInfo-manage/addOilInfoManage.vue
@@ -459,8 +459,9 @@
        return time
      },
      getDataList() {
        console.log(this.value.length,'value-----')
        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;
@@ -893,4 +894,4 @@
      this.init();
    },
  };
</script>
</script>
src/views/your/carCost-manage/carCostManage.vue
@@ -460,7 +460,7 @@
      },
      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;
@@ -897,4 +897,4 @@
      this.init();
    },
  };
</script>
</script>
src/views/your/carInfo-manage/carInfoManage.vue
@@ -444,17 +444,18 @@
      },
      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]);
        }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);
        }
        // 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);
        // }
        getCar(this.searchForm).then((res) => {
          this.loading = false;
          if (res.success) {
@@ -958,4 +959,4 @@
      this.init();
    },
  };
</script>
</script>
src/views/your/carRepairCost-manage/carRepairCostManage.vue
@@ -495,18 +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{
          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);
        }
        // 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) {
@@ -932,4 +933,4 @@
      this.init();
    },
  };
</script>
</script>
src/views/your/sign-manage/signManage.less
@@ -16,13 +16,20 @@
  text-align: center;
}
.Sign .ivu-table td {
  border-bottom: 0;
}
.isshow{
// .Sign .ivu-table td {
//   border-bottom: 0;
// }
.isshow {
  display: block;
}
//设置表格的样式
.ivu-table table {
  table-layout: fixed;
  width: 125px;
}
.ivu-table td.no_border>.ivu-table-cell {
  padding-left: 0;
  padding-right: 0;
@@ -57,4 +64,4 @@
.init-button {
  margin-left: 8px;
}
}
src/views/your/sign-manage/signManage.vue
File was deleted