You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.0 KiB
PHTML
31 lines
1.0 KiB
PHTML
9 years ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>信息平台</title>
|
||
|
<link rel="stylesheet" href="/css/information-system3.css?v=201508112" type="text/css" />
|
||
|
<script type="text/javascript" src="/js/information-system3.min.js?v=201509222"></script>
|
||
|
<link rel="shortcut icon" href="/bootstrap/img/glyphicons_290_skull.png">
|
||
|
|
||
|
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
|
||
|
<div class="container-fluid">
|
||
|
<div class="row">
|
||
|
<div class="col-sm-6"></div>
|
||
|
<div id="form_container" class="col-sm-12"></div>
|
||
|
<div class="col-sm-6"></div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<script type="text/javascript">
|
||
|
$(function() {
|
||
|
$.post('<?php echo site_url('/thirdparty/form/call/call_form'); ?>', {"form_sn": "<?php echo $form_data->form_sn; ?>"}, function(htmls) {
|
||
|
$("#form_container").html(htmls);
|
||
|
});
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
|
||
|
</body></html>
|