|
@@ -46,7 +46,7 @@ import StatusCard from '@/components/card/StatusCard'
|
|
|
import SideVideoCard from '@/components/card/SideVideoCard'
|
|
import SideVideoCard from '@/components/card/SideVideoCard'
|
|
|
import UserAvatarCard from '@/components/card/UserAvatarCard'
|
|
import UserAvatarCard from '@/components/card/UserAvatarCard'
|
|
|
|
|
|
|
|
-import { statusTimeline, videoTimeline } from '@/api/timeline'
|
|
|
|
|
|
|
+import { videoTimeline } from '@/api/timeline'
|
|
|
import { getAuthedUser } from '@/utils/auth'
|
|
import { getAuthedUser } from '@/utils/auth'
|
|
|
|
|
|
|
|
export default {
|
|
export default {
|
|
@@ -93,11 +93,9 @@ export default {
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
statusTimelineWrapper(nextId) {
|
|
statusTimelineWrapper(nextId) {
|
|
|
- statusTimeline(nextId).then(resp => {
|
|
|
|
|
- if (resp.code === 0) {
|
|
|
|
|
- this.dataList = resp.data.list
|
|
|
|
|
- this.nextId = resp.data.nextId
|
|
|
|
|
- }
|
|
|
|
|
|
|
+ this.$notify.info({
|
|
|
|
|
+ message: '状态 timeline 未实现',
|
|
|
|
|
+ duration: 3000
|
|
|
})
|
|
})
|
|
|
},
|
|
},
|
|
|
videoTimelineWrapper(nextId) {
|
|
videoTimelineWrapper(nextId) {
|