里程碑 添加 “已解决”,区分已解决和已关闭

This commit is contained in:
huang 2015-12-24 17:18:52 +08:00
parent 7d35931460
commit a92d33300b
2 changed files with 5 additions and 2 deletions

View File

@ -253,8 +253,10 @@ module ApplicationHelper
subject = truncate(subject, :length => 60)
end
end
if issue.status_id == 5
if issue.status_id == 3
s = link_to text, issue_path(issue), :class => "text_line_s", :title => title
elsif issue.status_id == 5
s = link_to text, issue_path(issue), :class => "text_line_s del_line", :title => title
else
s = link_to text, issue_path(issue), :class => "c_blue", :title => title
end

View File

@ -916,4 +916,5 @@ a.resourcesTypeUser {background:url(images/homepage_icon.png) -178px -453px no-r
.list_style ul li{list-style-type: disc;margin-left: 20px;}
/* @功能 定义 */
span.at {color:#269ac9;}
span.at {color:#269ac9;}
.del_line{text-decoration:line-through !important;}