|
@@ -81,6 +81,9 @@
|
|
<template #sourceType="{ row }">
|
|
<template #sourceType="{ row }">
|
|
<span>{{ row?.sourceType === 1 ? '原生' : '数字化' }}</span>
|
|
<span>{{ row?.sourceType === 1 ? '原生' : '数字化' }}</span>
|
|
</template>
|
|
</template>
|
|
|
|
+ <template #fileTime="{ row }">
|
|
|
|
+ <span>{{ getTableFileTime(row.fileTime) }}</span>
|
|
|
|
+ </template>
|
|
</HcTable>
|
|
</HcTable>
|
|
<template #action>
|
|
<template #action>
|
|
<HcPages :pages="searchForm" @change="pageChange" />
|
|
<HcPages :pages="searchForm" @change="pageChange" />
|
|
@@ -406,7 +409,7 @@ import { rowsToId } from '~uti/tools'
|
|
import { HcDelMsg, HcUploadFileApi } from 'hc-vue3-ui'
|
|
import { HcDelMsg, HcUploadFileApi } from 'hc-vue3-ui'
|
|
import archiveFileApi from '~api/archiveFile/archiveFile'
|
|
import archiveFileApi from '~api/archiveFile/archiveFile'
|
|
import tasksFlowApi from '~api/tasks/flow'
|
|
import tasksFlowApi from '~api/tasks/flow'
|
|
-import { arrKeySort, arrToId, deepClone, getArrValue, getObjVal } from 'js-fast-way'
|
|
|
|
|
|
+import { arrKeySort, arrToId, deepClone, getArrValue, getObjVal, isNullES } from 'js-fast-way'
|
|
import tasksApi from '~api/tasks/data'
|
|
import tasksApi from '~api/tasks/data'
|
|
import ossApi from '~api/oss'
|
|
import ossApi from '~api/oss'
|
|
import { toPdfPage } from '~uti/btn-auth'
|
|
import { toPdfPage } from '~uti/btn-auth'
|
|
@@ -1740,6 +1743,12 @@ const onlineVerifyDrawerClose = () => {
|
|
isOnlineVerifyDrawer.value = false
|
|
isOnlineVerifyDrawer.value = false
|
|
onlineLoading.value = false
|
|
onlineLoading.value = false
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+//处理时间
|
|
|
|
+const getTableFileTime = (time) => {
|
|
|
|
+ if (isNullES(time)) return ''
|
|
|
|
+ return time.replace(/-/g, '')
|
|
|
|
+}
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<style lang="scss">
|
|
<style lang="scss">
|