# 低价二次开发 联系微信/电话17854945210 ``` <?php /*珍贵资源 请勿转卖*/ if (!defined('IN_IA')) { exit('Access Denied'); } class Log_EweiShopV2Page extends MobileLoginPage { public function main() { global $_W; global $_GPC; $_GPC['type'] = intval($_GPC['type']); include $this->template(); } public function get_list() { global $_W; global $_GPC; $shujv = pdo_fetchall("select * from ims_ewei_shop_member_credit_record where openid='{$_W['openid']}' and credittype='credit2' and num>0 order by createtime desc"); $list=array(); foreach ($shujv as $key => $value) { $list[$key]['createtime'] = date('Y-m-d H:i', $value['createtime']); $list[$key]['money'] = $value['num']; $list[$key]['rechargetype'] = "xiaofei"; $list[$key]['remark'] = $value['remark']; } show_json(1, array('list' => $list)); } } ?> ```