filter.js 282 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 // table 内部过滤器 由于过滤器只能在模板中使用 所以 就有了 jsx内部方法过滤器 export default class filter { // 业务来源 busSource(val) { let status = { 1: '办事大厅', 2: '微信小程序',default: '暂无' } return status[val] } }