您好,登錄后才能下訂單哦!
這篇文章主要介紹“vue的filter如何應用”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“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 } },
關于“vue的filter如何應用”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。