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() {