guide_index.js 827 B

123456789101112131415161718192021222324252627282930313233
  1. var tour = new Tour({
  2. steps: [
  3. {
  4. element: ".fa-arrow-circle-o-up",
  5. title: "数据校验",
  6. content: "点击即可进入相关页面",
  7. placement: "bottom"
  8. },
  9. {
  10. element: ".fa-align-right",
  11. title: "申请批次",
  12. content: "点击即可进入相关页面",
  13. placement: "bottom"
  14. },
  15. {
  16. element: ".fa-indent",
  17. title: "任务消息",
  18. content: "点击即可进入相关页面",
  19. placement: "bottom"
  20. },
  21. {
  22. element: ".fa-forward",
  23. title: "码包上传",
  24. content: "点击即可进入相关页面",
  25. placement: "bottom"
  26. }
  27. ]
  28. });
  29. if(gentle!= 1){
  30. tour.init();
  31. tour.start();
  32. }