|
@@ -5,7 +5,6 @@ import apiReport from '@/api/report'
|
|
|
import {reportExternalInterface} from '@/api/reportExternal'
|
|
|
import { showToast,FloatingPanel,FloatingBubble } from 'vant'
|
|
|
import { copyText } from 'vue3-clipboard'
|
|
|
-import moment from 'moment';
|
|
|
import PreViewFile from './components/PreviewFile.vue'
|
|
|
import {usePublicSettingStore} from '@/store/modules/publicSetting'
|
|
|
|
|
@@ -87,7 +86,7 @@ function getFileIcon(name) {
|
|
|
<h1 class="report-title">{{reportInfo.Title}}</h1>
|
|
|
<div class="auth-box">
|
|
|
<span>{{reportInfo.SysUserName}}</span>
|
|
|
- <span>{{reportInfo.CreateTime||moment().format('YYYY-MM-DD')}}</span>
|
|
|
+ <span>{{reportInfo.CreateTime}}</span>
|
|
|
</div>
|
|
|
<div class="report-abstract" v-if="reportInfo.Abstract">摘要:{{reportInfo.Abstract}}</div>
|
|
|
|