文件级别列表更改
parent
f65264a2a6
commit
16e2db37cd
|
|
@ -77,7 +77,12 @@
|
||||||
<el-table-column label="优先级" prop="Priority" min-width="90" show-overflow-tooltip sortable="custom" />
|
<el-table-column label="优先级" prop="Priority" min-width="90" show-overflow-tooltip sortable="custom" />
|
||||||
<el-table-column label="是否同步完成" prop="IsSync" min-width="90" show-overflow-tooltip sortable="custom">
|
<el-table-column label="是否同步完成" prop="IsSync" min-width="90" show-overflow-tooltip sortable="custom">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
{{ $fd('YesOrNo', scope.row.IsSync) }}
|
<el-tag v-if="scope.row.IsSync" type="success">
|
||||||
|
{{ $fd('YesOrNo', scope.row.IsSync) }}
|
||||||
|
</el-tag>
|
||||||
|
<el-tag v-else type="danger">
|
||||||
|
{{ $fd('YesOrNo', scope.row.IsSync) }}
|
||||||
|
</el-tag>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="更新时间" prop="UpdateTime" min-width="90" show-overflow-tooltip sortable="custom" />
|
<el-table-column label="更新时间" prop="UpdateTime" min-width="90" show-overflow-tooltip sortable="custom" />
|
||||||
|
|
|
||||||
|
|
@ -137,6 +137,7 @@ export default {
|
||||||
mounted() {
|
mounted() {
|
||||||
this.$nextTick(()=>{
|
this.$nextTick(()=>{
|
||||||
this.searchData.Path = this.path
|
this.searchData.Path = this.path
|
||||||
|
this.searchData.FileUploadRecordId = this.fileUploadRecordId
|
||||||
this.getList()
|
this.getList()
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
@ -148,8 +149,7 @@ export default {
|
||||||
this.searchData.StudyCode = this.rowInfo.StudyCode
|
this.searchData.StudyCode = this.rowInfo.StudyCode
|
||||||
this.searchData.SubjectCode = this.rowInfo.SubjectCode
|
this.searchData.SubjectCode = this.rowInfo.SubjectCode
|
||||||
this.searchData.VisitName = this.rowInfo.VisitName
|
this.searchData.VisitName = this.rowInfo.VisitName
|
||||||
this.searchData.FileUploadRecordId = this.fileUploadRecordId
|
|
||||||
this.searchData.Path = this.path
|
|
||||||
let res = await getUploadFileSyncRecordList(this.searchData)
|
let res = await getUploadFileSyncRecordList(this.searchData)
|
||||||
this.loading = false
|
this.loading = false
|
||||||
this.list = res.Result.CurrentPageData
|
this.list = res.Result.CurrentPageData
|
||||||
|
|
|
||||||
|
|
@ -78,7 +78,12 @@
|
||||||
<el-table-column label="目标可用时间" prop="TargetRegion" min-width="90" show-overflow-tooltip sortable="custom" />
|
<el-table-column label="目标可用时间" prop="TargetRegion" min-width="90" show-overflow-tooltip sortable="custom" />
|
||||||
<el-table-column label="是否同步完成" prop="IsSync" min-width="90" show-overflow-tooltip sortable="custom">
|
<el-table-column label="是否同步完成" prop="IsSync" min-width="90" show-overflow-tooltip sortable="custom">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
{{ $fd('YesOrNo', scope.row.IsSync) }}
|
<el-tag v-if="scope.row.IsSync" type="success">
|
||||||
|
{{ $fd('YesOrNo', scope.row.IsSync) }}
|
||||||
|
</el-tag>
|
||||||
|
<el-tag v-else type="danger">
|
||||||
|
{{ $fd('YesOrNo', scope.row.IsSync) }}
|
||||||
|
</el-tag>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="操作" min-width="80" show-overflow-tooltip>
|
<el-table-column label="操作" min-width="80" show-overflow-tooltip>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue