From fae5df1d3f1ae875ac546cacfb4744b2e8230ca2 Mon Sep 17 00:00:00 2001
From: yz3456 <2753272399@qq.com>
Date: 星期一, 29 七月 2024 11:07:24 +0800
Subject: [PATCH] 修改了bug

---
 ruoyi-ui/src/views/meeting/approve.vue |   34 ++++++++++++++++++----------------
 1 files changed, 18 insertions(+), 16 deletions(-)

diff --git a/ruoyi-ui/src/views/meeting/approve.vue b/ruoyi-ui/src/views/meeting/approve.vue
index aaa8f44..5e385e6 100644
--- a/ruoyi-ui/src/views/meeting/approve.vue
+++ b/ruoyi-ui/src/views/meeting/approve.vue
@@ -122,7 +122,8 @@
       </el-table-column>
 
       <el-table-column label="鐘舵��" prop="statu" sortable align="center">
-        <template slot-scope="scope">{{scope.row.statu===1? '鍚屾剰': '鎷掔粷'}}</template>
+        <!-- <template slot-scope="scope">{{scope.row.statu===1? '鍚屾剰': '鎷掔粷'}}</template> -->
+                <template slot-scope="scope">{{scope.row.statu ===3 ? '寰呭鎵�' : (scope.row.statu===1? '鍚屾剰': '鎷掔粷')}}</template>
       </el-table-column>
 
       <el-table-column label="鎿嶄綔" align="center" width="200" class-name="small-padding fixed-width">
@@ -175,21 +176,21 @@
         meetingList: [],
         formDat:{
           id: undefined,
-          title: undefined,
-          place: undefined,
-          conPeople: undefined,
-          partPeople: undefined,
-          applyPerson: undefined,
-          applyApart: undefined,
-          startTime: undefined,
-          endTime: undefined,
-          happenStartTime: undefined,
-          happenEndTime: undefined,
-          isPlacebrand: undefined,
-          connPerson: undefined,
-          connPhone: undefined,
+          // title: undefined,
+          // place: undefined,
+          // conPeople: undefined,
+          // partPeople: undefined,
+          // applyPerson: undefined,
+          // applyApart: undefined,
+          // startTime: undefined,
+          // endTime: undefined,
+          // happenStartTime: undefined,
+          // happenEndTime: undefined,
+          // isPlacebrand: undefined,
+          // connPerson: undefined,
+          // connPhone: undefined,
           statu: undefined,
-          createTime: undefined
+          // createTime: undefined
         },
       queryParams: {
         pageNum: 1,
@@ -226,6 +227,7 @@
   },
   methods: {
     agree(row){
+      // console.log(row,'rowrowrow')
       this.formDat1.id = row.id
       this.formDat1.statu = 1
       // this.$refs['elForm'].validate(valid => {
@@ -270,7 +272,7 @@
         this.queryParams.happenEndTime = this.dateRange.length > 0 && this.dateRange[1]
       listMeeting2(this.queryParams).then(response => {
           this.meetingList = response.data.data;
-
+          // console.log(this.meetingList,'meetingmeeting')
           this.total = response.data.total;
           this.loading = false;
         }

--
Gitblit v1.9.1