Browse Source

修复收益错误的问题

JXDS18FUJT 2 năm trước cách đây
mục cha
commit
1176c16fee
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/views/home/index.vue

+ 1 - 1
src/views/home/index.vue

@@ -136,7 +136,7 @@ export default defineComponent({
             //总收益
             api.order.studentOrderInfoTotal({
             }).then(res => {
-                todayIncome.value = res.data.data
+                totalIncome.value = res.data.data
             })
 
         })