From 9f2f85ae183beff43f92f6570088633bfbf11424 Mon Sep 17 00:00:00 2001 From: yangqingyuan Date: Thu, 29 Aug 2024 09:35:44 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=E4=BF=AE=E5=A4=8D=E8=AE=A2?= =?UTF-8?q?=E5=8D=95=E8=AF=A6=E6=83=85=E5=8F=AA=E5=B1=95=E7=A4=BA=E4=B8=80?= =?UTF-8?q?=E6=9D=A1=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/yunxinwei/order/components/order-info.vue | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/views/yunxinwei/order/components/order-info.vue b/src/views/yunxinwei/order/components/order-info.vue index 05af00b..6773e8a 100644 --- a/src/views/yunxinwei/order/components/order-info.vue +++ b/src/views/yunxinwei/order/components/order-info.vue @@ -752,8 +752,7 @@ const getRenewOrder = () => { listOrderPay({ rentOrderId: order.orderId, payStatus: 20, - sort: ' create_time asc', - limit:1 + sort: ' create_time asc' }).then((data) => { renewOrderList.value = data; loading.value = false; @@ -762,8 +761,7 @@ const getRenewOrder = () => { listOrder({ rentOrderId: order.orderId, payStatus: 20, - sort: 'create_time asc', - limit:1 + sort: 'create_time asc' }).then((data) => { renewOrderList.value = data; loading.value = false; @@ -775,8 +773,7 @@ const getRenewOrder = () => { const getEquipmentRecordList = () => { EquipmentRecordApi.pageEquipmentRecord({ orderId: order.orderId, - userId: order.userId, - limit:1 + userId: order.userId }).then((data) => { EquipmentRecordList.value = data.list; });