yangsai@163.com 8 months ago
parent ef98ad8a5d
commit 207726848d
  1. 2
      application/controllers/Api/Squirrel.php
  2. 1
      application/library/Ctrl/Api.php
  3. 9
      application/models/Squirrel.php

@ -255,7 +255,7 @@ class Api_SquirrelController extends Ctrl_Api{
Tool_Fnc::apiMsg('获取成功', '200',$return);
}
public function OperateAction(){
$params['squirrel_id'] = empty($this->POST['squirrel_id'])?Tool_Fnc::apiMsg('缺少小鼠id', '500'):$this->POST['squirrel_id'];
$params['id'] = empty($this->POST['id'])?Tool_Fnc::apiMsg('缺少小鼠id', '500'):$this->POST['id'];
}
}

@ -3,7 +3,6 @@
* api 基础类
*/
abstract class Ctrl_Api extends Yaf_Controller_Abstract{
//创建TOKEN
protected function creattoken($mid){
$tUMO = new UserModel;

@ -38,8 +38,8 @@ class SquirrelModel extends Orm_Base{
$father = $this->getOneInfo($val['father']);
$mother = $this->getOneInfo($val['mother']);
$val['sex'] = $val['sex']=1?'公':'母';
$val['father'] = empty($father)?'无':$father['number'];
$val['mother'] = empty($mother)?'无':$mother['number'];
$val['father'] = empty($father)?$val['father']:$father['number'];
$val['mother'] = empty($mother)?$val['mother']:$mother['number'];
//获取笼位号
$val['cage'] =$cageModel->getOneInfo($val['cage'])['number'];
}
@ -85,10 +85,11 @@ class SquirrelModel extends Orm_Base{
$date = strtotime(date('Y-m-d',time()));
$info = $this->field('nusring_time')->where("id={$squirrel}")->fRow();
if(strotime($info['nusring_time'])>$date){
$data['icon'] = Yaf_Registry::get("config")->psd->default->appsecret;
$data['icon'] = Yaf_Registry::get("config")->cangshu->url->small;
}else{
$data['icon'] = Yaf_Registry::get("config")->cangshu->url->big;
}
return $data;
}
}

Loading…
Cancel
Save