zhangzeli
2021-11-29 649377c926979e7607960e0cf4c6d97d26080403
报表
8个文件已修改
63 ■■■■■ 已修改文件
src/views/your/accident-manage/accidentManage.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/your/addOil-manage/addOilManage.vue 11 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/your/area-manage/areaManage.vue 14 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/your/carCost-manage/carCostManage.vue 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/your/carInfo-manage/carInfoManage.vue 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/your/carRepairCost-manage/carRepairCostManage.vue 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/your/customerReceive-manage/customerReceive.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/your/suggest-manage/suggestManage.vue 10 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/your/accident-manage/accidentManage.vue
@@ -62,7 +62,7 @@
      <Form
              ref="accidentForm"
              :model="accidentForm"
              :label-width="80"
              :label-width="100"
              :rules="accidentFormValidate"
      >
        <FormItem label="车辆" prop="carId">
src/views/your/addOil-manage/addOilManage.vue
@@ -274,19 +274,18 @@
          {
            title: "车牌号",
            key: "carNo",
            width: 100,
            width: 120,
            sortable: true,
          },
          {
            title: "加油卡号",
            key: "addOilCode",
            width: 100,
            sortable: true,
          },
          {
            title: "加油日期",
            key: "addDate",
            width: 150,
            width: 120,
            sortable: true,
          },
          {
@@ -304,13 +303,13 @@
          {
            title: "加油金额",
            key: "money",
            minWidth: 100,
            minWidth: 120,
            sortable: true,
          },
          {
            title: "加油时里程",
            key: "mileage",
            minWidth: 100,
            minWidth: 130,
            sortable: true,
          },
          {
@@ -446,7 +445,7 @@
          this.loading = false;
          if (res.success) {
            this.data = res.result.records;
            this.total = res.result.length;
            this.total = res.result.total;
          }
        });
      },
src/views/your/area-manage/areaManage.vue
@@ -84,10 +84,8 @@
        <Button @click="addEquipment" type="primary" icon="md-add">添加片区段</Button>
        <Button @click="init" icon="md-refresh">刷新</Button>
      </Row>
      <Table :loading="loading" border :columns="columns2" :data="data2" ref="table"
      <Table :loading="loading" border :columns="columns2" :data="data2" ref="table" style="height: 400px" >
             sortable="custom" @on-sort-change="changeSort" @on-selection-change="changeSelect">
      </Table>
    </Modal>
    <Modal :title="modalTitle3" v-model="customerVisible" :mask-closable="false" :width="1050">
@@ -97,7 +95,7 @@
        <Input v-model="searchForm.name" suffix="ios-search" @on-change="getCustList" placeholder="输入商户名称搜索" clearable style="width: 250px"
        />
      </Row>
      <Table :loading="loading" border :columns="columns3" :data="data3" ref="table"
      <Table :loading="loading" border :columns="columns3" :data="data3" ref="table" style="height: 350px"
             sortable="custom" @on-sort-change="changeSort" @on-selection-change="changeSelect">
      </Table>
      <Row type="flex" justify="end" class="page">
@@ -116,7 +114,7 @@
    <Modal :title="modalTitle" v-model="addEquipmentVisible" :mask-closable="false" :width="500">
      <Form ref="areaSectionForm" :model="areaSectionForm" :label-width="80" :rules="areaSectionFormValidate">
        <FormItem label="片区名称" prop="code">
          <Input v-model="areaSectionForm.code" />
          <Input v-model="areaSectionForm.name" />
        </FormItem>
      </Form>
@@ -128,7 +126,7 @@
      </div>
    </Modal>
    <Modal :title="modalTitle" v-model="addCustomerVisible" :mask-closable="false" :width="550">
      <Form ref="customerForm" :model="customerForm" :label-width="80" :rules="areaSectionFormValidate">
      <Form ref="customerForm" :model="customerForm" :label-width="120" :rules="areaSectionFormValidate">
        <FormItem label="商户名称" prop="name">
          <Input v-model="customerForm.name" />
        </FormItem>
@@ -434,8 +432,8 @@
          align: "center",
        },
        {
          title: "分段编号或名称",
          key: "code",
          title: "分段名称",
          key: "name",
        },
        {
          title: "操作",
src/views/your/carCost-manage/carCostManage.vue
@@ -473,8 +473,12 @@
          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);
        }
        getOilExcel(this.searchForm).then((res) => {
          this.loading = false;
src/views/your/carInfo-manage/carInfoManage.vue
@@ -454,8 +454,12 @@
          this.searchForm.beginTime = this.selectDate(this.value[0]);
          this.searchForm.endTime = this.selectDate(this.value[1]);
        }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);
        }
        getCar(this.searchForm).then((res) => {
          this.loading = false;
src/views/your/carRepairCost-manage/carRepairCostManage.vue
@@ -502,8 +502,12 @@
          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;
src/views/your/customerReceive-manage/customerReceive.vue
@@ -243,7 +243,7 @@
          {
            title: "商户名称",
            key: "customerName",
            width: 100,
            width: 240,
          },
          {
            title: "接货人",
src/views/your/suggest-manage/suggestManage.vue
@@ -263,18 +263,22 @@
          {
            title: "内容",
            key: "content",
            width: 200,
            tooltip:true,
            width: 230,
          },
          {
            title: "反馈时间",
            key: "createTime",
            width: 240,
            width: 200,
            sortable: true,
            render: (h, params) => {
              return h("div",params.row.createTime.substr(0,10));
            }
          },
          {
            title: "反馈商户",
            key: "name",
            width: 150,
            width: 260,
          },
          {
            title: "操作",