| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- <?php
- namespace app\common\model;
- use think\Db;
- class Annex extends Base {
- // 设置数据表(不含前缀)
- protected $name = 'annex';
- // 定义时间戳字段名
- protected $createTime = '';
- protected $updateTime = '';
- // 自动完成
- protected $auto = [];
- protected $insert = [];
- protected $update = [];
- public function countData($where)
- {
- $total = $this->where($where)->count();
- return $total;
- }
- public function listData($where,$order,$page=1,$limit=20,$start=0,$field='*',$addition=1,$totalshow=1)
- {
- $page = $page > 0 ? (int)$page : 1;
- $limit = $limit ? (int)$limit : 20;
- $start = $start ? (int)$start : 0;
- if(!is_array($where)){
- $where = json_decode($where,true);
- }
- $limit_str = ($limit * ($page-1) + $start) .",".$limit;
- if($totalshow==1) {
- $total = $this->where($where)->count();
- }
- $list = Db::name('Annex')->field($field)->where($where)->order($order)->limit($limit_str)->select();
- return ['code'=>1,'msg'=>lang('data_list'),'page'=>$page,'pagecount'=>ceil($total/$limit),'limit'=>$limit,'total'=>$total,'list'=>$list];
- }
- public function infoData($where,$field='*')
- {
- if(empty($where) || !is_array($where)){
- return ['code'=>1001,'msg'=>lang('param_err')];
- }
- $info = $this->field($field)->where($where)->find();
- if (empty($info)) {
- return ['code' => 1002, 'msg' => lang('obtain_err')];
- }
- $info = $info->toArray();
- return ['code'=>1,'msg'=>lang('obtain_ok'),'info'=>$info];
- }
- public function saveData($data)
- {
- $validate = \think\Loader::validate('Annex');
- if(!$validate->check($data)){
- return ['code'=>1001,'msg'=>lang('param_err').':'.$validate->getError() ];
- }
- if(!empty($data['annex_id'])){
- $where=[];
- $where['annex_id'] = ['eq',$data['annex_id']];
- $res = $this->allowField(true)->where($where)->update($data);
- }
- else{
- $data['annex_time'] = time();
- $res = $this->allowField(true)->insert($data);
- }
- if(false === $res){
- return ['code'=>1002,'msg'=>lang('save_err').':'.$this->getError() ];
- }
- return ['code'=>1,'msg'=>lang('save_ok')];
- }
- public function delData($where)
- {
- $list = $this->listData($where,'',1,9999);
- if($list['code'] !==1){
- return ['code'=>1001,'msg'=>lang('del_err').':'.$this->getError() ];
- }
- $path = './';
- foreach($list['list'] as $k=>$v){
- if (stripos($v['annex_file'], '../') !== false) {
- continue;
- }
- $pic = $path.$v['annex_file'];
- if(file_exists($pic) && (substr($pic,0,8) == "./upload") || count( explode("./",$pic) ) ==1){
- unlink($pic);
- }
- }
- $res = $this->where($where)->delete();
- if($res===false){
- return ['code'=>1001,'msg'=>lang('del_err').':'.$this->getError() ];
- }
- return ['code'=>1,'msg'=>lang('del_ok')];
- }
- public function fieldData($where,$col,$val)
- {
- if(!isset($col) || !isset($val)){
- return ['code'=>1001,'msg'=>lang('param_err')];
- }
- $data = [];
- $data[$col] = $val;
- $res = $this->allowField(true)->where($where)->update($data);
- if($res===false){
- return ['code'=>1001,'msg'=>lang('set_err').':'.$this->getError() ];
- }
- return ['code'=>1,'msg'=>lang('set_ok')];
- }
- }
|