信呼OA版本v2.3.8
This commit is contained in:
46
webmain/system/city/cityAction.php
Normal file
46
webmain/system/city/cityAction.php
Normal file
@@ -0,0 +1,46 @@
|
||||
<?php
|
||||
class cityClassAction extends Action
|
||||
{
|
||||
//数据源
|
||||
public function getdataAjax()
|
||||
{
|
||||
$id = $this->post('id');
|
||||
if(isempt($id))$id='1';
|
||||
$id = (int)$id;
|
||||
$dbs = m('city');
|
||||
$rows = $dbs->getrows('pid='.$id.'','*','`sort`,`id`');
|
||||
$patha = $dbs->getpath($id);
|
||||
$type = $dbs->getmou('type', $id);
|
||||
if(isempt($type))$type=-1;
|
||||
$ntype = (int)$type+1;
|
||||
if($ntype==0)$id = 0; //顶级
|
||||
return array(
|
||||
'type' => $ntype,
|
||||
'pid' => $id,
|
||||
'rows' => $rows,
|
||||
'path' => $patha,
|
||||
);
|
||||
}
|
||||
|
||||
//删除
|
||||
public function deldataAjax()
|
||||
{
|
||||
$id = (int)$this->post('id','0');
|
||||
$to = m('city')->rows("`pid`='$id'");
|
||||
if($to>0)return returnerror('有'.$to.'条下级不能删除');
|
||||
m('city')->delete($id);
|
||||
return returnsuccess();
|
||||
}
|
||||
|
||||
//从官网获取城市数据
|
||||
public function initdataAjax()
|
||||
{
|
||||
c('cache')->del('cityalldata');
|
||||
return m('city')->daorudata();
|
||||
}
|
||||
|
||||
public function clearchaheAjax()
|
||||
{
|
||||
c('cache')->del('cityalldata');
|
||||
}
|
||||
}
|
||||
139
webmain/system/city/rock_city.php
Normal file
139
webmain/system/city/rock_city.php
Normal file
@@ -0,0 +1,139 @@
|
||||
<?php if(!defined('HOST'))die('not access');?>
|
||||
<script >
|
||||
$(document).ready(function(){
|
||||
var type = 0,pid=0;
|
||||
var a = $('#veiw_{rand}').bootstable({
|
||||
tablename:'city',celleditor:true,sort:'sort',dir:'asc',url:js.getajaxurl('getdata','{mode}','{dir}'),
|
||||
columns:[{
|
||||
text:'名称',dataIndex:'name',editor:true,align:'left'
|
||||
},{
|
||||
text:'拼音',dataIndex:'pinyin',editor:true,sortable:true
|
||||
},{
|
||||
text:'拼音简称',dataIndex:'pinyins',editor:true
|
||||
},{
|
||||
text:'排序号',dataIndex:'sort',editor:true,sortable:true
|
||||
},{
|
||||
text:'级别',dataIndex:'type'
|
||||
},{
|
||||
text:'ID',dataIndex:'id',sortable:true
|
||||
},{
|
||||
text:'上级ID',dataIndex:'pid'
|
||||
},{
|
||||
text:'',dataIndex:'opt',renderer:function(v,d){
|
||||
return '<a href="javascript:;" onclick="opensho{rand}('+d.id+')">打开</a>';
|
||||
}
|
||||
}],
|
||||
itemclick:function(){
|
||||
btn(false);
|
||||
},
|
||||
load:function(ds){
|
||||
var darr = ds.path;
|
||||
var s = '<a href="javascript:;" onclick="opensho{rand}(0)">顶级</a>';
|
||||
for(var i=0;i<darr.length;i++){
|
||||
s+='/<a href="javascript:;" onclick="opensho{rand}('+darr[i].id+')">'+darr[i].name+'</a>';
|
||||
}
|
||||
$('#path_{rand}').html(s);
|
||||
type = ds.type;
|
||||
pid = ds.pid;
|
||||
btn(true);
|
||||
},
|
||||
beforeload:function(){
|
||||
btn(true);
|
||||
}
|
||||
});
|
||||
|
||||
var c = {
|
||||
del:function(){
|
||||
a.del({url:js.getajaxurl('deldata','{mode}','{dir}')});
|
||||
},
|
||||
open:function(id){
|
||||
a.setparams({id:id}, true);
|
||||
},
|
||||
clickwin:function(o1,lx){
|
||||
var h = $.bootsform({
|
||||
title:'城市',height:300,width:400,
|
||||
tablename:'city',isedit:lx,
|
||||
submitfields:'name,pinyin,pinyins,type,pid',
|
||||
items:[{
|
||||
labelText:'名称',name:'name',required:true
|
||||
},{
|
||||
labelText:'拼音',name:'pinyin'
|
||||
},{
|
||||
labelText:'拼音简称',name:'pinyins'
|
||||
},{
|
||||
labelText:'',name:'type',type:'hidden'
|
||||
},{
|
||||
labelText:'',name:'pid',type:'hidden'
|
||||
},{
|
||||
labelText:'序号',name:'sort',type:'number',value:'0'
|
||||
}],
|
||||
success:function(){
|
||||
a.reload();
|
||||
}
|
||||
});
|
||||
h.setValue('type', type);
|
||||
h.setValue('pid', pid);
|
||||
if(lx==1){
|
||||
h.setValues(a.changedata);
|
||||
}
|
||||
h.getField('name').focus();
|
||||
},
|
||||
refresh:function(){
|
||||
a.reload();
|
||||
},
|
||||
initdata:function(o1){
|
||||
js.msg('wait','处理中...');
|
||||
o1.disabled=true;
|
||||
js.ajax(js.getajaxurl('initdata','{mode}','{dir}'),false,function(ret){
|
||||
if(ret.success){
|
||||
js.msg('success', ret.data);
|
||||
a.reload();
|
||||
}else{
|
||||
o1.disabled=false;
|
||||
js.msg('msg', ret.msg);
|
||||
}
|
||||
},'get,json');
|
||||
},
|
||||
clearchahe:function(){
|
||||
js.ajax(js.getajaxurl('clearchahe','{mode}','{dir}'),false,function(ret){
|
||||
js.msg('success', '已清除');
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
function btn(bo){
|
||||
get('del_{rand}').disabled = bo;
|
||||
get('edit_{rand}').disabled = bo;
|
||||
}
|
||||
js.initbtn(c);
|
||||
opensho{rand}=function(id){
|
||||
c.open(id);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
<div>
|
||||
|
||||
<table width="100%"><tr>
|
||||
<td nowrap>
|
||||
<button class="btn btn-primary" click="clickwin,0" type="button"><i class="icon-plus"></i> 新增</button>
|
||||
<button class="btn btn-default" click="refresh" type="button"><i class="icon-refresh"></i> 刷新</button>
|
||||
<button class="btn btn-default" click="initdata" type="button">导入数据</button>
|
||||
</td>
|
||||
|
||||
<td width="80%">
|
||||
当前路径:<span id="path_{rand}"></span>
|
||||
</td>
|
||||
<td align="right" nowrap>
|
||||
|
||||
<button class="btn btn-default" click="clearchahe" type="button">清除城市数据缓存</button>
|
||||
<button class="btn btn-danger" id="del_{rand}" click="del" disabled type="button"><i class="icon-trash"></i> 删除</button>
|
||||
<button class="btn btn-info" id="edit_{rand}" click="clickwin,1" disabled type="button"><i class="icon-edit"></i> 编辑 </button>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="blank10"></div>
|
||||
<div id="veiw_{rand}"></div>
|
||||
<div class="tishi"></div>
|
||||
Reference in New Issue
Block a user