wugg 2 년 전
부모
커밋
d1f33492e8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/admin/controller/Payment.php

+ 1 - 1
app/admin/controller/Payment.php

@@ -52,7 +52,7 @@ class Payment extends BaseController
 //        }
         $page =  isset($post['page'])&&$post['page']!="" ? intval($post['page']) :1;
         $size =  isset($post['size'])&&$post['size']!="" ? intval($post['size']) :10;
-        $count = Db::name("pay_ment")->alias('b')
+        $count = Db::name("pay_payment")->alias('b')
             ->join("pay a","`a`.`payNo` = `b`.`payNo` AND  b.is_del = 0 ",'left')
             ->where($condition)->count();
         $total = ceil($count/$size)>1 ? ceil($count/$size) : 1;