diff --git a/src/pages/Order/Order/index.tsx b/src/pages/Order/Order/index.tsx
index d3e28e7..910efc2 100644
--- a/src/pages/Order/Order/index.tsx
+++ b/src/pages/Order/Order/index.tsx
@@ -695,8 +695,6 @@ const OrderPage = () => {
      * @param optRecord
      */
     function getOrderStatusTag(optRecord: any): import('react').ReactNode {
-      console.log(optRecord, '5656optRecord');
-
       const orderStatus = optRecord.orderStatus;
       const paymentMethod = optRecord.paymentMethod;
       let orderStatusTagText = enumValueToLabel(
@@ -4606,7 +4604,6 @@ const OrderPage = () => {
     ) {
       setOpenCount(true);
       setOpen(true);
-      console.log(openCount, '5656openindex');
     }
     setInvoiceWarningNum(res.data.waitConfirmInvoice);
     setInvoiceRefundWarningNum(res.data.waitConfirmReceipt);
diff --git a/src/pages/Order/OrderWarning/index.tsx b/src/pages/Order/OrderWarning/index.tsx
index 5b97b22..bb70e69 100644
--- a/src/pages/Order/OrderWarning/index.tsx
+++ b/src/pages/Order/OrderWarning/index.tsx
@@ -4171,7 +4171,6 @@ const OrderPage = () => {
     const formattedDate = format(newDate, 'yyyy-MM-dd HH:mm:ss');
     setCalDate(formattedDate);
     setValue1(value);
-    console.log(formattedDate, '5656formattedDate/value', value);
   };
   const [invoiceWarningNum, setInvoiceWarningNum] = useState(0);
   const [invoiceRefundWarningNum, setInvoiceRefundWarningNum] = useState(0);
@@ -4384,7 +4383,6 @@ const OrderPage = () => {
           let finalParams = {
             ...params,
           };
-          console.log(5656);
           if (value1 === 0) {
             // const currentDate = new Date();
             // const newDate = new Date(currentDate);
@@ -4430,17 +4428,16 @@ const OrderPage = () => {
             // } else {
             //   params.applyTimeLe = calDate;
             // }
-            params.applyTimeIsNotNull = true; // 要求申请时间非空
+            // params.applyTimeIsNotNull = true; // 要求申请时间非空
             params.salesCode = userInfo.username;
             params.warningStatus = 'invoiceConfirmWarning'; // 发票确认预警
             params.isDeleteQueryOrder = false; // 强制查询非作废订单
-            params.paymentMethod = 'UNPAID';
+            // params.paymentMethod = 'UNPAID';
             finalParams = {
               ...params,
               invoicingEndTime: calDate,
             };
           } else if (activeTabKey === 4) {
-            console.log(value1, 56564);
             params.warningStatus = 'paymentReceiptStatusWarning'; // 用于回款预警
             if (calDate === 'null') {
               params.applyTimeLe = null;
@@ -4455,8 +4452,6 @@ const OrderPage = () => {
             };
           }
 
-          console.log(params, '5656params');
-
           //保存这个搜索条件
           setSearchParam(params);
           const { data } = await postServiceOrderQueryServiceOrder({