util.wxs 238 B

1234567891011121314
  1. // 支持es4语法
  2. var filter = {
  3. formateDate: function(data) {
  4. if (data && data != '') {
  5. return data.slice(5,10)
  6. } else {
  7. return ''
  8. }
  9. }
  10. }
  11. // 导出对外暴露的属性
  12. module.exports = {
  13. formateDate: filter.formateDate
  14. }