Browse Source

修复 会议未开始不应该显示 待确认1 bug

humingbo 1 year ago
parent
commit
d8a72a8060
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/views/meeting/meeting.vue

+ 1 - 1
src/views/meeting/meeting.vue

@@ -115,7 +115,7 @@
       </el-table-column>
       <el-table-column prop="status" label="确认状态" width="80">
         <template slot-scope="scope">
-          <div style="color: red" v-if="scope.row.meetingConfirmStatus===0 && (scope.row.meetingType===1 || scope.row.meetingType===2)">
+          <div style="color: red" v-if="scope.row.status!==0 && scope.row.meetingConfirmStatus===0 && (scope.row.meetingType===1 || scope.row.meetingType===2)">
             未确认
           </div>
           <div style="color: green"