vue中filter的應用場景詳解

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
    }
  },

總結

本篇文章就到這裡瞭,希望能夠給你帶來幫助,也希望您能夠多多關註WalkonNet的更多內容!

推薦閱讀: