Commit aebc8e51 authored by clone's avatar clone

财务修改日志

parent 881b12d0
......@@ -50,8 +50,32 @@ class User extends Basic
public function searchUser(){
$params = $this->params;
$params = array(
""
"yetai" => "休闲娱乐",
"area_start" => 45,//面积起始范围 room_area2
"area_end" => 65,//面积结束范围
"money_start" => 1000,//租金 price2
"money_end" => 10000,//租金
"start_time" => "2018-05-25",
"end_time" => "2018-05-30",
"pageNo" => "1",
"pageSize" => 15
);
$params = $this->params;
$field = "a.id,a.agent_id,a.title,a.address,a.city,disc,a.disccircles,a.sales,a.yetai,a.room_area,a.room_area2,
a.shangpu_type,a.is_test,a.room_num_left,a.shangpu_tags,a.carefully_chosen,a.price,a.rent_type,b.foreign_name,b.address_detail_c,
b.foreign_advantage";
$conditions = [];
if (empty($params['site_area'])) {
return $this->response("101", "请求来源不能为空");
}
$pageNo = empty($params['pageNo']) ? 1 : $params['pageNo'];
$pageSize = empty($params['pageSize']) ? 15 : $params['pageSize'];
if (isset($params['title'])) {
$conditions['b.foreign_name'] = array( "like", "%" . trim($params['title']) . "%" );
}
}
}
\ No newline at end of file
......@@ -1060,4 +1060,8 @@ class Finance extends Basic
return $this->response($code, $msg);
}
public function financeUpdateLog(){
return view('finance/finance_update_log');
}
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
111111
</body>
</html>
\ No newline at end of file
......@@ -232,6 +232,7 @@ Route::group('index', [
'checkOver' => ['index/Finance/checkOver', [ 'method' => 'POST' ] ], //财务结单
'getTaxesById' => ['index/Finance/getTaxesById', [ 'method' => 'POST|GET' ] ], //财务结单
'financeUpdateLog' => ['index/Finance/financeUpdateLog', [ 'method' => 'POST|GET' ] ], //财务结单
]);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment