count.wxs 199 B

1234567891011121314
  1. var countFormat = function (count) {
  2. if (count > 99) {
  3. return "99+"
  4. }
  5. if (!count) {
  6. return ''
  7. }
  8. return count
  9. }
  10. module.exports = {
  11. countFormat: countFormat
  12. }