编程语言
首页 > 编程语言> > 直播系统app源码,根据前台数据监控反馈到后台的表格里

直播系统app源码,根据前台数据监控反馈到后台的表格里

作者:互联网

直播系统app源码,根据前台数据监控反馈到后台的表格里

 

<!-- 
:data="projectInfoList" 绑定表格数据
@selection-change="handleSelectionChange" 当我勾选了以后触发handleSelectionChange事件
-->
<el-table ref="DataTable" v-loading="loading" :data="projectInfoList" @selection-change="handleSelectionChange" stripe>
<el-table-column type="selection" width="50" align="center" />   
<el-table-column label="是否已完成" align="center" width="70" prop="finished">
<template slot="header">
是否<br />已完成
</template>
<template slot-scope="scope">
<el-tag :type="scope.row.finished == 1 ? 'success' : 'info'">{{ scope.row.finished == 1 ? '是' : '否' }}</el-tag>
</template>
</el-table-column>
</el-table>

​根据后台返回的数据进行显示不同的内容(是否)及效果(type)

 


<template slot-scope="scope">
<el-tag :type="scope.row.finished == 1 ? 'success' : 'info'">
{{ scope.row.finished == 1 ? '是' : '否' }}
</el-tag>
</template>

 

以上就是直播系统app源码,根据前台数据监控反馈到后台的表格里, 更多内容欢迎关注之后的文章

 

标签:表格,app,源码,前台,后台,直播
来源: https://www.cnblogs.com/yunbaomengnan/p/16206517.html