From 509d6c7900939005596b26523f556e21512c2cf4 Mon Sep 17 00:00:00 2001 From: haiyangcui Date: Wed, 5 Aug 2020 16:25:45 +0200 Subject: [PATCH 1/4] =?UTF-8?q?=E6=B7=BB=E5=8A=A0"=E5=A4=87=E6=B3=A8"?= =?UTF-8?q?=E5=88=97=E5=88=B0=E6=94=B6=E8=97=8F=E8=AF=95=E5=9B=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Star.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Star.vue b/src/components/Star.vue index 71f342f..d26011a 100644 --- a/src/components/Star.vue +++ b/src/components/Star.vue @@ -12,6 +12,7 @@ {{i.type}} {{i.year}} {{i.site}} + {{i.note}} 播放 删除 From b8706ea4327f5531d23000ec5b0210862bcf92ff Mon Sep 17 00:00:00 2001 From: haiyangcui Date: Wed, 5 Aug 2020 16:27:11 +0200 Subject: [PATCH 2/4] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=92=AD=E6=94=BE?= =?UTF-8?q?=E8=A7=86=E9=A2=91=E7=82=B9=E5=87=BB=E4=BA=8B=E4=BB=B6=E5=88=B0?= =?UTF-8?q?=E5=8E=86=E5=8F=B2=E8=AE=B0=E5=BD=95=E9=87=8C=E7=9A=84=E7=89=87?= =?UTF-8?q?=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/History.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/History.vue b/src/components/History.vue index 1cd87f9..c5a0873 100644 --- a/src/components/History.vue +++ b/src/components/History.vue @@ -9,7 +9,7 @@
  • 无数据
  • - {{i.name}} + {{i.name}} {{i.site}} 第{{i.index+1}}集 From 32f6ac03106d9ed1401ae484c78dce6aac46753d Mon Sep 17 00:00:00 2001 From: haiyangcui Date: Wed, 5 Aug 2020 16:39:46 +0200 Subject: [PATCH 3/4] =?UTF-8?q?=E6=B7=BB=E5=8A=A0"=E5=A4=87=E6=B3=A8"?= =?UTF-8?q?=E5=88=97=E5=88=B0=E6=94=B6=E8=97=8F=E8=AF=95=E5=9B=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Detail.vue | 3 ++- src/components/Film.vue | 3 ++- src/components/Play.vue | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/src/components/Detail.vue b/src/components/Detail.vue index ff74bab..76f0ade 100644 --- a/src/components/Detail.vue +++ b/src/components/Detail.vue @@ -141,7 +141,8 @@ export default { name: this.info.name, type: this.info.type, year: this.info.year, - last: this.info.last + last: this.info.last, + note: this.info.note } star.add(docs).then(res => { this.$message.success('收藏成功') diff --git a/src/components/Film.vue b/src/components/Film.vue index d6b4d43..b66a686 100644 --- a/src/components/Film.vue +++ b/src/components/Film.vue @@ -303,7 +303,8 @@ export default { name: e.name, type: e.type, year: e.year, - last: e.last + last: e.last, + note: e.note } star.add(docs).then(res => { this.$message.success('收藏成功') diff --git a/src/components/Play.vue b/src/components/Play.vue index 96577a0..472abe2 100644 --- a/src/components/Play.vue +++ b/src/components/Play.vue @@ -474,7 +474,8 @@ export default { name: info.name, type: info.type, year: info.year, - last: info.last + last: info.last, + note: info.note } star.add(docs).then(res => { this.$message.success('收藏成功') From 076e6e99e4913078224760f07355e8f697645869 Mon Sep 17 00:00:00 2001 From: haiyangcui Date: Wed, 5 Aug 2020 17:06:17 +0200 Subject: [PATCH 4/4] =?UTF-8?q?=E5=BD=93=E6=9C=89=E6=9B=B4=E6=96=B0?= =?UTF-8?q?=E6=97=B6=EF=BC=8C=E5=88=B7=E6=96=B0list=E5=88=97=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Star.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/Star.vue b/src/components/Star.vue index d26011a..882757c 100644 --- a/src/components/Star.vue +++ b/src/components/Star.vue @@ -130,12 +130,14 @@ export default { name: res.name, site: e.site, type: res.type, - year: res.year + year: res.year, + note: res.note } star.update(e.id, doc).then(res => { var msg = `同步"${e.name}"成功, 检查到更新。` this.$message.success(msg) }) + this.getStarList() } }).catch(err => { var msg = `同步"${e.name}"失败, 请重试。`