Commit 7f5a18d6b520b45f0e580d4176ad148d99277b49
1 parent
4a43d040
优化推流列表
Showing
1 changed file
with
1 additions
and
1 deletions
web_src/src/components/PushVideoList.vue
| ... | ... | @@ -62,7 +62,7 @@ |
| 62 | 62 | </el-table-column> |
| 63 | 63 | <el-table-column label="正在推流" min-width="100"> |
| 64 | 64 | <template slot-scope="scope"> |
| 65 | - {{ (scope.row.status == false && scope.row.gbId == null) || scope.row.status ? '是' : '否' }} | |
| 65 | + {{scope.row.status ? '是' : '否' }} | |
| 66 | 66 | </template> |
| 67 | 67 | </el-table-column> |
| 68 | 68 | ... | ... |