fix:修复订单详情只展示一条问题
This commit is contained in:
@@ -752,8 +752,7 @@ const getRenewOrder = () => {
|
|||||||
listOrderPay({
|
listOrderPay({
|
||||||
rentOrderId: order.orderId,
|
rentOrderId: order.orderId,
|
||||||
payStatus: 20,
|
payStatus: 20,
|
||||||
sort: ' create_time asc',
|
sort: ' create_time asc'
|
||||||
limit:1
|
|
||||||
}).then((data) => {
|
}).then((data) => {
|
||||||
renewOrderList.value = data;
|
renewOrderList.value = data;
|
||||||
loading.value = false;
|
loading.value = false;
|
||||||
@@ -762,8 +761,7 @@ const getRenewOrder = () => {
|
|||||||
listOrder({
|
listOrder({
|
||||||
rentOrderId: order.orderId,
|
rentOrderId: order.orderId,
|
||||||
payStatus: 20,
|
payStatus: 20,
|
||||||
sort: 'create_time asc',
|
sort: 'create_time asc'
|
||||||
limit:1
|
|
||||||
}).then((data) => {
|
}).then((data) => {
|
||||||
renewOrderList.value = data;
|
renewOrderList.value = data;
|
||||||
loading.value = false;
|
loading.value = false;
|
||||||
@@ -775,8 +773,7 @@ const getRenewOrder = () => {
|
|||||||
const getEquipmentRecordList = () => {
|
const getEquipmentRecordList = () => {
|
||||||
EquipmentRecordApi.pageEquipmentRecord({
|
EquipmentRecordApi.pageEquipmentRecord({
|
||||||
orderId: order.orderId,
|
orderId: order.orderId,
|
||||||
userId: order.userId,
|
userId: order.userId
|
||||||
limit:1
|
|
||||||
}).then((data) => {
|
}).then((data) => {
|
||||||
EquipmentRecordList.value = data.list;
|
EquipmentRecordList.value = data.list;
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user