From 640cb01bbbd362b905029b296e29b044a79664dc Mon Sep 17 00:00:00 2001 From: zhengyongxing Date: Thu, 26 Nov 2020 14:24:23 +0800 Subject: [PATCH] =?UTF-8?q?12=E6=9C=88=E5=8A=9F=E8=83=BD=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Payment/Controller/PaymentController.class.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/Application/Payment/Controller/PaymentController.class.php b/Application/Payment/Controller/PaymentController.class.php index a58882546..8315f4616 100644 --- a/Application/Payment/Controller/PaymentController.class.php +++ b/Application/Payment/Controller/PaymentController.class.php @@ -379,6 +379,19 @@ class PaymentController extends BaseController ->page($page,$row) ->select(); + foreach ($payment_menber as $key => $value) { + + $payment_menber[$key]['is_payment_str'] = $value['is_payment'] == 1?"是":"否"; + + } + + $count = M("payment_member")->where($map)->count(); + + $page = set_pagination_all($count['count'], $row); + if ($page) { + $this->assign('_page', $page); + } + $this->assign("data",$payment_menber); $this->getAccountMoney(); $this->meta_title = '复核账号';