|
|
|
@ -55,8 +55,8 @@ import { ocrAndExtractList } from '@/api/caseDetails/evidence'
|
|
|
|
|
import mixin from '@/views/mixin'
|
|
|
|
|
export default {
|
|
|
|
|
name: 'EvidenceExtract',
|
|
|
|
|
mixins: [mixin],
|
|
|
|
|
components: { vuedraggable },
|
|
|
|
|
mixins: [mixin],
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
detailImg: require('@/assets/record/view_detail.png'),
|
|
|
|
@ -99,13 +99,14 @@ export default {
|
|
|
|
|
return [`${baseURL}${commonDownloadFile}${row.fileId}`]
|
|
|
|
|
},
|
|
|
|
|
getDataList() {
|
|
|
|
|
if (!this.$route.query.recordId) return
|
|
|
|
|
ocrAndExtractList({
|
|
|
|
|
batchNo: this.$route.query.recordId,
|
|
|
|
|
caseId: this.$route.params.id
|
|
|
|
|
}).then(res => {
|
|
|
|
|
if (res.code === 200) {
|
|
|
|
|
this.$set(this.gridOptions, 'data', res.data)
|
|
|
|
|
this.gridOptions.data = res.data
|
|
|
|
|
// this.gridOptions.data = res.data
|
|
|
|
|
for (const item of res.data) {
|
|
|
|
|
if (item.status !== '2' && item.status !== '3') {
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|