Commit b4c2385d authored by hujun's avatar hujun

10

parent 3c464867
...@@ -2505,7 +2505,7 @@ class OfficePayLog extends Basic ...@@ -2505,7 +2505,7 @@ class OfficePayLog extends Basic
$pageNo = empty($this->params['pageNo']) ? 1 : $this->params['pageNo']; $pageNo = empty($this->params['pageNo']) ? 1 : $this->params['pageNo'];
$pageSize = empty($this->params['pageSize']) ? 10 : $this->params['pageSize']; $pageSize = empty($this->params['pageSize']) ? 10 : $this->params['pageSize'];
$data = []; $data = [];
$where['a.type'] = 10;
$where['a.is_del'] = 0; $where['a.is_del'] = 0;
$where['a.source'] = ['<', 2]; $where['a.source'] = ['<', 2];
$msg = ''; $msg = '';
......
...@@ -14,6 +14,11 @@ use app\model\OPayLogModel; ...@@ -14,6 +14,11 @@ use app\model\OPayLogModel;
class PayLog extends Basic class PayLog extends Basic
{ {
/**
* 意向金预警
*
* @return \think\Response
*/
public function intentionsWarning() public function intentionsWarning()
{ {
if (!$this->request->isAjax()) { if (!$this->request->isAjax()) {
...@@ -24,6 +29,7 @@ class PayLog extends Basic ...@@ -24,6 +29,7 @@ class PayLog extends Basic
$pageSize = empty($this->params['pageSize']) ? 10 : $this->params['pageSize']; $pageSize = empty($this->params['pageSize']) ? 10 : $this->params['pageSize'];
$data = []; $data = [];
$where['a.type'] = 10;
$where['a.is_del'] = 0; $where['a.is_del'] = 0;
$where['a.source'] = ['<', 2]; $where['a.source'] = ['<', 2];
$msg = ''; $msg = '';
......
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