试试这个,复制我这个替换你createTime那一行: <el-table-column :label="htmlText.tbDate" width="80"> <template slot-scope="scope"> <span v-if="scope.row.createTime == 0">正常</span> //这里使用===还是==得看返回值是什么类型的,需不需要转换啥的,自己尝试一下就可以了,这样直接写也是行的,不过推荐最好使用=== <span v-else>停用</span> </template> </el-table-column>
试试这个,复制我这个替换你
createTime
那一行: