信呼OA版本v2.3.8

This commit is contained in:
雨中磐石
2022-08-14 16:47:40 +08:00
parent 4640677d27
commit e3fcd913e3
1405 changed files with 133635 additions and 73 deletions

View File

@@ -0,0 +1,52 @@
<?php if(!defined('HOST'))die('not access');?>
<script >
$(document).ready(function(){
var a = $('#view_{rand}').bootstable({
tablename:'seal',celleditor:true,fanye:true,dir:'asc',sort:'sort',
columns:[{
text:'电子章图片',dataIndex:'sealimg',renderer:function(v){
var s='&nbsp;';
if(!isempt(v))s='<img src="'+v+'" width="80">';
return s;
}
},{
text:'印章名称',dataIndex:'name',align:'left'
},{
text:'印章类型',dataIndex:'type'
},{
text:'保管人',dataIndex:'bgname'
},{
text:'排序号',dataIndex:'sort',editor:true
},{
text:'说明',dataIndex:'explain'
},{
text:'',dataIndex:'caozuo'
}]
});
var c = {
clickwin:function(){
openinput('印章','seal');
}
};
bootstableobj['seal']=a;
js.initbtn(c);
});
</script>
<div>
<table width="100%"><tr>
<td style="padding-right:10px">
<button class="btn btn-primary" click="clickwin,0" type="button"><i class="icon-plus"></i> 新增</button>
</td>
<td style="padding-left:10px">
</td>
<td width="80%"></td>
<td align="right" nowrap>
</td>
</tr></table>
</div>
<div class="blank10"></div>
<div id="view_{rand}"></div>