templateHepler.js 478 B

123456789101112131415161718192021
  1. template.helper("getPhoto", function(str){
  2. return getImgUrl(str);
  3. });
  4. template.helper("getCategoryName", function(cid){
  5. if(cid == "1"){
  6. return "血糖仪";
  7. }else if(cid == "2"){
  8. return "血压计";
  9. }
  10. });
  11. template.helper("formatDate", function(timestamp){
  12. var time = parseInt(timestamp),
  13. d = new Date(time);
  14. return d.format("yyyy-MM-dd hh:mm");
  15. });
  16. template.helper("getJsonStr", function(obj){
  17. return JSON.stringify(obj);
  18. })