Files
erp-site/application/views/settings/assistingPropGroupManage.php
2026-04-19 01:39:41 +08:00

43 lines
1.2 KiB
PHP
Executable File

<?php $this->load->view('header');?>
<script type="text/javascript">
var DOMAIN = document.domain;
var WDURL = "";
var SCHEME= "<?php echo sys_skin()?>";
try{
document.domain = '<?php echo base_url()?>';
}catch(e){
}
//ctrl+F5 增加版本号来清空iframe的缓存的
$(document).keydown(function(event) {
/* Act on the event */
if(event.keyCode === 116 && event.ctrlKey){
var defaultPage = Public.getDefaultPage();
var href = defaultPage.location.href.split('?')[0] + '?';
var params = Public.urlParam();
params['version'] = Date.parse((new Date()));
for(i in params){
if(i && typeof i != 'function'){
href += i + '=' + params[i] + '&';
}
}
defaultPage.location.href = href;
event.preventDefault();
}
});
</script>
<style>
body{background: #fff;overflow-y: scroll;}
.manage-wrap{margin: 20px auto 10px;width: 230px;}
</style>
</head>
<body>
<div id="manage-wrap" class="manage-wrap">
<form id="manage-form" action="#">
<ul class="mod-form-rows cf" id="comboField">
</ul>
</form>
</div>
<script src="<?php echo base_url()?>/statics/js/dist/assistingPropGroupManage.js?ver=20150427"></script>
</body>
</html>