From 8299841c87c0e20c57e5d63098db39e632697a70 Mon Sep 17 00:00:00 2001 From: feige <feige@qq.com> Date: 星期三, 05 四月 2023 18:44:56 +0800 Subject: [PATCH] response.data.data 修改为了response.data --- ruoyi-ui/src/views/self/show.vue | 11 +++++------ 1 files changed, 5 insertions(+), 6 deletions(-) diff --git a/ruoyi-ui/src/views/self/show.vue b/ruoyi-ui/src/views/self/show.vue index 8441e99..c5a9f73 100644 --- a/ruoyi-ui/src/views/self/show.vue +++ b/ruoyi-ui/src/views/self/show.vue @@ -606,9 +606,9 @@ // console.log(this.queryParams) // listProperty(this.addDateRange(this.queryParams, this.dateRange)).then(response => { listExperience(this.queryParams).then(response => { - // alert(123) - // console.log(response.data) - this.experienceList = response.data.data; + alert(123) + console.log(response.data) + this.experienceList = response.data; this.total = response.data.total; this.loading = false; @@ -617,7 +617,7 @@ getIndividualRelation(this.queryParams).then(response => { // alert(123) // console.log(response.data) - this.relationList = response.data.data; + this.relationList = response.data; this.total = response.data.total; this.loading = false; @@ -626,7 +626,7 @@ getIndividualList(this.queryParams).then(response => { // alert(123) // console.log(response.data) - this.individualList = response.data.data; + this.individualList = response.data; this.total = response.data.total; this.loading = false; @@ -781,4 +781,3 @@ } }; </script> - -- Gitblit v1.9.1