2014-04-03 17:26:56 +08:00
|
|
|
|
<%= stylesheet_link_tag 'welcome' %>
|
|
|
|
|
<script type="text/javascript" language="javascript">
|
|
|
|
|
function clearInfo(id, content) {
|
|
|
|
|
var text = $('#' + id);
|
|
|
|
|
if (text.val() == content) {
|
|
|
|
|
$('#' + id).val('');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$(function(){
|
|
|
|
|
$("#main").find("a").attr("target", "_blank");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
function showInfo(id, content) {
|
|
|
|
|
var text = $('#' + id);
|
|
|
|
|
if (text.val() == '') {
|
|
|
|
|
$('#' + id).val(content);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// 给主页用户弹新页面
|
|
|
|
|
$(document).ready(function($) {
|
|
|
|
|
$("#loggedas").find("a").attr("target", "_blank");
|
|
|
|
|
//$("#content .tabs_new~ .pagination").find("a").removeAttr("target");
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
(function (){
|
|
|
|
|
window.onload = function(){
|
|
|
|
|
function fixedBar(id, options){
|
|
|
|
|
var ele = document.getElementById(id);
|
|
|
|
|
if(!ele) return;
|
|
|
|
|
if(/msie (\d+\.\d+)/i.test(navigator.userAgent)){
|
|
|
|
|
var pageHeight=window.innerHeight;
|
|
|
|
|
var d=document;
|
|
|
|
|
if(typeof pageHeight!="number"){
|
|
|
|
|
if(document.compatMode=="CSS1Compat"){
|
|
|
|
|
pageHeight=document.documentElement.clientHeight;
|
|
|
|
|
}else{
|
|
|
|
|
pageHeight=document.body.clientHeight;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
var ieScrollTop=window.pageYOffset || d.documentElement.scrollTop || d.body.scrollTop;
|
|
|
|
|
if(options.addclass) ele.className = options.addclass;
|
|
|
|
|
ele.style.position= 'absolute';
|
|
|
|
|
|
|
|
|
|
if(options.show){
|
|
|
|
|
ele.style.top = 0 + "px";
|
|
|
|
|
ele.style.display= 'block';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
window.attachEvent('onscroll' , function (){
|
|
|
|
|
|
|
|
|
|
var ieScrollTop=window.pageYOffset || d.documentElement.scrollTop || d.body.scrollTop;
|
|
|
|
|
|
|
|
|
|
ele.style.top = 0 + "px";
|
|
|
|
|
if(options.autoHidden){
|
|
|
|
|
if(ieScrollTop==0){
|
|
|
|
|
ele.style.display="none";
|
|
|
|
|
}else{
|
|
|
|
|
ele.style.display="block";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}else{
|
|
|
|
|
var ele = document.getElementById(id);
|
|
|
|
|
if(typeof pageHeight!="number"){
|
|
|
|
|
if(document.compatMode=="CSS1Compat"){
|
|
|
|
|
pageHeight=document.documentElement.clientHeight;
|
|
|
|
|
}else{
|
|
|
|
|
pageHeight=document.body.clientHeight;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(options.show) ele.style.display= 'block';
|
|
|
|
|
ele.style.top = 0 +'px';
|
|
|
|
|
window.addEventListener('scroll',function (){
|
|
|
|
|
if(options.autoHidden){
|
|
|
|
|
if(baidu.page.getScrollTop()==0){
|
|
|
|
|
ele.style.display="none";
|
|
|
|
|
}else{
|
|
|
|
|
ele.style.display="block";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},false);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fixedBar('backTopBtn' , {autoHidden: true, top : 186});
|
|
|
|
|
fixedBar('identifier-pannel' , {autoHidden: false , top : 956 , show : true});
|
|
|
|
|
}
|
|
|
|
|
})();
|
|
|
|
|
</script>
|
2014-03-31 10:56:29 +08:00
|
|
|
|
<div class='top_bar'>
|
2014-04-03 17:26:56 +08:00
|
|
|
|
<div id="identifier-pannel" style="display:none">
|
|
|
|
|
<%= link_to image_tag('/images/qrweixin.jpg', size: '150x150', alt: 'trustie', class: "weixin" ), home_path %>
|
|
|
|
|
<div class="weixin-content">微信扫码</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="main-content-bar">
|
|
|
|
|
<div class="welcome_left" >
|
|
|
|
|
<span class="font_welcome_trustie"><%= l(:label_welcome_trustie) %><%= l(:label_welcome_trustie_contest) %></span> <span class="font_welcome_tdescription">, <%= l(:label_welcome_trustie_contest_description) %></span>
|
|
|
|
|
</div>
|
2014-04-09 10:24:44 +08:00
|
|
|
|
<!--网站状态-->
|
|
|
|
|
<div style="width: 20%; height: 60px; border: 1px solid black; float:right;">
|
|
|
|
|
<tr>
|
|
|
|
|
<td>竞赛总量:</td>
|
|
|
|
|
<td></td>
|
|
|
|
|
</tr><br>
|
|
|
|
|
<tr>
|
|
|
|
|
<td>竞赛总人数:</td>
|
|
|
|
|
<td></td>
|
|
|
|
|
</tr><br />
|
|
|
|
|
<tr>
|
|
|
|
|
<td>竞赛项目或应用总数:</td>
|
|
|
|
|
<td></td>
|
|
|
|
|
</tr>
|
2014-04-03 17:26:56 +08:00
|
|
|
|
</div>
|
|
|
|
|
<div style="clear: both;"></div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2014-04-09 10:24:44 +08:00
|
|
|
|
|
|
|
|
|
<!--搜索框-->
|
|
|
|
|
<!-- <div class="align-right">
|
|
|
|
|
<%= text_field_tag 'name', params[:name], :size => 48 %>
|
|
|
|
|
<%= hidden_field_tag 'project_type', params[:project_type] %>
|
|
|
|
|
<%= submit_tag l(:label_search), :class => "enterprise" %>
|
|
|
|
|
</div> -->
|
|
|
|
|
|
|
|
|
|
<div style="width: 57%;margin: 10px auto;">
|
|
|
|
|
<%= form_tag( method: 'post') do %>
|
|
|
|
|
<%= text_field_tag 'name', params[:name], placeholder:'请输入要搜索的关键字', name: "name", :class => 'blueinputbar', :style => 'width:400px;'%>
|
|
|
|
|
|
|
|
|
|
<%= submit_tag l(:label_search), :class => "enterprise"%>
|
|
|
|
|
<% end %>
|
|
|
|
|
<div class='font_lighter' style="display: inline-block; margin-top:3px;">竞赛相关内容搜索,如竞赛题目,参赛题目,参赛人名等。</div>
|
2014-04-03 22:15:19 +08:00
|
|
|
|
</div>
|
2014-04-09 10:24:44 +08:00
|
|
|
|
<!-- <div class="search-bar">
|
|
|
|
|
<%= render :partial => "search_project", :locals => {:project_type => 0}%>
|
|
|
|
|
</div> -->
|
2014-04-03 17:26:56 +08:00
|
|
|
|
<div style="clear:both"></div>
|
|
|
|
|
|
|
|
|
|
<div id="J_Slide" class="d-p-index-box d-p-index-hotproject">
|
2014-04-09 10:24:44 +08:00
|
|
|
|
|
|
|
|
|
<h3 style="margin-left: 5px; color: color: (51, 119, 51);"><strong>最新热门竞赛</strong></h3>
|
|
|
|
|
<span style="margin-top: -20px;float: right; display: block;"><%= link_to "更多>>", {:controller => 'bids', :action => 'contest', :project_type => 1, :host => Setting.contest_domain}, :target => "_blank" %></span>
|
2014-04-03 17:26:56 +08:00
|
|
|
|
<div class="d-p-projectlist-box">
|
|
|
|
|
<ul class="d-p-projectlist">
|
2014-04-09 10:24:44 +08:00
|
|
|
|
<% find_all_hot_contest.map do |contest| break if(contest == find_all_hot_contest[10]) %>
|
|
|
|
|
<li style="background-image:none;">
|
|
|
|
|
<p class="layout">
|
|
|
|
|
<span style = "background: url('/images/007.gif') no-repeat scroll ;background-position: left center;"><%= link_to( contest.name, respond_path(contest.id), :class => "d-g-blue d-p-project-name", :title => "#{contest.name}",
|
|
|
|
|
:style => "margin-left: 28px;", :target => "_blank") %></span>
|
|
|
|
|
</p>
|
|
|
|
|
<p class="layout-1" >
|
|
|
|
|
<%= content_tag "span", contest.description.truncate(50, omission: '...'), :class => "d-p-project-intro" , :title => contest.description %>
|
|
|
|
|
</p>
|
2014-04-03 17:26:56 +08:00
|
|
|
|
</li>
|
2014-04-09 10:24:44 +08:00
|
|
|
|
<% end %>
|
2014-04-03 17:26:56 +08:00
|
|
|
|
</ul>
|
2014-03-31 10:56:29 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2014-04-03 17:26:56 +08:00
|
|
|
|
|
|
|
|
|
<div id="J_Slide" class="d-p-index-box d-p-index-hotproject" style="float: right;">
|
|
|
|
|
<ul class="user-welcome-message-list">
|
|
|
|
|
<h3 style="color: rgb(21, 188, 207)"><strong>用户动态</strong></h3>
|
|
|
|
|
<span style="margin-top: -20px;float: right; display: block;"><%= link_to "更多>>", { :controller => 'users', :action => 'index'}, :target => "_blank" %></span>
|
|
|
|
|
<div class="user-message-box-list" style="margin-top: 10px;">
|
|
|
|
|
<% find_all_activities.each do |event| %>
|
|
|
|
|
<li style="display: block;height:60px; padding-bottom: 4px;">
|
|
|
|
|
<div class="inner-right" style="float: left; height: 100%; ">
|
|
|
|
|
<%= image_tag url_to_avatar(event.event_author), :class => "avatar-3" %>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="inner-right" style="float: right; width:86%; height: 100%; ">
|
|
|
|
|
<span style="color: green;"><%= link_to event.event_author, (user_path(event.event_author) if event.event_author), :style => "color:green;", :target => "_blank" %></span><%= show_user_content event %>
|
|
|
|
|
<p style="margin-top: 4px;"><span style="color: rgb(172, 174, 177)"><%= l(:field_updated_on) %><%= time_tag_welcome event.event_datetime %>前</span> <span style="float: right; color: rgb(172, 174, 177);"><%= show_event_reply event %></span></p>
|
|
|
|
|
</div>
|
|
|
|
|
</li>
|
|
|
|
|
<% end %>
|
|
|
|
|
</div>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="right" style="float: right; width: 48%; ">
|
|
|
|
|
<ul class="welcome-message-list">
|
|
|
|
|
<div class="forum-topic" style="height: 25px; width: 98%; margin-left: 2px;">
|
|
|
|
|
<h3 style="color: rgb(21, 188, 207);">
|
|
|
|
|
<strong>贴吧动态</strong>
|
|
|
|
|
<%= link_to "我要提问" , newbie_send_path, {:class => 'orangeButton idea_btn', :style => "color: #EEEEEE" }%>
|
|
|
|
|
<%= link_to "我要反馈" , suggestion_send_path, {:class => 'orangeButton idea_btn', :style => "color: #EEEEEE" }%></h3>
|
|
|
|
|
<span style="margin-top: -30px;float: right; display: block;"><%= link_to "更多>>", forums_path %></span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="welcome-box-list-new">
|
|
|
|
|
<% find_new_forum_topics(7).each do |topic|%>
|
|
|
|
|
<li class="message-brief-intro" style="line-height: 1.63em;padding-bottom:3px;">
|
|
|
|
|
<div style="display: inline-block; width: 100%;">
|
|
|
|
|
<span style="color:gray; display: inline-block; margin-bottom:6px; background: url('/images/list-icon.png') no-repeat scroll ;background-position: left center;">
|
|
|
|
|
<%= link_to topic.subject.truncate(30, omission: '...'), topic.event_url, :class => "gray" , :style => "font-size: 10pt !important;", :target => "_blank" %>
|
|
|
|
|
</span>
|
|
|
|
|
<br>
|
|
|
|
|
<span style="margin-left: 24px; color: rgb(172, 174, 177); white-space: nowrap; font-size: 9pt !important;;"><%= l(:field_updated_on) %><%=time_tag_welcome(topic_last_time topic)%>前</span>
|
|
|
|
|
<span style="margin-left: 8px; margin-bottom: 0px; color: rgb(172, 174, 177) !important; white-space: nowrap;">
|
|
|
|
|
由 <%= link_to topic.author ? topic.author : 'Anonymous', user_path(topic.author_id), :style => "font-size: 9pt !important; color: rgb(17, 102, 173);", :target => "_blank" %> 发表
|
|
|
|
|
</span>
|
|
|
|
|
<span style="float: right; color: rgb(172, 174, 177); white-space: nowrap; font-size: 9pt !important;;">回复(<%= link_to (topic.parent ? topic.parent.replies_count : topic.replies_count), topic.event_url, :target => "_blank" %>)</span>
|
|
|
|
|
</div>
|
|
|
|
|
</li>
|
|
|
|
|
<% end %>
|
|
|
|
|
</div>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <div id="J_Slide" class="d-p-index-box d-p-index-hotproject" style="float: right;">
|
|
|
|
|
<h3 style="margin-left: 5px; color: color: (51, 119, 51);"><strong>热门竞赛</strong></h3>
|
|
|
|
|
<span style="margin-top: -20px;float: right; display: block;"><%= link_to "更多>>", {:controller => 'bids', :action => 'contest', :project_type => 1, :host => Setting.contest_domain}, :target => "_blank" %></span>
|
|
|
|
|
<div class="d-p-projectlist-box">
|
|
|
|
|
<ul class="d-p-projectlist">
|
|
|
|
|
<% find_all_hot_contest.map do |contest| break if(contest == find_all_hot_contest[5]) %>
|
|
|
|
|
<li style="background-image:none;">
|
|
|
|
|
<p class="layout">
|
|
|
|
|
<span style = "background: url('/images/007.gif') no-repeat scroll ;background-position: left center;"><%= link_to( contest.name, respond_path(contest.id), :class => "d-g-blue d-p-project-name", :title => "#{contest.name}",
|
|
|
|
|
:style => "margin-left: 28px;", :target => "_blank") %></span>
|
|
|
|
|
</p>
|
|
|
|
|
<p class="layout-1" >
|
|
|
|
|
<%= content_tag "span", contest.description.truncate(50, omission: '...'), :class => "d-p-project-intro" , :title => contest.description %>
|
|
|
|
|
</p>
|
|
|
|
|
</li>
|
|
|
|
|
<% end %>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</div> -->
|
|
|
|
|
|
|
|
|
|
<!-- <div id="J_Slide" class="d-p-index-box d-p-index-hotproject" style="float: right;">
|
|
|
|
|
<h3 style="margin-left: 5px; color: color: (51, 119, 51);"><strong>热门众包</strong></h3>
|
|
|
|
|
<span style="margin-top: -20px;float: right; display: block;"><%= link_to "更多>>", {:controller => 'bids', :action => 'index'}, :target => "_blank" %></span>
|
|
|
|
|
<div class="d-p-projectlist-box">
|
|
|
|
|
<ul class="d-p-projectlist">
|
|
|
|
|
<% find_all_hot_bid.map do |bid| break if(bid == find_all_hot_bid[5]) %>
|
|
|
|
|
<li style="background-image:none;">
|
|
|
|
|
<p class="layout">
|
|
|
|
|
<span style = "background: url('/images/007.gif') no-repeat scroll ;background-position: left center;"><%= link_to( bid.name, respond_path(bid.id), :class => "d-g-blue d-p-project-name", :title => "#{bid.name}",
|
|
|
|
|
:style => "margin-left: 28px;", :target => "_blank") %></span>
|
|
|
|
|
</p>
|
|
|
|
|
<p class="layout-1" >
|
|
|
|
|
<%= content_tag "span", bid.description.truncate(50, omission: '...'), :class => "d-p-project-intro" , :title => bid.description %>
|
|
|
|
|
</p>
|
|
|
|
|
</li>
|
|
|
|
|
<% end %>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</div> -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="clr">
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<br/><br/><br/><br/><br/><br/><br/>
|
2014-03-31 10:56:29 +08:00
|
|
|
|
<div style="padding-top: 40px"></div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|