娄梦宁 3 years ago
parent
commit
ad448a7d5e
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      application/admin/controller/CfRoomPlan.php

+ 5
- 1
application/admin/controller/CfRoomPlan.php View File

@@ -51,12 +51,16 @@ class CfRoomPlan extends Backend
public function getList(){
$name=$this->request->post('name');
$keyValue=$this->request->post('keyValue');
$this->model->field('id,plan_name as name,purchase_user_id');
$this->model->field('id,plan_name as name,purchase_user_id,plan_memo');
if($keyValue){
$this->model->where(['id'=>$keyValue]);
}elseif($name){
$this->model->where(['plan_name'=>['like','%'.$name.'%']]);
}
$roomId =$this->request->get('room_id');
if ($roomId){
$this->model->where("room_id","=",$roomId);
}
$result= $this->model->select();
if($keyValue){
return json(['list' => $result]);


Loading…
Cancel
Save