<!-- 状态(带问号提示) --> <el-table-column prop="status" label="状态" width="120" align="center"> <template slot="header"> 状态 <el-tooltip content="等待中:未开始导出;已完成:可下载" placement="top"> <el-button type="text" icon="el-icon-question" size="mini" style="color: #409eff;"></el-button> </el-tooltip> </template> <template slot-scope="scope"> <el-tag :type="scope.row.status === '已完成' ? 'success' : scope.row.status === '导出中' ? 'warning' : 'info'"> {{ scope.row.status }} </el-tag> </template> </el-table-column>