1. 程式人生 > >element table 修改字型顏色

element table 修改字型顏色

<el-table-column prop="isPass" label="是否通過">
	<template scope="scope">
		<span v-if="scope.row.isPass==='稽核通過'" style="color: green">稽核通過</span>
		<span v-else-if="scope.row.isPass==='待稽核'">待稽核</span>
		<span v-else style="color: red">未通過</span>
	</template>
</el-table-column>