parent
5e4571d6af
commit
3e79dd6e32
|
@ -68,5 +68,7 @@ bundle exec rake db:migrate:up VERSION=20140410021724
|
||||||
4 点击“查询”(就是确定的功能)
|
4 点击“查询”(就是确定的功能)
|
||||||
===============================================================================
|
===============================================================================
|
||||||
0719:若遇到首页定制报错问题请尝试如下操作
|
0719:若遇到首页定制报错问题请尝试如下操作
|
||||||
|
如果运行迁移文件有报错与‘sort_type’相关 先运行 bundle exec rake db:migrate:down version=20140716021202 bundle exec rake db:migrate:up version=20140716021202
|
||||||
|
在按如下步骤执行,未报与之相关的则直接按如下步骤执行
|
||||||
1.运行 bundle exec rake db:migrate:down version=20140719080032
|
1.运行 bundle exec rake db:migrate:down version=20140719080032
|
||||||
2.运行 bundle exec rake db:migrate:up version=20140719080032
|
2.运行 bundle exec rake db:migrate:up version=20140719080032
|
|
@ -1,6 +1,7 @@
|
||||||
# fq
|
# fq
|
||||||
# class BidsController < ApplicationController
|
# class BidsController < ApplicationController
|
||||||
class ContestsController < ApplicationController
|
class ContestsController < ApplicationController
|
||||||
|
layout "contest_base"
|
||||||
menu_item :respond
|
menu_item :respond
|
||||||
menu_item :project, :only => :show_project
|
menu_item :project, :only => :show_project
|
||||||
menu_item :application, :only => :show_softapplication
|
menu_item :application, :only => :show_softapplication
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
class SoftapplicationsController < ApplicationController
|
class SoftapplicationsController < ApplicationController
|
||||||
|
layout "contest_base"
|
||||||
before_filter :find_softapplication, only: [:edit, :update, :destroy]
|
before_filter :find_softapplication, only: [:edit, :update, :destroy]
|
||||||
before_filter :editable, only: [:edit, :update]
|
before_filter :editable, only: [:edit, :update]
|
||||||
before_filter :destroyable, only: :destroy
|
before_filter :destroyable, only: :destroy
|
||||||
|
|
|
@ -39,7 +39,7 @@
|
||||||
<ul class="list-group-item-meta">
|
<ul class="list-group-item-meta">
|
||||||
<div class="issue-list-description">
|
<div class="issue-list-description">
|
||||||
<div class="wiki">
|
<div class="wiki">
|
||||||
<%= textilizable issue, :description, :attachments => issue.attachments %>
|
<%= textilizable issue, :description %>
|
||||||
</div>
|
</div>
|
||||||
<!-- <#%= l(:field_description)%>: <#%= issue.short_description %> -->
|
<!-- <#%= l(:field_description)%>: <#%= issue.short_description %> -->
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -0,0 +1,49 @@
|
||||||
|
<%
|
||||||
|
@nav_dispaly_contest_label = 1
|
||||||
|
@nav_dispaly_store_all_label = 1
|
||||||
|
%>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="<%= current_language %>">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<title><%=h html_title %></title>
|
||||||
|
<meta name="description" content="<%= Redmine::Info.app_name %>" />
|
||||||
|
<meta name="keywords" content="issue,bug,tracker" />
|
||||||
|
<%= csrf_meta_tag %>
|
||||||
|
<%= favicon %>
|
||||||
|
<%= stylesheet_link_tag 'jquery/jquery-ui-1.9.2', 'application', 'nyan', :media => 'all' %>
|
||||||
|
<%= stylesheet_link_tag 'rtl', :media => 'all' if l(:direction) == 'rtl' %>
|
||||||
|
<%= javascript_heads %>
|
||||||
|
<%= javascript_include_tag "jquery.leanModal.min" %>
|
||||||
|
<%= javascript_include_tag 'seems_rateable/jRating', 'seems_rateable/rateable'%>
|
||||||
|
<%= heads_for_theme %>
|
||||||
|
<%= call_hook :view_layouts_base_html_head %>
|
||||||
|
<!-- page specific tags -->
|
||||||
|
<%= yield :header_tags -%>
|
||||||
|
</head>
|
||||||
|
<body class="<%=h body_css_classes %>">
|
||||||
|
<div id="wrapper">
|
||||||
|
<div id="wrapper2">
|
||||||
|
<div id="wrapper3">
|
||||||
|
<%=render :partial => 'layouts/base_header'%>
|
||||||
|
<div id="main" class="nosidebar">
|
||||||
|
<div id="content_">
|
||||||
|
<%= render_flash_messages %>
|
||||||
|
<%= yield %>
|
||||||
|
<%= call_hook :view_layouts_base_content %>
|
||||||
|
<div style="clear:both;"></div>
|
||||||
|
<%=render :partial => 'layouts/base_footer'%>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="ajax-indicator" style="display:none;"><span><%= l(:label_loading) %></span></div>
|
||||||
|
<div id="ajax-modal" style="display:none;"></div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<%= call_hook :view_layouts_base_body_bottom %>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -3,6 +3,10 @@
|
||||||
@nav_dispaly_store_all_label = 1
|
@nav_dispaly_store_all_label = 1
|
||||||
%>
|
%>
|
||||||
<%= stylesheet_link_tag 'welcome' %>
|
<%= stylesheet_link_tag 'welcome' %>
|
||||||
|
<style type="text/css">
|
||||||
|
#up_zzjs{height:100px;overflow:hidden;}
|
||||||
|
|
||||||
|
</style>
|
||||||
<script type="text/javascript" language="javascript">
|
<script type="text/javascript" language="javascript">
|
||||||
function clearInfo(id, content) {
|
function clearInfo(id, content) {
|
||||||
var text = $('#' + id);
|
var text = $('#' + id);
|
||||||
|
@ -195,7 +199,19 @@
|
||||||
<fieldset style="padding-left: 36px; margin-left: 13px; height: 150px; width:380px; border-radius:10px;">
|
<fieldset style="padding-left: 36px; margin-left: 13px; height: 150px; width:380px; border-radius:10px;">
|
||||||
<div style="font-size:14px; color: #1166AD; padding-left:52px; "><strong>2014年Android程序设计大赛获奖名单</strong></div>
|
<div style="font-size:14px; color: #1166AD; padding-left:52px; "><strong>2014年Android程序设计大赛获奖名单</strong></div>
|
||||||
<div class="underline-contests_four"></div>
|
<div class="underline-contests_four"></div>
|
||||||
<marquee scrollamount=3 direction=up height=100 >
|
<div id="up_zzjs">
|
||||||
|
<div id="marqueebox">
|
||||||
|
<div><span style="color: red">一等奖:</span> <span style="color: #1166AD">消灭那怪兽</span></div>
|
||||||
|
<div><span style="color: red">二等奖:</span> <span style="color: #1166AD">兄弟向前冲 </span></div>
|
||||||
|
<div><span style="color: red">二等奖:</span> <span style="color: #1166AD">鸟鸟文件管理器(银河之光版)</span></div>
|
||||||
|
<div><span style="color: red">三等奖:</span> <span style="color: #1166AD">疯狂猜图</span></div>
|
||||||
|
<div><span style="color: red">三等奖:</span> <span style="color: #1166AD">愉快的定向越野 </span></div>
|
||||||
|
<div><span style="color: red">三等奖:</span> <span style="color: #1166AD">体能训练助手 </span></div>
|
||||||
|
<div><span style="color: red">三等奖:</span> <span style="color: #1166AD">迷你日记本 </span></div>
|
||||||
|
<div><span style="color: red">三等奖:</span> <span style="color: #1166AD">永齐飞机大战</span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- 火狐 onmouseover、onmouseout无效 <marquee scrollamount=3 direction=up height=100 onmouseover=stop() onmouseout= start() >
|
||||||
<div><span style="color: red">一等奖:</span> <span style="color: #1166AD">消灭那怪兽</span></div>
|
<div><span style="color: red">一等奖:</span> <span style="color: #1166AD">消灭那怪兽</span></div>
|
||||||
<div><span style="color: red">二等奖:</span> <span style="color: #1166AD">兄弟向前冲 </span></div>
|
<div><span style="color: red">二等奖:</span> <span style="color: #1166AD">兄弟向前冲 </span></div>
|
||||||
<div><span style="color: red">二等奖:</span> <span style="color: #1166AD">鸟鸟文件管理器(银河之光版)</span></div>
|
<div><span style="color: red">二等奖:</span> <span style="color: #1166AD">鸟鸟文件管理器(银河之光版)</span></div>
|
||||||
|
@ -204,7 +220,36 @@
|
||||||
<div><span style="color: red">三等奖:</span> <span style="color: #1166AD">体能训练助手 </span></div>
|
<div><span style="color: red">三等奖:</span> <span style="color: #1166AD">体能训练助手 </span></div>
|
||||||
<div><span style="color: red">三等奖:</span> <span style="color: #1166AD">迷你日记本 </span></div>
|
<div><span style="color: red">三等奖:</span> <span style="color: #1166AD">迷你日记本 </span></div>
|
||||||
<div><span style="color: red">三等奖:</span> <span style="color: #1166AD">永齐飞机大战</span></div>
|
<div><span style="color: red">三等奖:</span> <span style="color: #1166AD">永齐飞机大战</span></div>
|
||||||
</marquee>
|
</marquee> -->
|
||||||
|
|
||||||
|
<script language="javascript">
|
||||||
|
function startmarquee(lh,speed,delay) {
|
||||||
|
var p=false;
|
||||||
|
var t;
|
||||||
|
var o=document.getElementById("marqueebox");
|
||||||
|
o.innerHTML+=o.innerHTML;
|
||||||
|
o.style.marginTop=0;
|
||||||
|
o.onmouseover=function(){p=true;}
|
||||||
|
o.onmouseout=function(){p=false;}
|
||||||
|
|
||||||
|
function start(){
|
||||||
|
t=setInterval(scrolling,speed);
|
||||||
|
if(!p) o.style.marginTop=parseInt(o.style.marginTop)-1+"px";
|
||||||
|
}
|
||||||
|
|
||||||
|
function scrolling(){
|
||||||
|
if(parseInt(o.style.marginTop)%lh!=0){
|
||||||
|
o.style.marginTop=parseInt(o.style.marginTop)-1+"px";
|
||||||
|
if(Math.abs(parseInt(o.style.marginTop))>=o.scrollHeight/2) o.style.marginTop=0;
|
||||||
|
}else{
|
||||||
|
clearInterval(t);
|
||||||
|
setTimeout(start,delay);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
setTimeout(start,delay);
|
||||||
|
}
|
||||||
|
startmarquee(20,40,0);
|
||||||
|
</script>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue