Server : Apache System : Linux iZ2vcgyutqttsd1p850kl8Z 3.10.0-1160.92.1.el7.x86_64 #1 SMP Tue Jun 20 11:48:01 UTC 2023 x86_64 User : www ( 1000) PHP Version : 5.6.40 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv Directory : /www/wwwroot/saimikebio.com/mobile/ecshopjcw/templates/ |
<!-- $Id: auction_info.htm 16992 2010-01-19 08:45:49Z wangleisvn $ --> {include file="pageheader.htm"} <script type="text/javascript" src="../data/static/js/calendar.php?lang={$cfg_lang}"></script> <link href="../data/static/js/calendar.css" rel="stylesheet" type="text/css" /> {insert_scripts files="./js/validator.js,./js/transport_jquery.js,../data/static/js/utils.js} <div class="main-div"> <form method="post" action="auction.php" name="theForm" enctype="multipart/form-data" onSubmit="return validate()"> <table cellspacing="1" cellpadding="3" width="100%"> <tr> <td class="label">{$lang.label_act_name}</td> <td><input name="act_name" type="text" id="act_name" value="{$auction.act_name}" maxlength="60" /> {$lang.notice_act_name}</td> </tr> <tr> <td class="label">{$lang.label_act_desc}</td> <td><textarea name="act_desc" cols="60" rows="4" id="act_desc" >{$auction.act_desc}</textarea></td> </tr> <tr> <td align="right">{$lang.label_search_goods}</td> <td><input name="keyword" type="text" id="keyword"> <input name="search" type="button" id="search" value="{$lang.button_search}" class="button" onclick="searchGoods()" /></td> </tr> <tr> <td class="label">{$lang.label_goods_name}</td> <td><select name="goods_id" id="goods_id" onchange="javascript:change_good_products();"> <option value="{$auction.goods_id}" selected="selected">{$auction.goods_name}</option> </select> <select name="product_id" {if $auction.product_id <= 0}style="display:none"{/if}> {html_options options=$good_products_select selected=$auction.product_id} </select></td> </tr> <tr> <td class="label">{$lang.label_start_time}</td> <td><input name="start_time" type="text" id="start_time" value="{$auction.start_time}" readonly /> <input name="selbtn1" type="button" id="selbtn1" onclick="return showCalendar('start_time', '%Y-%m-%d %H:%M', '24', false, 'selbtn1');" value="{$lang.btn_select}" class="button" /></td> </tr> <tr> <td class="label">{$lang.label_end_time}</td> <td><input name="end_time" type="text" id="end_time" value="{$auction.end_time}" readonly /> <input name="selbtn2" type="button" id="selbtn2" onclick="return showCalendar('end_time', '%Y-%m-%d %H:%M', '24', false, 'selbtn2');" value="{$lang.btn_select}" class="button" /></td> </tr> <tr> <td class="label">{$lang.label_start_price}</td> <td><input name="start_price" type="text" id="start_price" value="{$auction.start_price}"></td> </tr> <tr> <td class="label">{$lang.label_end_price}</td> <td><input name="end_price" type="text" id="end_price" {if $auction.no_top}disabled="true" {else}value="{$auction.end_price}"{/if}><input name="no_top" type="checkbox" value="1" onClick="checked_no_top(this);" onChange="checked_no_top(this);" {if $auction.no_top}checked{/if}/>{$lang.label_no_top}</td> </tr> <tr> <td class="label">{$lang.label_amplitude}</td> <td><input name="amplitude" type="text" id="amplitude" value="{$auction.amplitude}"></td> </tr> <tr> <td class="label">{$lang.label_deposit}</td> <td><input name="deposit" type="text" id="deposit" value="{$auction.deposit}"></td> </tr> {if $auction.act_id gt 0} <tr> <td class="label">{$lang.label_status}</td> <td>{$auction.status}<br />{$bid_user_count} <a href="auction.php?act=view_log&id={$auction.act_id}"> [ {$lang.view} ]</a></td> </tr> {/if} <tr> <td colspan="2" align="center"> {if $auction.act_id eq 0 or $auction.status_no eq "0" or $auction.status_no eq "1"} <input type="submit" class="button" value="{$lang.button_submit}" /> <input type="reset" class="button" value="{$lang.button_reset}" /> <input type="hidden" name="act" value="{$form_action}" /> {elseif $auction.status_no eq "2"} {if $auction.deposit gt 0} {$lang.settle_frozen_money} <input type="submit" class="button" value="{$lang.unfreeze}" name="unfreeze" /> <input type="submit" class="button" value="{$lang.deduct}" name="deduct" /> <input type="hidden" name="act" value="settle_money" /> {/if} {/if} <input type="hidden" name="id" value="{$auction.act_id}" /></td> </tr> </table> </form> </div> {literal} <script language="JavaScript"> <!-- var display_yes = (Browser.isIE) ? 'block' : 'table-row-group'; onload = function() { // 开始检查订单 startCheckOrder(); } /** * 检查表单输入的数据 */ function validate() { validator = new Validator("theForm"); validator.isNumber('start_price', start_price_not_number, false); validator.isNumber('end_price', end_price_not_number, false); if (document.forms['theForm'].elements['no_top'].checked == false) { validator.gt('end_price', 'start_price', end_gt_start); } validator.isNumber('amplitude', amplitude_not_number, false); validator.isNumber('deposit', deposit_not_number, false); validator.islt('start_time', 'end_time', start_lt_end); return validator.passed(); } function checked_no_top(o) { if (o.checked) { o.form.elements['end_price'].value = ''; o.form.elements['end_price'].disabled = true; } else { o.form.elements['end_price'].disabled = false; } } function searchGoods() { var filter = new Object; filter.keyword = document.forms['theForm'].elements['keyword'].value; Ajax.call('auction.php?is_ajax=1&act=search_goods', filter, searchGoodsResponse, 'GET', 'JSON'); } function searchGoodsResponse(result) { if (result.error == '1' && result.message != '') { alert(result.message); return; } var frm = document.forms['theForm']; var sel = frm.elements['goods_id']; var sp = frm.elements['product_id']; if (result.error == 0) { /* 清除 options */ sel.length = 0; sp.length = 0; /* 创建 options */ var goods = result.content.goods; if (goods) { for (i = 0; i < goods.length; i++) { var opt = document.createElement("OPTION"); opt.value = goods[i].goods_id; opt.text = goods[i].goods_name; sel.options.add(opt); } } else { var opt = document.createElement("OPTION"); opt.value = 0; opt.text = search_is_null; sel.options.add(opt); } /* 创建 product options */ var products = result.content.products; if (products) { sp.style.display = display_yes; for (i = 0; i < products.length; i++) { var p_opt = document.createElement("OPTION"); p_opt.value = products[i].product_id; p_opt.text = products[i].goods_attr_str; sp.options.add(p_opt); } } else { sp.style.display = 'none'; var p_opt = document.createElement("OPTION"); p_opt.value = 0; p_opt.text = search_is_null; sp.options.add(p_opt); } } return; } function change_good_products() { var filter = new Object; filter.goods_id = document.forms['theForm'].elements['goods_id'].value; Ajax.call('snatch.php?is_ajax=1&act=search_products', filter, searchProductsResponse, 'GET', 'JSON'); } function searchProductsResponse(result) { var frm = document.forms['theForm']; var sp = frm.elements['product_id']; if (result.error == 0) { /* 清除 options */ sp.length = 0; /* 创建 product options */ var products = result.content.products; if (products.length) { sp.style.display = display_yes; for (i = 0; i < products.length; i++) { var p_opt = document.createElement("OPTION"); p_opt.value = products[i].product_id; p_opt.text = products[i].goods_attr_str; sp.options.add(p_opt); } } else { sp.style.display = 'none'; var p_opt = document.createElement("OPTION"); p_opt.value = 0; p_opt.text = search_is_null; sp.options.add(p_opt); } } if (result.message.length > 0) { alert(result.message); } } //--> </script> {/literal} {include file="pagefooter.htm"}