From f8890558669e7802772813ec14dceaf86d71be50 Mon Sep 17 00:00:00 2001 From: "1054425342@qq.com" <1054425342@qq.com> Date: Sat, 23 Aug 2025 16:14:54 +0800 Subject: [PATCH] =?UTF-8?q?=E5=81=87=E6=95=B0=E6=8D=AE=E5=AF=B9=E6=8E=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/index/iSoul.vue | 31 ++++++++++++++++++++++++++++--- 1 file changed, 28 insertions(+), 3 deletions(-) diff --git a/pages/index/iSoul.vue b/pages/index/iSoul.vue index 7983da4..b038f31 100644 --- a/pages/index/iSoul.vue +++ b/pages/index/iSoul.vue @@ -157,7 +157,10 @@ - 待使用 + + 待使用 + + 待收货 @@ -374,7 +377,8 @@ export default { exchangeCode: "", // 兑换码 memorialItems: [], assetList: [], - agentList:[] + agentList:[], + orderStatus:[] }; }, onLoad() { @@ -391,12 +395,33 @@ export default { this.getOrderChildList(); this.getUserInfo(); this.getAgentList() + this.getOrderStatus() } }, methods: { + getOrderStatus(){ + + this.Post({}, "/framework/order/orderCountByStatus", "DES").then((res) => { + this.orderStatus = res.data + }); + }, getAgentList(){ this.Post({}, "/framework/agent/purchaseList", "DES").then((res) => { - this.agentList = res.data + this.agentList = [ + { + headImage: + "https://epic.js-dyyj.com/uploads/20250728/d27ef6e6c26877da7775664fed376c6f.png", + name:'文徵明', + status:0 + }, + { + headImage: + "https://epic.js-dyyj.com/uploads/20250728/d7bf0dd2f3f272afba687b525a7c575c.png", + name:'颜真卿', + status:1 + }, + + ] }); }, getUserInfo() {