作者 anyv
1 个管道 的构建 通过 耗费 0 秒

联系人

... ... @@ -16,7 +16,18 @@ class ContactsController extends AdminBaseController{
}
//获取联系人信息
public function consel(){
$id = input('post.id');
$data = Db::name('contacts') -> where('id',$id) -> find();
if($data){
return json_encode($data);
}else{
return false;
}
}
}
... ...
... ... @@ -45,7 +45,14 @@
//当点击查看时
function chakan(id){
alert(id);
$.post("{:url('Contacts/consel')}", {id:id}, function(data) {
if(data){
shuju = JSON.parse(data);
console.log(shuju);
}else{
alert('查询错误');
}
});
}
</script>
... ...