From edce1f4bd7767b1a62fb70fd926b98796498c6d4 Mon Sep 17 00:00:00 2001
From: jiangping <jp@doumee.com>
Date: 星期一, 03 三月 2025 15:45:58 +0800
Subject: [PATCH] 最新版本541200007

---
 admin/src/views/operation/serviceCar/apprRecord.vue |   30 +++++++++++++++++++-----------
 1 files changed, 19 insertions(+), 11 deletions(-)

diff --git a/admin/src/views/operation/serviceCar/apprRecord.vue b/admin/src/views/operation/serviceCar/apprRecord.vue
index 7c6e24d..cff731b 100644
--- a/admin/src/views/operation/serviceCar/apprRecord.vue
+++ b/admin/src/views/operation/serviceCar/apprRecord.vue
@@ -56,7 +56,7 @@
           <el-option label="甯傚鐢ㄨ溅" value="1"></el-option>
         </el-select>
       </el-form-item>
-      <el-form-item label="鍑哄彂鏃堕棿" prop="startTime">
+      <el-form-item label="鐢宠鏃堕棿" prop="startTime">
         <el-date-picker
           @change="seleTime"
           v-model="time"
@@ -184,7 +184,7 @@
         ></el-table-column>
         <el-table-column
           label="鎿嶄綔"
-          min-width="160"
+          min-width="180"
           align="center"
           fixed="right"
         >
@@ -196,7 +196,10 @@
               >鏌ョ湅璇︽儏</el-button
             >
             <!-- <el-button v-if="(row.status === 1 || row.status === 2) && new Date().getTime() < new Date(row.startTime).getTime()" type="text" icon="el-icon-delete" @click="rowRevokeClick(row)" >鎾ら攢</el-button> -->
-            <el-button style="color: red"   v-if="    (row.status === 0 || row.status === 1 || row.status === 2) && new Date().getTime() < new Date(row.startTime).getTime() "  type="text"  icon="el-icon-delete"   @click="rowRevokeClick(row)" >鎾ら攢</el-button>
+            <el-button style="color: red" v-if="row.hasRole ==1"  type="text"  icon="el-icon-delete"   @click="rowRevokeClick(row)" >鎾ら攢</el-button>
+<!--
+            <el-button style="color: red"   v-if="(row.status === 0 && row.creator == userInfo.id)||((row.status === 0 || row.status === 1 ) || ( row.status === 2 && new Date().getTime() < new Date(row.startTime).getTime() ))"  type="text"  icon="el-icon-delete"   @click="rowRevokeClick(row)" >鎾ら攢</el-button>
+-->
             <el-button  style="color: red" type="text"  icon="el-icon-delete"   @click="deleteById(row)" >鍒犻櫎</el-button>
           </template>
         </el-table-column>
@@ -254,6 +257,7 @@
   components: { TableLayout, Pagination, OperaCarUseBookWindow, OperaCarUseBookParamWindow },
   data () {
     return {
+      // userInfo: this.$store.state.userInfo,
       // 鎼滅储
       searchForm: {
         memberName: '',
@@ -283,7 +287,7 @@
       'field.main': 'id'
     })
     // this.search()
-    this.changeRadio('0')
+    this.changeRadio(0)
     this.loadParams()
   },
   methods: {
@@ -321,15 +325,15 @@
     },
     changeRadio (e) {
       this.searchForm.radio = e
-      if (e === '0') {
+      if (e == 0) {
         this.searchForm.queryStartTime = timeForMat(0)[0]
         this.searchForm.queryEndTime = timeForMat(0)[1]
         this.time = timeForMat(0)
-      } else if (e === '1') {
+      } else if (e == 1) {
         this.searchForm.queryStartTime = timeForMat(6)[0]
         this.searchForm.queryEndTime = timeForMat(6)[1]
         this.time = timeForMat(6)
-      } else if (e === '2') {
+      } else if (e == 2) {
         this.searchForm.queryStartTime = timeForMat(29)[0]
         this.searchForm.queryEndTime = timeForMat(29)[1]
         this.time = timeForMat(29)
@@ -361,15 +365,19 @@
         })
     },
     seleTime (e) {
-      this.searchForm.queryStartTime = e[0]
-      this.searchForm.queryEndTime = e[1]
+      this.searchForm.queryStartTime = null
+      this.searchForm.queryEndTime = null
+      if (e != null && e.length >= 2) {
+        this.searchForm.queryStartTime = e[0]
+        this.searchForm.queryEndTime = e[1]
+      }
       this.searchForm.radio = null
       this.search()
     },
     reset () {
       this.$refs.searchForm.resetFields()
-      this.searchForm.radio = '0'
-      this.changeRadio('0')
+      this.searchForm.radio = 0
+      this.changeRadio(0)
       // this.search()
     }
   }

--
Gitblit v1.9.3