...
|
...
|
@@ -70,11 +70,14 @@ class Client extends Base |
|
|
$activity_id=$this->postParam['id'];
|
|
|
$where['type']=1;
|
|
|
$where['verification_activity_id']=$activity_id;
|
|
|
$page = $this->request->post('page', 1);
|
|
|
$total = $this->request->post('total', 10);
|
|
|
|
|
|
$user=Db::name("verification_order")
|
|
|
->where($where)
|
|
|
->field('name,createtime')
|
|
|
->select();
|
|
|
->paginate($total, false, ['page' => $page])
|
|
|
->toArray();
|
|
|
if(!empty($user)){
|
|
|
for ($i=0;$i<count($user);$i++){
|
|
|
$sort=$i+1;
|
...
|
...
|
|