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: goods_batch_add.htm 16544 2009-08-13 07:55:57Z liuhui $ --> {include file="pageheader.htm"} <div class="main-div"> <form action="goods_batch.php?act=upload" method="post" enctype="multipart/form-data" name="theForm" onsubmit="return formValidate()"> <table cellspacing="1" cellpadding="3" width="100%"> <tr> <td class="label">{$lang.export_format}</td> <td><select name="data_cat" id="data_cat"> <option value="0">{$lang.select_please}</option> {html_options options=$data_format} </select></td> </tr> <tr> <td class="label">{$lang.goods_cat}</td> <td><select name="cat" id="cat"> <option value="0">{$lang.select_please}</option> {$cat_list} </select></td> </tr> <tr> <td class="label">{$lang.file_charset}</td> <td><select name="charset" id="charset"> {html_options options=$lang_list} </select></td> </tr> <tr> <td class="label"> <a href="javascript:showNotice('noticeFile');" title="{$lang.form_notice}"><img src="images/notice.gif" width="21" height="21" border="0" alt="{$lang.form_notice}"></a> {$lang.csv_file}</td> <td><input name="file" type="file" size="40"> <br /> <span class="notice-span" {if $help_open}style="display:block" {else} style="display:none" {/if} id="noticeFile">{$lang.notice_file}</span></td> </tr> {foreach from=$download_list item=download key=charset} <tr> <td> </td> <td><a href="goods_batch.php?act=download&charset={$charset}">{$download}</a></td> </tr> {/foreach} <tr align="center"> <td colspan="2"><input name="submit" type="submit" id="submit" value="{$lang.button_submit}" class="button" /></td> </tr> </table> </form> <table width="100%"> <tr> <td> </td> <td width="80%">{$lang.use_help}</td> <td> </td> </tr> </table> </div> {insert_scripts files="../data/static/js/utils.js,./js/validator.js"} {literal} <script language="JavaScript"> var elements; onload = function() { // 文档元素对象 elements = document.forms['theForm'].elements; // 开始检查订单 startCheckOrder(); } /** * 检查是否底级分类 */ function checkIsLeaf(selObj) { if (selObj.options[selObj.options.selectedIndex].className != 'leafCat') { alert(goods_cat_not_leaf); selObj.options.selectedIndex = 0; } } /** * 检查输入是否完整 */ function formValidate() { if (elements['cat'].value <= 0) { alert(please_select_cat); return false; } if (elements['file'].value == '') { alert(please_upload_file); return false; } return true; } </script> {/literal} {include file="pagefooter.htm"}