Commit b4c2385d authored by hujun's avatar hujun

10

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