diff --git a/module/tutorial/config/scrumProjectManage.php b/module/tutorial/config/scrumProjectManage.php index 95c2061c4e..085f2af0f5 100644 --- a/module/tutorial/config/scrumProjectManage.php +++ b/module/tutorial/config/scrumProjectManage.php @@ -142,33 +142,52 @@ $scrumProjectManage->tasks['manageExecution']['steps'][] = array( $scrumProjectManage->tasks['manageExecution']['steps'][] = array( 'type' => 'click', - 'target' => '#tipsModal div.panel-body button.linkstory-btn', - 'page' => 'execution-create', //注意:需要验证一下,写execution-create正确还是execution-tips正确 + 'target' => '#table-project-execution div[data-row="pid2"] a', + 'page' => 'project-execution', + 'url' => array('project', 'execution', 'status=all&projectID=2'), 'title' => $lang->tutorial->scrumProjectManage->manageExecution->step5->name, 'desc' => $lang->tutorial->scrumProjectManage->manageExecution->step5->desc ); $scrumProjectManage->tasks['manageExecution']['steps'][] = array( - 'type' => 'selectRow', - 'target' => '#table-execution-linkstory', - 'page' => 'execution-linkstory', - 'title' => $lang->tutorial->scrumProjectManage->manageExecution->step6->name + 'type' => 'clickNavbar', + 'target' => 'story', + 'page' => 'execution-task', + 'url' => array('execution', 'task', 'executionID=3'), + 'title' => $lang->tutorial->scrumProjectManage->manageExecution->step6->name, + 'desc' => $lang->tutorial->scrumProjectManage->manageExecution->step6->desc ); $scrumProjectManage->tasks['manageExecution']['steps'][] = array( 'type' => 'click', - 'target' => '#table-execution-linkstory .dtable-footer .link-story-btn', - 'page' => 'execution-linkstory', + 'target' => '#actionBar a.link-story-btn', + 'page' => 'execution-story', 'title' => $lang->tutorial->scrumProjectManage->manageExecution->step7->name, 'desc' => $lang->tutorial->scrumProjectManage->manageExecution->step7->desc ); +$scrumProjectManage->tasks['manageExecution']['steps'][] = array( + 'type' => 'selectRow', + 'target' => 'div.dtable', + 'page' => 'execution-linkstory', + 'title' => $lang->tutorial->scrumProjectManage->manageExecution->step8->name +); + +$scrumProjectManage->tasks['manageExecution']['steps'][] = array( + 'type' => 'click', + 'target' => 'div.dtable .dtable-footer .link-story-btn', + 'page' => 'execution-linkstory', + 'title' => $lang->tutorial->scrumProjectManage->manageExecution->step9->name, + 'desc' => $lang->tutorial->scrumProjectManage->manageExecution->step9->desc +); + $scrumProjectManage->tasks['manageExecution']['steps'][] = array( 'type' => 'clickNavbar', 'target' => 'burn', 'page' => 'execution-story', - 'title' => $lang->tutorial->scrumProjectManage->manageExecution->step8->name, - 'desc' => $lang->tutorial->scrumProjectManage->manageExecution->step8->desc + 'url' => array('execution', 'story', 'executionID=3'), + 'title' => $lang->tutorial->scrumProjectManage->manageExecution->step10->name, + 'desc' => $lang->tutorial->scrumProjectManage->manageExecution->step10->desc ); $scrumProjectManage->tasks['manageTask'] = array(); diff --git a/module/tutorial/lang/zh-cn.php b/module/tutorial/lang/zh-cn.php index 798206fbc4..961d6fea7b 100644 --- a/module/tutorial/lang/zh-cn.php +++ b/module/tutorial/lang/zh-cn.php @@ -161,19 +161,27 @@ $lang->tutorial->scrumProjectManage->manageExecution->step4->name = '保存表 $lang->tutorial->scrumProjectManage->manageExecution->step4->desc = '保存后可以选择设置团队、关联需求、创建任务、返回任务列表和返回执行列表'; $lang->tutorial->scrumProjectManage->manageExecution->step5 = new stdClass(); -$lang->tutorial->scrumProjectManage->manageExecution->step5->name = '点击关联需求'; -$lang->tutorial->scrumProjectManage->manageExecution->step5->desc = '点击关联需求进入关联需求列表'; +$lang->tutorial->scrumProjectManage->manageExecution->step5->name = '点击迭代'; +$lang->tutorial->scrumProjectManage->manageExecution->step5->desc = '点击迭代名称进入迭代'; $lang->tutorial->scrumProjectManage->manageExecution->step6 = new stdClass(); -$lang->tutorial->scrumProjectManage->manageExecution->step6->name = '选择需求'; +$lang->tutorial->scrumProjectManage->manageExecution->step6->name = '点击需求'; +$lang->tutorial->scrumProjectManage->manageExecution->step6->desc = '点击需求查看已关联的需求'; $lang->tutorial->scrumProjectManage->manageExecution->step7 = new stdClass(); -$lang->tutorial->scrumProjectManage->manageExecution->step7->name = '点击保存'; -$lang->tutorial->scrumProjectManage->manageExecution->step7->desc = '点击保存可以将需求关联到需求列表中,返回到需求列表'; +$lang->tutorial->scrumProjectManage->manageExecution->step7->name = '点击关联需求'; +$lang->tutorial->scrumProjectManage->manageExecution->step7->desc = '点击关联需求进入关联需求列表'; $lang->tutorial->scrumProjectManage->manageExecution->step8 = new stdClass(); -$lang->tutorial->scrumProjectManage->manageExecution->step8->name = '点击燃尽图'; -$lang->tutorial->scrumProjectManage->manageExecution->step8->desc = '点击燃尽图可以查看迭代燃尽图'; +$lang->tutorial->scrumProjectManage->manageExecution->step8->name = '选择需求'; + +$lang->tutorial->scrumProjectManage->manageExecution->step9 = new stdClass(); +$lang->tutorial->scrumProjectManage->manageExecution->step9->name = '点击保存'; +$lang->tutorial->scrumProjectManage->manageExecution->step9->desc = '点击保存可以将需求关联到需求列表中,返回到需求列表'; + +$lang->tutorial->scrumProjectManage->manageExecution->step10 = new stdClass(); +$lang->tutorial->scrumProjectManage->manageExecution->step10->name = '点击燃尽图'; +$lang->tutorial->scrumProjectManage->manageExecution->step10->desc = '点击燃尽图可以查看迭代燃尽图'; $lang->tutorial->scrumProjectManage->manageTask = new stdClass(); $lang->tutorial->scrumProjectManage->manageTask->title = '任务管理';