| | |
| | | </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) |
| | | } |