| 123456789101112131415161718192021222324252627282930313233 |
- var tour = new Tour({
- steps: [
- {
- element: ".fa-arrow-circle-o-up",
- title: "数据校验",
- content: "点击即可进入相关页面",
- placement: "bottom"
- },
- {
- element: ".fa-align-right",
- title: "申请批次",
- content: "点击即可进入相关页面",
- placement: "bottom"
- },
- {
- element: ".fa-indent",
- title: "任务消息",
- content: "点击即可进入相关页面",
- placement: "bottom"
- },
- {
- element: ".fa-forward",
- title: "码包上传",
- content: "点击即可进入相关页面",
- placement: "bottom"
- }
- ]
- });
- if(gentle!= 1){
- tour.init();
- tour.start();
- }
|