提交 | 用户 | age
|
3ac5f2
|
1 |
// 过滤器 |
J |
2 |
|
|
3 |
import Vue from 'vue' |
|
4 |
|
|
5 |
function install(){ |
|
6 |
// // 分转价格 |
|
7 |
// Vue.filter('amount', function (number) { |
|
8 |
// // var number = +val.replace(/[^\d.]/g, ''); |
|
9 |
// return isNaN(number) ? 0.00 : parseFloat((number/100).toFixed(2)); |
|
10 |
// }); |
|
11 |
|
|
12 |
// // 省和城市一样的时候,不显示城市 |
|
13 |
// Vue.filter('city', function (city, province) { |
|
14 |
// if (city == province) { |
|
15 |
// return '' |
|
16 |
// } else { |
|
17 |
// return city |
|
18 |
// } |
|
19 |
// }) |
|
20 |
|
|
21 |
// // 需求标题,只显示分类第二级第三级 |
|
22 |
// Vue.filter('serviceTypeTitle', function (serviceType) { |
|
23 |
// var [type1, type2, type3] = serviceType.split('|')[0].split('-') |
|
24 |
// return [type2, type3].join('-') |
|
25 |
// }) |
|
26 |
|
|
27 |
// // 缩减订单编号 |
|
28 |
// Vue.filter('shortNo', function (no) { |
|
29 |
// if (no.length > 20) { |
|
30 |
// return no.substring(no.length - 20, no.length) |
|
31 |
// } |
|
32 |
// return no |
|
33 |
// }) |
|
34 |
|
|
35 |
// // 订单、师傅评分转换 |
|
36 |
// Vue.filter('score', function (score) { |
|
37 |
// return score / 100 |
|
38 |
// }) |
|
39 |
} |
|
40 |
|
|
41 |
export default { |
|
42 |
install |
|
43 |
} |