| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- <template>
- <el-row v-if="userInfo !== null" style="height: 80vh;">
- <el-scrollbar style="width: 100%; height: 100%;">
- <el-row class="movie-list">
- <el-col :md="8">
- <user-avatar-card :user-avatar="userInfo" />
- </el-col>
- <el-col :md="8">
- <el-row>
- <text-card />
- </el-row>
- <el-row>
- <el-tabs v-model="activeName" @tab-click="tabClick">
- <el-tab-pane label="视频" name="video">
- <div v-if="activeName === 'video'">
- <el-col>
- <el-row v-for="(video, index) in dataList" :key="index">
- <side-video-card :video="video" />
- </el-row>
- </el-col>
- </div>
- </el-tab-pane>
- <el-tab-pane label="状态" name="status">
- <div v-if="activeName === 'status'">
- <el-col :md="15">
- <el-row v-for="(status, index) in dataList" :key="index" :md="15" :sm="12" :xs="12">
- <status-card :status="status" />
- </el-row>
- </el-col>
- </div>
- </el-tab-pane>
- </el-tabs>
- </el-row>
- </el-col>
- <el-col :md="8">
- <user-avatar-card :user-avatar="userInfo" />
- </el-col>
- </el-row>
- </el-scrollbar>
- </el-row>
- </template>
- <script>
- import TextCard from '@/components/card/TextCard'
- import StatusCard from '@/components/card/StatusCard'
- import SideVideoCard from '@/components/card/SideVideoCard'
- import UserAvatarCard from '@/components/card/UserAvatarCard'
- import { statusTimeline, videoTimeline } from '@/api/timeline'
- import { getUserInfo } from '@/api/user'
- import Vue from 'vue'
- export default {
- name: 'Timeline',
- components: { TextCard, StatusCard, SideVideoCard, UserAvatarCard },
- data() {
- return {
- // 屏幕宽度, 为了控制分页条的大小
- screenWidth: document.body.clientWidth,
- nextId: 0,
- userInfo: null,
- videoInfo: null,
- dataList: [],
- activeName: 'video'
- }
- },
- created() {
- const userInfo = getUserInfo()
- if (userInfo === null) {
- return null
- }
- this.userInfo = userInfo
- document.title = userInfo.screenName + '的时间线'
- this.videoTimelineWrapper(this.nextId)
- },
- mounted() {
- // 当窗口宽度改变时获取屏幕宽度
- window.onresize = () => {
- return () => {
- window.screenWidth = document.body.clientWidth
- this.screenWidth = window.screenWidth
- }
- }
- },
- methods: {
- tabClick(tab) {
- this.nextId = 0
- const tabName = tab.name
- if (tabName === 'video') {
- this.videoTimelineWrapper(this.nextId)
- } else if (tabName === 'status') {
- this.statusTimelineWrapper(this.nextId)
- }
- },
- statusTimelineWrapper(nextId) {
- statusTimeline(nextId).then(resp => {
- if (resp.code === 0) {
- this.dataList = resp.data.list
- this.nextId = resp.data.nextId
- }
- })
- },
- videoTimelineWrapper(nextId) {
- videoTimeline(nextId).then(resp => {
- if (resp.code === 0) {
- this.dataList = resp.data.list
- this.nextId = resp.data.nextId
- }
- })
- }
- }
- }
- </script>
- <style scoped>
- /*处于手机屏幕时*/
- @media screen and (max-width: 768px){
- .movie-list {
- padding-top: 8px;
- padding-left: 0.5%;
- padding-right: 0.5%;
- }
- }
- .movie-list {
- padding-top: 15px;
- padding-left: 3%;
- padding-right: 3%;
- }
- </style>
|