| | |
| | | <up-sticky bgColor="#fff"> |
| | | <view class="card-footer"> |
| | | <view class="user-info"> |
| | | <up-avatar :src="user.avatar" size="60rpx" shape="circle" /> |
| | | <up-avatar :src="filmInfo.avatar" size="60rpx" shape="circle" /> |
| | | <view class="user-text"> |
| | | <text class="nickname">{{ user.username }}</text> |
| | | <text class="nickname">{{ filmInfo.nickname }}</text> |
| | | </view> |
| | | </view> |
| | | <view class="opera-info"> |
| | |
| | | </view> |
| | | |
| | | <view class="content-item"> |
| | | <rich-text :nodes="filmInfo.filmContent" /> |
| | | <!-- <rich-text :nodes="filmInfo.filmContent" /> --> |
| | | <up-parse :content="filmInfo.filmContent"></up-parse> |
| | | </view> |
| | | <view class="annotation content-item"> |
| | | <text>{{ formatRelativeTime(filmInfo.createTime) }} 美国</text> |
| | |
| | | const tmpPicture = JSON.parse(data.filmPictures) as FilmPicture[] |
| | | filmPictureList.value = tmpPicture.map(item => item.url) |
| | | // 如果 filmPictureList.value是空的情况下,则把封面放入到图片列表中 |
| | | debugger; |
| | | // debugger; |
| | | if (filmPictureList.value.length === 0) { |
| | | filmPictureList.value.push(data.coverUrl) |
| | | } |