Commit 43ac10e7 by lijiabin

【需求 23684】 fix: 修改展示的字段

parent 0932fb1c
......@@ -415,6 +415,7 @@ export interface SearchMoreColumnItemDto {
type: ArticleTypeEnum.COLUMN
videoDuration: string
viewCount: number
publishTime:number
}
/**
......
......@@ -100,7 +100,7 @@
<!-- 底部信息 -->
<div class="flex items-center gap-4 text-13px text-gray-500">
<span>{{ item.showName }}</span>
<span>{{ dayjs(item.createTime * 1000).format('YYYY-MM-DD HH:mm:ss') }}</span>
<span>{{ dayjs(item.publishTime * 1000).format('YYYY-MM-DD HH:mm:ss') }}</span>
<div class="flex items-center gap-1">
<el-icon class="text-sm">
<IEpView />
......
......@@ -104,7 +104,7 @@
<!-- 底部信息 -->
<div class="flex items-center gap-4 text-13px text-gray-500">
<span>{{ item.showName }}</span>
<span>{{ dayjs(item.createTime * 1000).format('YYYY-MM-DD HH:mm:ss') }}</span>
<span>{{ dayjs(item.publishTime * 1000).format('YYYY-MM-DD HH:mm:ss') }}</span>
<div class="flex items-center gap-1">
<el-icon class="text-sm">
<IEpView />
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment