完善用户中心内容模块

This commit is contained in:
2020-04-15 17:07:05 +08:00
parent 10b40f0071
commit 1d4d785721
5 changed files with 79 additions and 13 deletions

View File

@@ -31,12 +31,16 @@ class Content extends Base {
* @return [type] [description]
*/
public function index() {
$param = $this->request->param();
if ($this->modelInfo['list_grid'] == '') {
return $this->error("列表定义不正确!", url('/user/model/edit', array('id' => $this->modelInfo['id'])));
}
$order = "id desc";
$map = [];
$map[] = ['uid', '=', session('userInfo.uid')];
if (isset($param['keyword']) && $param['keyword'] != '') {
$map[] = ['title', 'LIKE', '%'.$param['keyword'].'%'];
}
$list = $this->model->where($map)->order($order)->paginate($this->modelInfo['list_row'], false, array(
'query' => $this->request->param(),
@@ -48,7 +52,8 @@ class Content extends Base {
'page' => $list->render(),
'model_name' => $this->modelInfo['name'],
'model_id' => $this->modelInfo['id'],
'meta_title' => $this->modelInfo['title'].'列表'
'meta_title' => $this->modelInfo['title'].'列表',
'param' => $param
);
if ($this->modelInfo['template_list']) {
$template = 'user@content/' . $this->modelInfo['template_list'];
@@ -64,9 +69,34 @@ class Content extends Base {
*/
public function add() {
if ($this->request->isPost()) {
# code...
$data = $this->request->post();
$data['create_time'] = time();
$data['update_time'] = time();
$data['uid'] = session('userInfo.uid');
$result = $this->model->save($data);
if ($result) {
return $this->success("添加成功!", url('/user/'.$this->modelInfo['name'].'/index'));
} else {
return $this->error('添加失败!');
}
}else{
return $this->fetch();
$info = [
'model_name' => $this->modelInfo['name'],
'model_id' => $this->modelInfo['id']
];
$this->data = [
'info' => $info,
'fieldGroup' => Attribute::getField($this->modelInfo),
'meta_title' => $this->modelInfo['title'].'添加'
];
if ($this->modelInfo['template_add']) {
$template = 'user/content/' . $this->modelInfo['template_add'];
} else {
$template = 'user@/edit';
}
return $this->fetch($template);
}
}
@@ -74,11 +104,37 @@ class Content extends Base {
* @title 修改内容
* @return [type] [description]
*/
public function edit() {
public function edit($id) {
if ($this->request->isPost()) {
# code...
$data = $this->request->post();
$data['update_time'] = time();
$result = $this->model->save($data);
if ($result !== false) {
return $this->success("更新成功!", url('/user/'.$this->modelInfo['name'].'/index'));
} else {
return $this->error('修改失败!');
}
}else{
return $this->fetch();
if (!$id) {
return $this->error("非法操作!");
}
$info = $this->model->find($id);
if (!$info) {
return $this->error('无此数据!');
}
$info['model_id'] = $this->modelInfo['id'];
$this->data = array(
'info' => $info,
'fieldGroup' => Attribute::getField($this->modelInfo, 'edit'),
'meta_title' => $this->modelInfo['title'].'修改'
);
if ($this->modelInfo['template_edit']) {
$template = 'user/content/' . $this->modelInfo['template_edit'];
} else {
$template = 'user@/edit';
}
return $this->fetch('user@/edit');
}
}
@@ -87,5 +143,6 @@ class Content extends Base {
* @return [type] [description]
*/
public function del() {
return $this->error("无删除权限!");
}
}