$withdraw_obj->setWhere(' withdraw_id in (' . $ids . ') ');
                $withdraw_arr = $withdraw_obj->query_keke_witkey_withdraw();
                foreach ($withdraw_arr as $k => $v) {
                    if ($v[withdraw_status] == 1) {
                        $fee = $v['withdraw_cash'] - keke_finance_class::get_to_cash($v['withdraw_cash']);
                        db_factory::execute(sprintf(' update %switkey_withdraw set fee=%.2f where withdraw_id=%d', TABLEPRE, $fee, $v['withdraw_id']));
                        $v_arr = array('网站名称' => $_K['sitename'], '提现方式' => $pay_way[$v['pay_type']], '帐户' => $v['pay_account'], '提现金额' => $v['withdraw_cash']);
                        keke_msg_class::notify_user($v['uid'], $v['username'], 'draw_success', $_lang['withdraw_success'], $v_arr);
                        $feed_arr = array("feed_username" => array("content" => $v['username'], "url" => "index.php?do=seller&id=" . $space_info['uid']), "action" => array("content" => $_lang['withdraw'], "url" => ""), "event" => array("content" => $_lang['withdraw_le'] . $v['withdraw_cash'] . $_lang['yuan'], "url" => ""));
                        kekezu::save_feed($feed_arr, $user_space_info['uid'], $user_space_info['username'], 'withdraw');
                        $withdraw_obj = new Keke_witkey_withdraw_class();
                        $withdraw_obj->setWhere(' withdraw_id in (' . $ids . ') ');
                        $withdraw_obj->setWithdraw_status(2);
                        $withdraw_obj->setProcess_uid($admin_info['uid']);
                        $withdraw_obj->setProcess_username($admin_info['username']);
                        $withdraw_obj->setProcess_time(time());
                        $withdraw_obj->edit_keke_witkey_withdraw();
                    }
                }
                kekezu::admin_system_log($_lang['audit_withdraw_apply'] . $ids);
                break;
        }
        kekezu::admin_show_msg($_lang['mulit_operate_success'], 'index.php?do=' . $do . '&view=' . $view, 3, '', 'success');
    } else {
        kekezu::admin_show_msg($_lang['choose_operate_item'], 'index.php?do=' . $do . '&view=' . $view, 3, '', 'warning');
    }
} elseif ($type == 'batch' && $pay_type == 'alipayjs') {
    $payment_config = kekezu::get_payment_config('alipayjs');
    require S_ROOT . "/payment/alipayjs/order.php";
    $detail_data = db_factory::query(sprintf(" select withdraw_id,pay_account,pay_username,withdraw_cash, fee,uid from %switkey_withdraw where withdraw_id in (%s) and withdraw_status='1'", TABLEPRE, $ids));
    echo get_batch_url($payment_config, $detail_data, 'url');