You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

34 lines
1.1 KiB

  1. (function () {
  2. var page = {
  3. isScroll: false,
  4. init: function ($page) {
  5. $page.find('#timeline1').ftimeline([
  6. {
  7. title: '标题一',
  8. people: '审核人1',
  9. content: '审核通过了该流程',
  10. time: '2018-01-08 07:49:08'
  11. },
  12. {
  13. title: '标题二',
  14. people: '审核人2',
  15. content: '审核通过了该流程',
  16. time: '2018-01-09 07:49:08'
  17. },
  18. {
  19. title: '标题三',
  20. people: '审核人3',
  21. content: '审核通过了该流程',
  22. time: '2018-01-10 07:49:08'
  23. },
  24. {
  25. title: '标题四',
  26. people: '审核人4',
  27. content: '审核通过了该流程',
  28. time: '2018-01-11 07:49:08'
  29. }
  30. ]);
  31. }
  32. };
  33. return page;
  34. })();