import Vue from 'vue' // 首页标本数量过滤 // 数量大于999则显示999+ Vue.filter('specimenNum', function(value) { return value > 999 ? '999+' : value; })