|
@@ -4,7 +4,6 @@ import { useRoute } from 'vue-router'
|
|
|
import { Message,Toast } from 'tdesign-mobile-vue';
|
|
|
import apiUser from '@/api/modules/user'
|
|
|
import { useThrottleFn } from '@vueuse/core'
|
|
|
-import dayjs from 'dayjs'
|
|
|
|
|
|
const route = useRoute()
|
|
|
|
|
@@ -78,7 +77,7 @@ async function getReportInfo() {
|
|
|
endImgStyle.value=reportInfo.value.EndResource.Style?JSON.parse(reportInfo.value.EndResource.Style):[]
|
|
|
layoutBaseInfo.value['研报标题']=reportInfo.value.Title
|
|
|
layoutBaseInfo.value['研报作者']=reportInfo.value.Author
|
|
|
- layoutBaseInfo.value['创建时间']= dayjs(reportInfo.value.PublishTime).format('YYYY-MM-DD HH:mm:ss')
|
|
|
+ layoutBaseInfo.value['创建时间']= reportInfo.value.PublishTime
|
|
|
|
|
|
getAuthorFollowState()
|
|
|
nextTick(() => {
|
|
@@ -228,7 +227,7 @@ onUnmounted(() => {
|
|
|
</div>
|
|
|
<div class="author-info">
|
|
|
<span class="name">{{ reportInfo.Author.split(',').join('、') }}</span>
|
|
|
- <span class="time">{{ dayjs(reportInfo.PublishTime).format('YYYY-MM-DD HH:mm:ss') }}</span>
|
|
|
+ <span class="time">{{ reportInfo.PublishTime }}</span>
|
|
|
</div>
|
|
|
<div
|
|
|
@click="changeFollowState"
|