From 210f547f5b9c4ef7851acd4653519d7c75b4eec4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=91=E6=96=87=E5=8F=AF?= <1041367524@qq.com> Date: Thu, 9 Jun 2022 15:12:53 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=AE=A2=E5=8D=95=E7=BB=9F=E8=AE=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/store/modules/home/home.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/store/modules/home/home.js b/src/store/modules/home/home.js index 2cf8da3..5133b8b 100644 --- a/src/store/modules/home/home.js +++ b/src/store/modules/home/home.js @@ -221,10 +221,10 @@ const mutations = { }, setOrder: (state, data) => { state.opts.order[0].value = data.waitPayCount || 0; - state.opts.order[1].value = data.waitRefundCount || 0; - state.opts.order[2].value = data.waitShipCount || 0; - state.opts.order[3].value = data.waitReturnGoodsCount || 0; - state.opts.order[4].value = data.shippedCount || 0; + state.opts.order[1].value = data.waitShipCount || 0; + state.opts.order[2].value = data.shippedCount || 0; + state.opts.order[3].value = data.waitRefundCount || 0; + state.opts.order[4].value = data.waitReturnGoodsCount || 0; }, setProduct: (state, data) => { state.opts.product[0].value = data.onTheShelfCount || 0;