Jelajahi Sumber

修改跟踪操作颜色

caojunjie 3 tahun lalu
induk
melakukan
763ba0f108
1 mengubah file dengan 8 tambahan dan 3 penghapusan
  1. 8 3
      src/views/landTransportation/driver/index.vue

+ 8 - 3
src/views/landTransportation/driver/index.vue

@@ -98,6 +98,7 @@
           <el-button
               size="small"
               type="text"
+              style="color: #ffa21e;"
               @click="designate(row, index)"
               v-if="row.status===2"
           >受 理
@@ -105,6 +106,7 @@
           <el-button
               size="small"
               type="text"
+              style="color: #ffa21e;"
               @click="cancelDesignate(row, index)"
               v-if="row.status===6"
           >取消受理
@@ -112,6 +114,7 @@
           <el-button
               size="small"
               type="text"
+              style="color: #F56C6C;"
               @click="confirmArrival(row, index)"
               v-if="row.status === 5"
           >确认到厂
@@ -119,6 +122,7 @@
           <el-button
               size="small"
               type="text"
+              style="color: #14cde1;"
               @click="confirmCompletion(row, index)"
               v-if="row.status === 3"
           >确认完工
@@ -126,6 +130,7 @@
           <el-button
               size="small"
               type="text"
+              style="color: rgba(231,90,15,0.63);"
               @click="suitcase(row, index)"
               v-if="row.status === 6"
           >提箱
@@ -385,12 +390,12 @@ export default {
           prop: 'acceptTime'
         },{
           label: '提箱时间',
-          type: "borrowTime",
+          type: "datetime",
           format: 'yyyy-MM-dd HH:mm',
           valueFormat: 'yyyy-MM-dd HH:mm:ss',
           width: 200,
           index: 13,
-          prop: 'acceptTime'
+          prop: 'borrowTime'
         },{
           label: '完工日期',
           prop: 'finishedTime',
@@ -726,7 +731,7 @@ export default {
       }else {
         this.$message({
           type: 'warning',
-          message: '请选择实际到厂时间!'
+          message: '实际到厂时间!'
         });
       }
     },