11
This commit is contained in:
parent
ad42e3f1c5
commit
1e841dfcff
@ -1989,18 +1989,19 @@ class Maintainentry extends BaseController
|
|||||||
{
|
{
|
||||||
// 分类标识
|
// 分类标识
|
||||||
$type = get_params('type_id');
|
$type = get_params('type_id');
|
||||||
if (empty($type)) {
|
$user_id = get_params('user_id');
|
||||||
|
if (empty($type) || empty($user_id)) {
|
||||||
$this->apiError('缺少参数');
|
$this->apiError('缺少参数');
|
||||||
} else {
|
} else {
|
||||||
$data = get_params();
|
$data = get_params();
|
||||||
// 判断是否存在
|
// 判断是否存在
|
||||||
$where['type_id'] = $type;
|
$where['type_id'] = $type;
|
||||||
$where['user_id'] = $this->request->uid;
|
$where['user_id'] = $user_id;
|
||||||
$is_have = Db::table('cms_planting_information')->where($where)->find();
|
$is_have = Db::table('cms_planting_information')->where($where)->find();
|
||||||
if($is_have){
|
if($is_have){
|
||||||
$this->apiError('请勿重复录入');
|
$this->apiError('请勿重复录入');
|
||||||
}
|
}
|
||||||
$data['user_id'] = $this->request->uid;
|
$data['user_id'] = $user_id;
|
||||||
$data['createtime'] = time();
|
$data['createtime'] = time();
|
||||||
$result = Db::table('cms_planting_information')->strict(false)->insert($data);
|
$result = Db::table('cms_planting_information')->strict(false)->insert($data);
|
||||||
if ($result) {
|
if ($result) {
|
||||||
@ -2024,7 +2025,6 @@ class Maintainentry extends BaseController
|
|||||||
$data = get_params();
|
$data = get_params();
|
||||||
// 判断是否存在
|
// 判断是否存在
|
||||||
$where['id'] = $id;
|
$where['id'] = $id;
|
||||||
$where['user_id'] = $this->request->uid;
|
|
||||||
$result = Db::table('cms_planting_information')->where($where)
|
$result = Db::table('cms_planting_information')->where($where)
|
||||||
->withAttr('createtime', function ($val,$data) {
|
->withAttr('createtime', function ($val,$data) {
|
||||||
return date('Y-m-d',$data['createtime']);
|
return date('Y-m-d',$data['createtime']);
|
||||||
@ -2051,7 +2051,6 @@ class Maintainentry extends BaseController
|
|||||||
$data = get_params();
|
$data = get_params();
|
||||||
// 判断是否存在
|
// 判断是否存在
|
||||||
$where['id'] = $id;
|
$where['id'] = $id;
|
||||||
$where['user_id'] = $this->request->uid;
|
|
||||||
$is_have = Db::table('cms_planting_information')->where($where)->find();
|
$is_have = Db::table('cms_planting_information')->where($where)->find();
|
||||||
if(!$is_have){
|
if(!$is_have){
|
||||||
$this->apiError('未找到该数据');
|
$this->apiError('未找到该数据');
|
||||||
@ -2073,11 +2072,12 @@ class Maintainentry extends BaseController
|
|||||||
{
|
{
|
||||||
// 分类标识
|
// 分类标识
|
||||||
$type = get_params('type_id'); //1农作物,2农机农具,3养殖物
|
$type = get_params('type_id'); //1农作物,2农机农具,3养殖物
|
||||||
if (empty($type)) {
|
$user_id = get_params('user_id');
|
||||||
|
if (empty($type) || empty($user_id)) {
|
||||||
$this->apiError('缺少参数');
|
$this->apiError('缺少参数');
|
||||||
} else {
|
} else {
|
||||||
$ids = Db::table('cms_planting_type')->where('pid',$type)->column('id') ??[];
|
$ids = Db::table('cms_planting_type')->where('pid',$type)->column('id') ??[];
|
||||||
$where['user_id'] = $this->request->uid;
|
$where['user_id'] = $user_id;
|
||||||
$page = get_params('page')??1;
|
$page = get_params('page')??1;
|
||||||
$limit = get_params('limit')??10;
|
$limit = get_params('limit')??10;
|
||||||
$order = get_params('order')??'id';
|
$order = get_params('order')??'id';
|
||||||
@ -2112,7 +2112,6 @@ class Maintainentry extends BaseController
|
|||||||
if (empty($id)) {
|
if (empty($id)) {
|
||||||
$this->apiError('缺少参数');
|
$this->apiError('缺少参数');
|
||||||
} else {
|
} else {
|
||||||
$where['user_id'] = $this->request->uid;
|
|
||||||
$where['id'] = $id;
|
$where['id'] = $id;
|
||||||
$result = Db::table('cms_planting_information')->where($where)->delete();
|
$result = Db::table('cms_planting_information')->where($where)->delete();
|
||||||
if ($result) {
|
if ($result) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user