一致性核查结果,在做全量核查时,对于已经核查过的数据也进行校验
continuous-integration/drone/push Build is passing Details

main
wangxiaoshuang 2025-10-21 17:35:17 +08:00
parent 5456d7a40b
commit 2ce7fa7552
3 changed files with 201 additions and 3 deletions

View File

@ -1203,7 +1203,13 @@ export function getConsistencyVerificationList(param) {
data: param
})
}
export function getConsistencyCheckFileList(param) {
return request({
url: `/QCList/getConsistencyCheckFileList`,
method: 'post',
data: param
})
}
export function getCheckChallengeDialogList(subjectVisitId) {
return request({
url: `/QCList/getCheckChallengeDialogList/${subjectVisitId}`,
@ -1256,11 +1262,11 @@ export function getCRCVisitChallengeAndDialog(subjectVisitId, trialQCProcess) {
})
}
export function uploadVisitCheckExcel(trialId, file) {
export function uploadVisitCheckExcel(trialId, file, isFullCheck = false) {
const formData = new FormData()
formData.append('file', file)
return request({
url: `/QCOperation/UploadVisitCheckExcel/${trialId}`,
url: `/QCOperation/UploadVisitCheckExcel/${trialId}?isFullCheck=${isFullCheck}`,
method: 'post',
data: formData
})

View File

@ -0,0 +1,171 @@
<template>
<div class="FullCheck">
<div class="upload-container">
<p class="title">{{ $t('trials:consistencyCheck:fullCheck:title') }}</p>
<el-upload class="upload-demo" action accept=".xlsx,.xls" :before-upload="beforeUpload"
:http-request="handleUploadFile" :on-preview="handlePreview" :show-file-list="true" :limit="1"
:on-exceed="handleExceed">
<el-button size="small" type="primary" :loading="loading">
{{ $t('trials:consistencyCheck:dialogButton:upload') }}
</el-button>
<span slot="tip" style="margin-left:10px;" class="el-upload__tip">
({{ $t('trials:consistencyCheck:message:excelFileOnly') }})
</span>
</el-upload>
</div>
<el-table ref="consistencyTable" v-loading="loading" :element-loading-text="loadingText"
element-loading-spinner="el-icon-loading" element-loading-background="rgba(0, 0, 0, 0.8)"
v-adaptive="{ bottomOffset: 60 }" :data="list" stripe height="100" @sort-change="handleSortByColumn">
<el-table-column type="index" width="40" />
<!-- 核查时间 -->
<el-table-column prop="CreateTime" :label="$t('trials:consistencyCheck:fullCheck:table:createTime')"
show-overflow-tooltip min-width="110" sortable="custom" />
<!-- 影像检查记录 -->
<el-table-column prop="FileName" :label="$t('trials:consistencyCheck:fullCheck:table:fileName')"
show-overflow-tooltip>
<template slot-scope="scope">
<el-button type="text" size="small" @click.stop="download(scope.row, 'RelativePath')">{{
scope.row.FileName
}}</el-button>
</template>
</el-table-column>
<!-- 核查状态 -->
<el-table-column prop="CheckState" :label="$t('trials:consistencyCheck:fullCheck:table:checkState')"
show-overflow-tooltip min-width="110" sortable="custom">
<template slot-scope="scope">
<span>{{ $fd("fullCheckState", scope.row.CheckState) }}</span>
</template>
</el-table-column>
<!-- 核查记录 -->
<el-table-column prop="ResultPath" :label="$t('trials:consistencyCheck:fullCheck:table:resultPath')"
show-overflow-tooltip>
<template slot-scope="scope">
<el-button type="text" size="small" @click.stop="download(scope.row, 'ResultPath')">{{
$t('trials:consistencyCheck:fullCheck:ResultPath')
}}</el-button>
</template>
</el-table-column>
</el-table>
<!-- 分页组件 -->
<pagination class="page" :total="total" :page.sync="searchData.PageIndex" :limit.sync="searchData.PageSize"
@pagination="getList" />
</div>
</template>
<script>
import { uploadVisitCheckExcel, getConsistencyCheckFileList } from '@/api/trials'
import Pagination from '@/components/Pagination'
import { downLoadFile } from '@/utils/stream.js'
const searchDataDefault = () => {
return {
PageIndex: 1,
PageSize: 20,
SortField: '',
Asc: false
}
}
export default {
name: "FullCheck",
components: {
Pagination,
},
data() {
return {
loading: false,
trialId: this.$route.query.trialId,
searchData: searchDataDefault(),
total: 0,
list: [],
loadingText: ''
}
},
mounted() {
this.getList()
},
methods: {
async download(row, type) {
let url = this.OSSclientConfig.basePath + row[type]
let name = `DataReconciliation_${Date.now()}`
if (type === 'RelativePath') name = row.fileName
await downLoadFile(url, name)
},
//
getList() {
this.loading = true
this.searchData.TrialId = this.trialId
getConsistencyCheckFileList(this.searchData)
.then((res) => {
this.loading = false
this.list = res.Result.CurrentPageData
this.total = res.Result.TotalCount
})
.catch(() => {
this.loading = false
})
},
beforeUpload(file) {
//
if (this.checkFileSuffix(file.name)) {
return true
} else {
// Must be xls or xlsx format
this.$alert(this.$t('trials:consistencyCheck:message:xlsx'))
return false
}
},
handleUploadFile(param) {
this.loading = true
this.loadingText = this.$t('trials:consistencyCheck:fullCheck:loading')
uploadVisitCheckExcel(this.trialId, param.file, true).then(res => {
this.loadingText = ''
this.loading = false
// this.$emit('refreshTable')
this.getList()
}).catch(() => {
this.loading = false
})
},
handlePreview(file) {
if (file.fullPath) {
window.open(file.fullPath, '_blank')
}
},
handleExceed(files, fileList) {
// Upload is currently limited to 1 file
this.$message.warning(this.$t('trials:consistencyCheck:message:onlyOneFile'))
},
checkFileSuffix(fileName) {
var typeArr = ['xls', 'xlsx']
var extendName = fileName.substring(fileName.lastIndexOf('.') + 1).toLocaleLowerCase()
if (typeArr.indexOf(extendName) !== -1) {
return true
} else {
return false
}
},
//
handleSortByColumn(column) {
if (column.order === 'ascending') {
this.searchData.Asc = true
} else {
this.searchData.Asc = false
}
this.searchData.SortField = column.prop
this.searchData.PageIndex = 1
this.getList()
},
}
}
</script>
<style lang="scss" scoped>
.upload-container {
height: 100px;
display: flex;
.title {
margin: 0;
line-height: 30px;
}
}
</style>

View File

@ -51,6 +51,11 @@
icon="el-icon-download" @click="handleDownload">
{{ $t('trials:consistencyCheck:button:download') }}
</el-button>
<!-- 全量核查 -->
<el-button type="primary" v-hasPermi="['trials:trials-panel:visit:consistency-check:upload']"
@click="openFullCheck">
{{ $t('trials:consistencyCheck:button:FullCheck') }}
</el-button>
</el-form>
<!-- 上传 -->
<span style="margin-left: auto">
@ -358,6 +363,10 @@
<UploadExcel @refreshTable="refreshTable" />
</template>
</base-model>
<el-dialog v-if="fullCheckDialog.visible" :visible.sync="fullCheckDialog.visible" :close-on-click-modal="false"
:title="fullCheckDialog.title" custom-class="base-dialog-wrapper" :fullscreen="true">
<FullCheck v-if="fullCheckDialog.visible" />
</el-dialog>
</BaseContainer>
</template>
<script>
@ -380,6 +389,7 @@ import BaseContainer from '@/components/BaseContainer'
import BaseModel from '@/components/BaseModel'
import ConsistencyCheckForm from './components/consistencyCheckForm'
import UploadExcel from './components/uploadExcel'
import FullCheck from './components/fullCheck'
import SignForm from '@/views/trials/components/newSignForm'
import Pagination from '@/components/Pagination'
import const_ from '@/const/sign-code'
@ -403,6 +413,7 @@ export default {
UploadExcel,
BaseModel,
SignForm,
FullCheck
},
data() {
return {
@ -430,6 +441,10 @@ export default {
width: '500px',
showClose: true,
},
fullCheckDialog: {
visible: false,
title: this.$t('trials:consistencyCheck:button:FullCheck'),
},
rules: {
Type: [
{
@ -469,6 +484,12 @@ export default {
},
},
methods: {
openFullCheck() {
this.fullCheckDialog.visible = true
},
closeDialog() {
this.fullCheckDialog.visible = false
},
beforeClose() {
this.chatVisible = false
this.$store.state.trials.checkTaskId = null