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/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}}集
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('收藏成功')
diff --git a/src/components/Star.vue b/src/components/Star.vue
index 71f342f..882757c 100644
--- a/src/components/Star.vue
+++ b/src/components/Star.vue
@@ -12,6 +12,7 @@
{{i.type}}
{{i.year}}
{{i.site}}
+ {{i.note}}
播放
删除
@@ -129,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}"失败, 请重试。`