-
-
-
- 问题类别 |
- 指派给 |
- |
-
-
-
- 思路 |
- |
- 编辑
- 删除 |
-
-
- 思路 |
- suntao |
- 编辑
- 删除 |
-
-
- 思路 |
- gugu |
- 编辑
- 删除 |
-
-
- 思路 |
- |
- 编辑
- 删除 |
-
-
-
-
-
-
新建问题类别
-
-
+
+ <%= render :partial=>"projects/settings/new_issue_categories" %>
-
-
-
-
新建版本库
-
-
+
+ <%= render :partial=>"projects/settings/new_repositories" %>
-
-
-
保存
-
重置
+
+ <%= render :partial=>"projects/settings/new_activities" %>
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/views/projects/settings/_new_activities.html.erb b/app/views/projects/settings/_new_activities.html.erb
new file mode 100644
index 000000000..8f0cbbf49
--- /dev/null
+++ b/app/views/projects/settings/_new_activities.html.erb
@@ -0,0 +1,23 @@
+
+
保存
+
重置
\ No newline at end of file
diff --git a/app/views/projects/settings/_new_edit.html.erb b/app/views/projects/settings/_new_edit.html.erb
new file mode 100644
index 000000000..92d52e5b6
--- /dev/null
+++ b/app/views/projects/settings/_new_edit.html.erb
@@ -0,0 +1,40 @@
+
+
+
保存
+
\ No newline at end of file
diff --git a/app/views/projects/settings/_new_issue_categories.html.erb b/app/views/projects/settings/_new_issue_categories.html.erb
new file mode 100644
index 000000000..b690b11ce
--- /dev/null
+++ b/app/views/projects/settings/_new_issue_categories.html.erb
@@ -0,0 +1,57 @@
+
+
+
+ 问题类别 |
+ 指派给 |
+ |
+
+
+
+ 思路 |
+ |
+ 编辑
+ 删除 |
+
+
+ 思路 |
+ suntao |
+ 编辑
+ 删除 |
+
+
+ 思路 |
+ gugu |
+ 编辑
+ 删除 |
+
+
+ 思路 |
+ |
+ 编辑
+ 删除 |
+
+
+
+
+
+
+
新建问题类别
+
+
\ No newline at end of file
diff --git a/app/views/projects/settings/_new_members.html.erb b/app/views/projects/settings/_new_members.html.erb
new file mode 100644
index 000000000..a38b462e2
--- /dev/null
+++ b/app/views/projects/settings/_new_members.html.erb
@@ -0,0 +1,67 @@
+
+
+
\ No newline at end of file
diff --git a/app/views/projects/settings/_new_modules.html.erb b/app/views/projects/settings/_new_modules.html.erb
new file mode 100644
index 000000000..e2696a23e
--- /dev/null
+++ b/app/views/projects/settings/_new_modules.html.erb
@@ -0,0 +1,19 @@
+
+
全选 | 清除
+
保存
\ No newline at end of file
diff --git a/app/views/projects/settings/_new_repositories.html.erb b/app/views/projects/settings/_new_repositories.html.erb
new file mode 100644
index 000000000..d964c8f22
--- /dev/null
+++ b/app/views/projects/settings/_new_repositories.html.erb
@@ -0,0 +1,69 @@
+
+
+
新建版本库
+
+
\ No newline at end of file
diff --git a/app/views/projects/settings/_new_versions.html.erb b/app/views/projects/settings/_new_versions.html.erb
new file mode 100644
index 000000000..28c3c42ef
--- /dev/null
+++ b/app/views/projects/settings/_new_versions.html.erb
@@ -0,0 +1,140 @@
+
+
关闭已完成的版本
+
+
新建版本
+
+
\ No newline at end of file
diff --git a/public/javascripts/project.js b/public/javascripts/project.js
index 20ef731d7..148fe44cc 100644
--- a/public/javascripts/project.js
+++ b/public/javascripts/project.js
@@ -162,7 +162,20 @@ function close_window(type){
//弹框l
/////////////////////////////////////////////
-function g(o){return document.getElementById(o);}
-function HoverLi(n){
- for(var i=1;i<=8;i++){g('pro_st_tb_'+i).className='pro_st_normaltab';g('pro_st_tbc_0'+i).className='pro_st_undis';}g('pro_st_tbc_0'+n).className='pro_st_dis';g('pro_st_tb_'+n).className='pro_st_hovertab';
+//项目配置
+function project_setting(n)
+{
+ for(var i = 1;i < 9; i++)
+ {
+ if(i == n)
+ {
+ $("#pro_st_tb_"+i).removeClass().addClass("pro_st_hovertab");
+ $("#pro_st_tbc_0"+i).removeClass().addClass("pro_st_dis");
+ }
+ else
+ {
+ $("#pro_st_tb_"+i).removeClass().addClass("pro_st_dis");
+ $("#pro_st_tbc_0"+i).removeClass().addClass("pro_st_undis");
+ }
+ }
}
\ No newline at end of file