欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

vue中filter的应用场景详解

程序员文章站 2022-05-02 23:53:11
filter一般用于过滤某些值,比如我这个字段是空,可是我想在前端显示“–”,就可以使用到它了。最近碰到一个需求就是要给某些字段可以设置权限去以其他形式显示,比如以“***”显示需要隐藏的金额。1.获...

filter一般用于过滤某些值,比如我这个字段是空,可是我想在前端显示“–”,就可以使用到它了。

最近碰到一个需求就是要给某些字段可以设置权限去以其他形式显示,比如以“***”显示需要隐藏的金额。

1.获取金额权限

2.通过filter过滤满足条件的字段

3.返回隐藏的样式

看代码:

//其他的看,看我标注的就可以了
//scope.row 获取当前行
<template slot-scope="scope">
            <template v-if="item.formtype == 'label'">
              <el-button
                v-if="item.link!=undefined"
                type="text" size="small" @click="handlecolumnclick(item.link,scope.row)">
                //filter一般不用的过滤用|
                //showlabelvalue就不写出来了
                //方法一个参数对应的filter是两个参数
                //第一个是前一列返回的值
                //第n-1个是你想传的值
                {{ scope.row | showlabelvalue(item) | canviewamount(canviewamount,xttype,item) }}
              </el-button>
              <template v-else>
                {{ scope.row | showlabelvalue(item) | canviewamount(canviewamount,xttype,item) }}
              </template>
            </template>
</template>
export default {
 filters: {
 //row就是scope.row返回的数据
 showlabelvalue(row,item){
 return 'value'
 }
 //value值, canview权限, xttype哪个页面, item列表数据
 //如果showlabelvalue返回的是value,对应的canviewamount参数的value就是‘value'
    canviewamount(value, canview, xttype, item) {
    //满足条件用“***”显示(只是显示),保存到数据库还是原列表的内容
      if (!canview && xttype == 'salesorder') {
        if (item.field == 'pricenotax' || item.field == 'amountnotax' || item.field == 'price' || item.field == 'amount') {
          return '***'
        }
      }
      if (!canview && xttype == 'project') {
        if (item.field == 'amount' || item.field == 'amountnotax') {
          return '***'
        }
      }
      return value
    }
  },

总结

本篇文章就到这里了,希望能够给你带来帮助,也希望您能够多多关注的更多内容!