data里面加个字段赋值this。
<el-table-column property="sendLab" label="项目流向" width="*">
<template slot-scope="scope">
<span>
{{ scope.row.sendLab | formataLab(that) }}
</span>
</template>
</el-table-column>
这里用的element table , 在过滤器里传入参数,that。
就可以获取到data里的变量了。