kongdeqiang
2023-02-10 f3fe55f98c59dffc647a6440b2d236bea4440676
提交更新
5个文件已修改
1个文件已删除
1790 ■■■■■ 已修改文件
src/views/your/addOilInfo-manage/addOilInfoManage.vue 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/your/carCost-manage/carCostManage.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/your/carInfo-manage/carInfoManage.vue 17 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/your/carRepairCost-manage/carRepairCostManage.vue 17 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/your/sign-manage/signManage.less 13 ●●●● 补丁 | 查看 | 原始文档 | 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;
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;
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) {
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) {
src/views/your/sign-manage/signManage.less
@@ -16,13 +16,20 @@
  text-align: center;
}
.Sign .ivu-table td {
  border-bottom: 0;
}
// .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;
src/views/your/sign-manage/signManage.vue
File was deleted