1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?php
- namespace app\common\model;
- use app\hander\HelpHander;
- use think\Db;
- use think\Exception;
- use think\Model;
- class UserFamily extends Model
- {
- public function add(){
- $data = [
- 'id' => input('id/d',0),
- 'user_id' => input('uid/d',0),
- 'start' => input('start','','trim'),
- 'end' => input('end','','trim'),
- 'name' => input('name','','trim'),
- 'phone' => input('phone','','trim'),
- 'birthday' => input('birthday',null,'trim'),
- 'political' => input('political','','trim'),
- 'company' => input('company','','trim'),
- 'relation' => input('relation','','trim'),
- 'position' => input('position','','trim'),
- ];
- $result = validate('UserFamily')->check($data,[],'');
- if(true !== $result){
- HelpHander::error(validate('UserFamily')->getError());
- }
- $id = $data['id'];
- unset($data['id']);
- if($id > 0){
- $data['update_time'] = date('Y-m-d H:i:s');
- $ret = $this->allowField(true)->save($data,['id'=>$id]);
- }else{
- $data['create_time'] = date('Y-m-d H:i:s');
- $ret = $this->allowField(true)->save($data);
- }
- if(!$ret){
- HelpHander::error('操作失败');
- }
- return true;
- }
- public function info($id){
- $info = $this->where('id',$id)->find();
- if(!$info){
- HelpHander::error('数据不存在');
- }
- $data = $info->toArray();
- return $data;
- }
- public function lists($page,$size,$uid){
- $lists = Db::name('user_family')
- ->where('user_id',$uid)
- ->page($page,$size)
- ->order('id desc')
- ->select();
- $total = Db::name('user_family')->where('user_id',$uid)->count();
- $data = [
- 'total' => $total,
- 'list' => $lists?$lists:[]
- ];
- return $data;
- }
- public function del($id){
- $ret = $this->where('id',$id)->delete();
- if(!$ret){
- HelpHander::error('删除失败');
- }
- return true;
- }
- }
|