<?xml version="1.0" encoding="UTF-8"?> <!-- $Author: copy from hec $Date: 2011-7-29 下午04:08:50 $Revision: 1.0 $Purpose: --> <a:screen xmlns:a="http://www.leaf-framework.org/application"> <a:init-procedure/> <a:view> <a:link id="downloadFile_id" url="${/request/@context_path}/uploadFile.lview"/> <script type="text/javascript"><![CDATA[ function downloadFile() { var url = $('downloadFile_id').getUrl() + '?table_name=INS500_INSURANCE${/parameter/@type}&header_id=3'; new Leaf.Window({ url: url, title: '导入模板', id: 'rsc_fin_tplt_ipt_id', width: 850, height: 400 }); } function saveClick(){ if (document.getElementById('importFile').value){ var fileName = document.getElementById('importFile').value; var fileType = fileName.substr(fileName.lastIndexOf(".")); /*if (fileType != '.xls'){ alert('请选择正确的导入文件!'); } else {*/ document.getElementById('importForm').submit(); //} } } ]]></script> <a:dataSets> <a:dataSet id="label_ds" autoCreate="true"> <a:fields> <!--<a:field name="label1" defaultValue="注意:"/>--> <a:field name="label2" defaultValue="1、 严格按照导入模板整理数据,检查必输事项是否缺少数据。"/> <a:field name="label3" defaultValue="2、 关闭Excel文件后,方可进行产品主数据导入。"/> <a:field name="label4" defaultValue="3、 本导入程序只支持Office Excel。"/> <a:field name="label5" defaultValue="仔细阅读上述事项,并检查确认无误。"/> <a:field name="label6" defaultValue="导入完毕后,请在系统内核实数据是否导入成功。"/> </a:fields> </a:dataSet> </a:dataSets> <a:fieldSet style="margin-left:10px;margin-top:10px;" title="导入注意事项" width="400"> <!--<a:label name="label1" bindTarget="label_ds" width="380"/>--> <!-- <a:label name="label7" bindTarget="label_ds" style="color:red;font-weight:bold;margin-left:10px;" width="380"/> --> <a:label name="label2" bindTarget="label_ds" style="margin-left:10px;" width="380"/> <a:label name="label3" bindTarget="label_ds" style="margin-left:10px;" width="380"/> <a:label name="label4" bindTarget="label_ds" style="margin-left:10px;" width="380"/> <a:label name="label5" bindTarget="label_ds" style="color:#055A78;font-weight:bold;margin-left:10px;" width="380"/> <a:label name="label6" bindTarget="label_ds" style="color:#055A78;font-weight:bold;margin-left:10px;" width="380"/> </a:fieldSet> <a:fieldSet style="margin-left:10px;margin-top:10px;" title="导入文件" width="400"> <form name="upload" id="importForm" action="${/request/@context_path}/modules/ins/INS550/ins_import_trans_upload.lview?batch_id=${/parameter/@batch_id}&function_code=${/parameter/@function_code}&import_type=${/parameter/@import_type}&type=${/parameter/@type}" enctype="multipart/form-data" method="post"> <a:hBox> <input name="CONTENT" id="importFile" style="font-size:15px" type="file"/> <input onclick="saveClick()" style="width:60px;height:23px" type="button" value="${l:TMPLT_IMPORT}"/> </a:hBox> <input onclick="downloadFile()" style="margin-left:3px;margin-top:10px;width:60px;height:23px" type="button" value="模板下载"/> </form> </a:fieldSet> </a:view> </a:screen>