|
|
@@ -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">
|