el-table-column动态判断显示是否

813 阅读1分钟

1. 0 代表否 1代表是;

    <el-table-column prop="isMasterFlag" label="是否最高额"  >
             <template slot-scope="scope">{{ scope.row.isMasterFlag == 0 ? '否' : '是' }}</template>
    </el-table-column>