From 57223eca102ab58ae181c71bf02f84e2f647b233 Mon Sep 17 00:00:00 2001
From: zhangzeli <123456>
Date: 星期五, 07 一月 2022 14:45:40 +0800
Subject: [PATCH] bug

---
 src/views/your/car-manage/carManage.vue |   28 ++++++++++++++++------------
 1 files changed, 16 insertions(+), 12 deletions(-)

diff --git a/src/views/your/car-manage/carManage.vue b/src/views/your/car-manage/carManage.vue
index aa41752..5c60506 100644
--- a/src/views/your/car-manage/carManage.vue
+++ b/src/views/your/car-manage/carManage.vue
@@ -81,14 +81,14 @@
           <Input v-model="carForm.carNo" />
         </FormItem>
         <FormItem label="鍔犳补鍗″彿" prop="addOilCode">
-          <Input v-model="carForm.addOilCode" type="number"/>
+          <Input v-model="carForm.addOilCode" />
         </FormItem>
-        <FormItem label="椹鹃┒浜�" prop="userId">
+        <FormItem label="鍙告満" prop="userId">
           <Select v-model="carForm.userId" filterable>
             <Option v-for="item in userList" :value="item.id" :key="item.id">{{ item.nickname }}</Option>
           </Select>
         </FormItem>
-        <FormItem label="璺熻溅浜�" prop="followUserId">
+        <FormItem label="閰嶉�佸憳" prop="followUserId">
           <Select v-model="carForm.followUserId" filterable>
             <Option v-for="item in driverList" :value="item.id" :key="item.id">{{ item.nickname }}</Option>
           </Select>
@@ -352,12 +352,12 @@
           sortable: true,
         },
         {
-          title: "椹鹃┒浜�",
+          title: "鍙告満",
           key: "nickName",
           width: 100,
         },
         {
-          title: "璺熻溅浜�",
+          title: "閰嶉�佸憳",
           key: "followNickName",
           width: 100,
         },
@@ -375,7 +375,15 @@
           title: "鎺掗噺",
           key: "displacement",
           width: 100,
+        },
+        {
+          title: "鍔犳补鍗″彿",
+          key: "addOilCode",
+          minWidth: 120,
           sortable: true,
+          render: (h, params) => {
+            return h("div",params.row.addOilCode=="undefined" ? '':params.row.addOilCode);
+          }
         },
         {
           title: "璐疆骞翠唤",
@@ -384,9 +392,9 @@
           sortable: true,
         },
         {
-          title: "鍔犳补鍗″彿",
-          key: "addOilCode",
-          minWidth: 120,
+          title: "鐧昏鏃ユ湡",
+          key: "createTime",
+          minWidth: 180,
           sortable: true,
         },
         {
@@ -759,7 +767,6 @@
                 this.$Message.success("鎿嶄綔鎴愬姛");
                 this.getDataList();
                 this.roleModalVisible = false;
-                this.carForm={};
               }
             });
           } else {
@@ -770,7 +777,6 @@
                 this.$Message.success("鎿嶄綔鎴愬姛");
                 this.getDataList();
                 this.roleModalVisible = false;
-                this.carForm={};
               }
             });
           }
@@ -791,7 +797,6 @@
                 this.getEquipmentList(this.carId);
                 this.addEquipmentVisible = false;
                 this.getEquipmentList(this.carId);
-                this.equipmentForm={};
               }
             });
           } else {
@@ -802,7 +807,6 @@
                 this.$Message.success("鎿嶄綔鎴愬姛");
                 this.getEquipmentList(this.carId);
                 this.addEquipmentVisible = false;
-                this.equipmentForm={};
               }
             });
           }

--
Gitblit v1.9.1