Pārlūkot izejas kodu

增加确认会议状态查询

humingbo 1 gadu atpakaļ
vecāks
revīzija
34e601cac4
1 mainītis faili ar 3 papildinājumiem un 1 dzēšanām
  1. 3 1
      src/views/meeting/meeting.vue

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

@@ -90,7 +90,9 @@
       </el-table-column>
       <el-table-column prop="status" label="确认状态" width="80">
         <template slot-scope="scope">
-          <div v-if="scope.row.status===1 && scope.row.meetingConfirmStatus"></div>
+          <div v-if="scope.row.meetingConfirmStatus===0 && (scope.row.meetingType===1 || scope.row.meetingType===2)">未确认</div>
+          <div v-else-if="scope.row.meetingConfirmStatus===1 && (scope.row.meetingType===1 || scope.row.meetingType===2)">已确认</div>
+          <div v-else>无需确认</div>
         </template>
       </el-table-column>
       <!--      <el-table-column prop="createTime" label="创建时间" width="130" :v-show="false">