vue.js中,过滤器可以直接在template中绑定变量时使用
<my-cell title="要求运输方式" v-bind:value="supplyPlan.deliverType | deliverType"></my-cell>
js代码:
filters: {
deliverType: function (value) {
var str = '';
if (value == 'E') {
str = "快递运输";
} else if (value == 'L') {
str = "物流运输";
} else {
str = "客户自运";
}
return str;
}
}
网友评论