...
|
...
|
@@ -169,8 +169,8 @@ class Business extends Base |
|
|
->join('verification_coupon d','c.verification_coupon_id=d.id')
|
|
|
->field($field)
|
|
|
->join('user e','c.user_id=e.id')
|
|
|
->where($where)
|
|
|
->whereOr($wheres)
|
|
|
->where($where)
|
|
|
->paginate($total, false, ['page' => $page])
|
|
|
->toArray();
|
|
|
$this->success('查询成功',$cancel);
|
...
|
...
|
@@ -206,9 +206,9 @@ class Business extends Base |
|
|
$order=Db::name('verification_order')
|
|
|
->alias('a')
|
|
|
->join('verification_activity b','a.verification_activity_id=b.id')
|
|
|
->where($where)
|
|
|
->whereOr($wheres)
|
|
|
->field($field)
|
|
|
->where($where)
|
|
|
->paginate($total, false, ['page' => $page])
|
|
|
->toArray();
|
|
|
foreach ($order['data'] as $key => $value) {
|
...
|
...
|
|