zentaopms/extension/biz/testcase/ext/view/exporttemplate.html.php
2023-05-16 10:50:42 +08:00

41 lines
1.5 KiB
PHP

<?php include $app->getModuleRoot() . 'common/view/header.lite.html.php';?>
<script>
function setDownloading()
{
if(navigator.userAgent.toLowerCase().indexOf("opera") > -1) return true; // Opera don't support, omit it.
$.cookie('downloading', 0);
time = setInterval("closeWindow()", 300);
return true;
}
function closeWindow()
{
if($.cookie('downloading') == 1)
{
parent.$.closeModal(null, 'this');
$.cookie('downloading', null);
clearInterval(time);
}
}
</script>
<div id='mainContent' class='main-content'>
<div class='main-header'>
<h2><?php echo $lang->testcase->exportTemplate;?></h2>
</div>
<form method='post' target='hiddenwin' onsubmit='setDownloading();' style='padding: 20px 5%'>
<table class='table table-form'>
<tr>
<th class='w-120px'><?php echo $lang->testcase->num;?></th>
<td class='w-80px'><?php echo html::input('num', '10', "class='form-control'");?></td>
<td class='w-100px'><?php echo html::select('fileType', array('xlsx' => 'xlsx', 'xls' => 'xls'), 'xlsx', "class='form-control'");?>
<td>
<?php echo html::submitButton('', '', 'btn btn-primary');?>
<?php echo html::a(inlink('ajaxSelectStory', "productID=$productID", '', true) . "#app={$app->tab}", $lang->testcase->selectStory, '', "class='btn btn-wide'");?>
</td>
</tr>
</table>
</form>
</div>
<?php include $app->getModuleRoot() . 'common/view/footer.lite.html.php';?>