初始版本
This commit is contained in:
78
application/views/settings/goods-list.php
Executable file
78
application/views/settings/goods-list.php
Executable file
@@ -0,0 +1,78 @@
|
||||
<?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{overflow-y:hidden;}
|
||||
.matchCon{width:280px;}
|
||||
#tree{background-color: #fff;width: 225px;border: solid #ddd 1px;margin-left: 5px;height:100%;}
|
||||
h3{background: #EEEEEE;border: 1px solid #ddd;padding: 5px 10px;}
|
||||
.grid-wrap{position:relative;}
|
||||
.grid-wrap h3{border-bottom: none;}
|
||||
#tree h3{border-style:none;border-bottom:solid 1px #D8D8D8;}
|
||||
.quickSearchField{padding :10px; background-color: #f5f5f5;border-bottom:solid 1px #D8D8D8;}
|
||||
#searchCategory input{width:165px;}
|
||||
.innerTree{overflow-y:auto;}
|
||||
#hideTree{cursor: pointer;color:#fff;padding: 0 4px;background-color: #B9B9B9;border-radius: 3px;position: absolute;top: 5px;right: 5px;}
|
||||
#hideTree:hover{background-color: #AAAAAA;}
|
||||
#clear{display:none;}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="wrapper">
|
||||
<div class="mod-search cf">
|
||||
<div class="fl">
|
||||
<ul class="ul-inline">
|
||||
<li>
|
||||
<input type="text" id="matchCon" class="ui-input ui-input-ph matchCon" value="按商品编号,商品名称,规格型号等查询">
|
||||
</li>
|
||||
<li><a class="ui-btn mrb" id="search">查询</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="fr"><a href="#" class="ui-btn ui-btn-sp mrb" id="btn-add">新增</a><!--<a href="#" class="ui-btn mrb" id="btn-print">打印</a>--><a class="ui-btn mrb" id="btn-disable">禁用</a><a class="ui-btn mrb" id="btn-enable">启用</a><a href="#" class="ui-btn mrb" id="btn-import">导入</a><a href="#" class="ui-btn mrb" id="btn-export">导出</a><a href="#" class="ui-btn" id="btn-batchDel">删除</a></div>
|
||||
</div>
|
||||
<div class="cf">
|
||||
<div class="grid-wrap fl cf">
|
||||
<h3>当前分类:<span id='currentCategory'></span><a href="javascript:void(0);" id='hideTree'>>></a></h3>
|
||||
<table id="grid">
|
||||
</table>
|
||||
<div id="page"></div>
|
||||
</div>
|
||||
<div class="fl cf" id='tree'>
|
||||
<h3>快速查询</h3>
|
||||
<div class="quickSearchField dn">
|
||||
<form class="ui-search" id="searchCategory">
|
||||
<input type="text" class="ui-input" /><button type="submit" title="点击搜索" >搜索</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script src="<?php echo base_url()?>statics/js/dist/goodsList.js?ver=20140430"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user