socialforge/app/views/bids/_new.html.erb

17 lines
861 B
Plaintext
Raw Normal View History

2013-08-04 10:59:25 +08:00
<!-- fq -->
<%= form_for('bid_message', :remote => true, :method => :post,
:url => {:controller => 'bids',
2013-08-01 10:33:49 +08:00
:action => 'create',
:bid_id => bid,
:sta => sta}) do |f|%>
<table border="0" width="525px" align="center" style="border-left: 2px solid #acaeb1; border-right: 2px solid #acaeb1;
border-top: 2px solid #acaeb1; border-bottom: 2px solid #acaeb1;">
<tr>
<td><%= f.text_area 'message', :rows => 4, :cols => 65, :value => "我要反馈", :required => true, :style => "resize: none;", :class => 'noline'%></td>
</tr></table>
<table border="0" width="525px" align="center">
<tr><td align="right"><%= submit_tag l(:button_leave_meassge), :name => nil %>
<%= submit_tag l(:button_clear), :name => nil, :onclick => "clearMessage('bid_message_message');", :type => 'button' %></td></tr>
</table>
2013-08-01 10:33:49 +08:00
<% end %>