81 lines
3.2 KiB
Plaintext
81 lines
3.2 KiB
Plaintext
<!-- fq -->
|
|
|
|
<style>
|
|
input[type="submit"].bid_btn {
|
|
vertical-align: middle;
|
|
width: 80px;
|
|
height: 30px;
|
|
line-height: 18px;
|
|
font-size: 14px;
|
|
color: rgb(0, 0, 0);
|
|
background: url("../images/button/bg106.jpg") no-repeat scroll left top transparent;
|
|
padding: 0px 0px 4px 0px;
|
|
border-radius: 2px;
|
|
border: 1px solid rgb(148, 148, 148);
|
|
box-shadow: none;
|
|
text-shadow: none;
|
|
margin-top: -10px;
|
|
margin-right: -5px;
|
|
}
|
|
textarea:focus {
|
|
border: #d5dee9 1px solid;
|
|
}
|
|
</style>
|
|
|
|
<script type="text/javascript" language="javascript">
|
|
function clearInfo(id, content) {
|
|
var text = $('#' + id);
|
|
if (text.val() == content) {
|
|
$('#' + id).val('');
|
|
}
|
|
}
|
|
|
|
function showInfo(id, content) {
|
|
var text = $('#' + id);
|
|
if (text.val() == '') {
|
|
$('#' + id).val(content);
|
|
}
|
|
}
|
|
</script>
|
|
<%= form_tag({:controller => 'bids',
|
|
:action => 'new_bid',
|
|
:remote => true,
|
|
:method => :post,
|
|
:id => 'new-bid-form'}) do %>
|
|
|
|
<table border="0" width="600px" style="border-left: 1px solid #acaeb1; border-right: 1px solid #acaeb1;
|
|
border-top: 1px solid #acaeb1; border-bottom: 1px solid #acaeb1; margin-top: 30px; margin-left: 30px;">
|
|
<tr>
|
|
<td colspan="2"><%= text_field_tag 'bid_title', "#{l(:label_requirement_name)}", :class => 'noline', :required => true, :onfocus => "clearInfo('bid_title', '#{l(:label_requirement_name)}')", :onblur => "showInfo('bid_title', '#{l(:label_requirement_name)}')"%></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2"><div class="tableline"></div></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2"><%= text_area_tag 'bid_description', "#{l(:label_requirement_description)}", :class => 'noline', :required => true, :style => "resize: none;", :rows => 6,
|
|
:onfocus => "clearInfo('bid_description', '#{l(:label_requirement_description)}')", :onblur => "showInfo('bid_description', '#{l(:label_requirement_description)}')" %></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2"><div class="tableline"></div></td>
|
|
</tr>
|
|
<!-- <tr>
|
|
<td width="22%"><%= select_tag 'bid_reward_type', "<option value = '0'>#{l(:label_choose_reward)}</option><option value = '1'>#{l(:label_money)}</option><option value = '2'>#{l(:label_reward_1)}</option><option value = '3'>#{l(:label_bids_credit)}</option>".html_safe, :class => 'noline' %></td>
|
|
<td><%= text_field_tag 'bid_budget', "#{l(:label_requirement_bargain_money)}", :class => 'noline', :required => true,
|
|
:onfocus => "clearInfo('bid_budget', '#{l(:label_requirement_bargain_money)}')", :onblur => "showInfo('bid_budget', '#{l(:label_requirement_bargain_money)}')" %>
|
|
</td>
|
|
</tr> -->
|
|
<tr>
|
|
<td colspan="2"><div class="tableline"></div></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2"><%= text_field_tag 'bid_deadline', "#{l(:label_deadline)}", :class => 'noline', :required => true,
|
|
:onfocus => "clearInfo('bid_deadline', '#{l(:label_deadline)}')", :onblur => "showInfo('bid_deadline', '#{l(:label_deadline)}')"%>
|
|
<%= calendar_for('bid_deadline')%></td>
|
|
</tr>
|
|
</table>
|
|
<table id="bidding_table" border="0" width="600" style="margin-top: 10px; margin-left: 30px;">
|
|
<tr>
|
|
<td align="right"> <%= submit_tag l(:button_new_bid), :name => nil , :class => "bid_btn", :onmouseout => "this.style.backgroundPosition = 'left top'", :onmouseover => "this.style.backgroundPosition = 'left -31px'"%> </td>
|
|
</tr>
|
|
</table>
|
|
<%end%> |