From d54d91e44fd8f142ba85ece304ff412ad52ed089 Mon Sep 17 00:00:00 2001 From: luohairen <3399054449@qq.com> Date: 星期三, 30 十月 2024 17:06:36 +0800 Subject: [PATCH] 完成在线培训一个会议多个班级的功能 --- src/views/profile/index.vue | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/profile/index.vue b/src/views/profile/index.vue index 93b3147..14435db 100644 --- a/src/views/profile/index.vue +++ b/src/views/profile/index.vue @@ -4,17 +4,17 @@ <el-row :gutter="20"> <el-col :span="6" :xs="24"> - <user-card :userInfo="userInfo" /> + <user-card :user-info="userInfo" /> </el-col> <el-col :span="18" :xs="24"> <el-card> <el-tabs active-name="timeline"> <el-tab-pane label="鏃堕棿绾�" name="timeline"> - <timeline :userInfo="userInfo" /> + <timeline :user-info="userInfo" /> </el-tab-pane> <el-tab-pane label="璐﹀彿" name="account"> - <account :userInfo="userInfo" /> + <account :user-info="userInfo" /> </el-tab-pane> </el-tabs> </el-card> @@ -49,7 +49,7 @@ created () { let _this = this userApi.getCurrentUser().then(re => { - _this.userInfo = re.response + _this.userInfo = re.data }) } } -- Gitblit v1.8.0