Files
EasySoft-ZenTaoPMS/module/common/view/noticeimport.html.php
2015-09-17 13:30:14 +08:00

29 lines
826 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog w-600px">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
</div>
<div class="modal-body">
<?php echo html::hidden('insert', '');?>
<div class='alert alert-info'><?php echo $lang->noticeImport;?></div>
</div>
</div>
</div>
</div>
<script>
$(function(){$("button[data-toggle='myModal']").click(function(){$('#myModal').modal('show')})});
function submitForm(type)
{
if(type == 'insert')
{
$('#insert').val('1');
}
else
{
$('#insert').val('0');
}
$("button[data-toggle='myModal']").parents('form').submit();
}
</script>