类似性别(0、1)判断的table列表数据渲染

类似性别(0、1)判断的table列表数据渲染

无论是性别,类型,级别都是一样套用

 

性别:

 <el-table-column prop="gender" align="center" label="性别" width="100">
        <template slot-scope="scope">{{ scope.row.gender === 0 ? '' : '' }}</template>
      </el-table-column>

 

类型:

<el-table-column prop="identityType" align="center" label="证件类型" width="100">
        <template slot-scope="scope">{{ scope.row.identityType === 1 ? '身份证' :scope.row.identityType === 2 ? ' 军官证' : ' 护照' }}</template>
      </el-table-column>

 

级别:

 <el-table-column prop="Level" align="center" label="会员级别" width="100">
        <template slot-scope="scope">
          {{ scope.row.Level === 1 ? '普通会员' :scope.row.Level === 2 ? ' 青铜':scope.row.Level === 3 ? ' 白银' :scope.row.Level === 4 ? ' 黄金'  : ' 钻石' }}
        </template>
      </el-table-column>

 

 

posted @ 2020-09-12 15:37  安详的苦丁茶  阅读(296)  评论(0编辑  收藏  举报