37 lines
1.3 KiB
Plaintext
37 lines
1.3 KiB
Plaintext
<div class="contextual">
|
||
<%= link_to("新建需求", {:controller => 'bids', :action => 'new_bid'}, :class => 'icon icon-add') %>
|
||
</div>
|
||
<h3>需求列表</h3>
|
||
|
||
<ul class="hotlist">
|
||
<% @bids.each do |bid|%>
|
||
<li>
|
||
<img width="29" src="/images/requirements/req.jpg">
|
||
<strong>悬赏:¥<%= bid.budget%></strong>
|
||
<%= link_to bid.name, :controller => 'bids', :action => 'show', :bid_id => bid.id %>
|
||
<span class="gray9"><%= bid.author.name%> 发布 39投标</span>
|
||
</li>
|
||
<% end %>
|
||
|
||
<li>
|
||
<img width="29" src="/images/requirements/req.jpg">
|
||
<strong>悬赏:¥1000</strong>
|
||
<%= link_to "宣传展示型网站开发_企业网站中英文", :controller => 'bids', :action => 'show', :bid_id => "2" %>
|
||
<span class="gray9">tellmey 发布 24投标</span>
|
||
</li>
|
||
|
||
<li>
|
||
<img width="29" src="/images/requirements/req.jpg">
|
||
<strong>悬赏:¥1000</strong>
|
||
<%= link_to "移动应用终端无线支付停车场开发", :controller => 'bids', :action => 'show', :bid_id => "3" %>
|
||
<span class="gray9">奥美特电子 发布 2投标</span>
|
||
</li>
|
||
|
||
<li>
|
||
<img width="29" src="/images/requirements/req.jpg">
|
||
<strong>悬赏:¥1500</strong>
|
||
<%= link_to "需要一个印刷类的erp系统", :controller => 'bids', :action => 'show', :bid_id => "4" %>
|
||
<span class="gray9">海彩印刷有限公司 发布 17投标</span>
|
||
</li>
|
||
|
||
</ul> |