From 64df676292cd8233289a41461dbe0d6b20c857d3 Mon Sep 17 00:00:00 2001 From: "LAPTOP-S9RBPPM6\\bjxask-2201" <752743406@qq.com> Date: Tue, 31 May 2022 11:36:55 +0800 Subject: [PATCH 1/9] =?UTF-8?q?=E6=88=91=E7=9A=84=E6=94=B6=E8=97=8F?= =?UTF-8?q?=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Course/collectItem.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Course/collectItem.vue b/src/components/Course/collectItem.vue index 21a6bf04..80bbe847 100644 --- a/src/components/Course/collectItem.vue +++ b/src/components/Course/collectItem.vue @@ -134,8 +134,8 @@ export default { + + + + From f3d5577f588f4fb668c45dfc05b4650637c1a4cb Mon Sep 17 00:00:00 2001 From: lmj <3407000732@qq.com> Date: Tue, 31 May 2022 19:07:16 +0800 Subject: [PATCH 4/9] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Article/shareItems.vue | 5 +++-- src/components/Qa/shareList.vue | 2 +- src/views/share/ToList.vue | 4 ++-- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/src/components/Article/shareItems.vue b/src/components/Article/shareItems.vue index 3c9395df..19e694fb 100644 --- a/src/components/Article/shareItems.vue +++ b/src/components/Article/shareItems.vue @@ -134,14 +134,15 @@ export default { .readed{ font-size: 18px; color: #3e7fff; - margin-bottom: 6px; + // margin-bottom: 6px; } .noRead{ font-size: 18px; color:#FF3E3E; - margin-bottom: 6px; + // margin-bottom: 6px; } .title{ + line-height: 25px; margin-left: 10px; font-size: 18px; flex-shrink: 10000; diff --git a/src/components/Qa/shareList.vue b/src/components/Qa/shareList.vue index bf68bc30..19693a1e 100644 --- a/src/components/Qa/shareList.vue +++ b/src/components/Qa/shareList.vue @@ -158,7 +158,7 @@ export default { justify-content: flex-start; align-items: center; span:first-of-type{ - margin-top: -2px; + // margin-top: -2px; } .title{ margin-left: 8px; diff --git a/src/views/share/ToList.vue b/src/views/share/ToList.vue index 205a6706..6878033f 100644 --- a/src/views/share/ToList.vue +++ b/src/views/share/ToList.vue @@ -44,7 +44,7 @@
-
+
-
+
没有查询到相关内容
暂无数据
From e1382f96c84a6b24071c527503ba0491e3982f29 Mon Sep 17 00:00:00 2001 From: daihh Date: Tue, 31 May 2022 19:11:30 +0800 Subject: [PATCH 5/9] =?UTF-8?q?=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Portal/interactBar.vue | 34 +++++++++++++++------------ 1 file changed, 19 insertions(+), 15 deletions(-) diff --git a/src/components/Portal/interactBar.vue b/src/components/Portal/interactBar.vue index 64933aca..8a6d12d1 100644 --- a/src/components/Portal/interactBar.vue +++ b/src/components/Portal/interactBar.vue @@ -238,21 +238,25 @@ export default { }) }, checkHas(){ - if(this.type>0){ - apiPraises.has(this.type,this.data.id).then(rs=>{ - if(rs.status==200 && rs.result){ - this.isPraise=true; - }else{ - this.isPraise=false; - } - }); - apiFavorites.has(this.type,this.data.id).then(rs=>{ - if(rs.status==200 && rs.result){ - this.isFavorite=true; - }else{ - this.isFavorite=false; - } - }) + if(this.type>0 && !this.readonly && this.data.id){ + if(this.favorites){ + apiFavorites.has(this.type,this.data.id).then(rs=>{ + if(rs.status==200 && rs.result){ + this.isFavorite=true; + }else{ + this.isFavorite=false; + } + }) + } + if(this.praises){ + apiPraises.has(this.type,this.data.id).then(rs=>{ + if(rs.status==200 && rs.result){ + this.isPraise=true; + }else{ + this.isPraise=false; + } + }); + } } }, addShare(){ From f8efaf1874f13f76f94743cec1f3b3663bb7e00f Mon Sep 17 00:00:00 2001 From: daihh Date: Tue, 31 May 2022 19:43:29 +0800 Subject: [PATCH 6/9] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E5=BF=BD=E7=95=A5?= =?UTF-8?q?=E7=9A=84=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..07e6e472 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/node_modules From ececd71f7b12429b9f37b0e806a43868db3c92b9 Mon Sep 17 00:00:00 2001 From: daihh Date: Tue, 31 May 2022 19:58:00 +0800 Subject: [PATCH 7/9] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=B8=A4=E4=B8=AA?= =?UTF-8?q?=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/feedback/Index.vue | 2 +- src/views/feedback/Manager.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/feedback/Index.vue b/src/views/feedback/Index.vue index 6d243ca3..f54654db 100644 --- a/src/views/feedback/Index.vue +++ b/src/views/feedback/Index.vue @@ -185,7 +185,7 @@ export default { } -