第一种用法:v-if —— v-else-if —— v-else

<el-table-column prop="versionStatus" label="状态">
    <template slot-scope="scope">					
        <p v-if="scope.row.versionStatus=='1'">在用</p>
        <p v-else-if="scope.row.versionStatus=='2'">过期</p>
        <p v-else-if="scope.row.versionStatus=='3'">作废</p>
        <p v-else-if="scope.row.versionStatus=='4'">停用</p>
        <p v-else>未知</p>					
    </template>
</el-table-column>

第二种用法:v-if —— v-else

<el-table-column prop="versionStatus" label="状态">
    <template slot-scope="scope">					
        <p v-if="scope.row.versionStatus=='1'">在用</p>
        <p v-if="scope.row.versionStatus=='2'">过期</p>
        <p v-if="scope.row.versionStatus=='3'">作废</p>
        <p v-if="scope.row.versionStatus=='4'">停用</p>
        <p v-else>未知</p>					
    </template>
</el-table-column>
Logo

前往低代码交流专区

更多推荐