娄梦宁 3 년 전
부모
커밋
ad448a7d5e
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. +5
    -1
      application/admin/controller/CfRoomPlan.php

+ 5
- 1
application/admin/controller/CfRoomPlan.php 파일 보기

@@ -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]);


불러오는 중...
취소
저장