element-ui,后台status状态为1,2,3,转化为中文

来源:互联网 发布:mac强制关机重启黑屏 编辑:程序博客网 时间:2024/06/14 19:21
  1. 文档并没有详细说明,记录一下
<el-table-column        prop="status"        width="100"        align="center"        label="状态"        >        <template scope="scope">            {{ scope.row.status === 1 ?  '已发放': '' }}            {{ scope.row.status === 2 ?  '未发放': '' }}            {{ scope.row.status === 3 ?  '已拒绝': '' }}        </template>      </el-table-column>