上传、下载影像
parent
e7ccb10ba3
commit
8d795994f6
|
@ -1,7 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<base-model :config="model_cfg">
|
<base-model :config="model_cfg">
|
||||||
<div slot="dialog-body">
|
<div slot="dialog-body">
|
||||||
<div class="top">
|
<div class="top" style="margin-bottom: 10px">
|
||||||
<el-button type="primary" size="small" class="el-icon-upload2">
|
<el-button type="primary" size="small" class="el-icon-upload2">
|
||||||
<label for="file">
|
<label for="file">
|
||||||
{{ $t("trials:uploadImage:button:selectFolder") }}
|
{{ $t("trials:uploadImage:button:selectFolder") }}
|
||||||
|
@ -48,6 +48,7 @@
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="uploadStudyList"
|
prop="uploadStudyList"
|
||||||
:label="$t('trials:uploadImage:table:uploadStudyListNum')"
|
:label="$t('trials:uploadImage:table:uploadStudyListNum')"
|
||||||
|
min-width="140"
|
||||||
>
|
>
|
||||||
<template slot-scope="scope">{{
|
<template slot-scope="scope">{{
|
||||||
scope.row.orginalStudyList.length
|
scope.row.orginalStudyList.length
|
||||||
|
@ -75,16 +76,13 @@
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="scheduleNum"
|
prop="scheduleNum"
|
||||||
:label="$t('trials:uploadImage:table:scheduleNum')"
|
:label="$t('trials:uploadImage:table:scheduleNum')"
|
||||||
|
min-width="140"
|
||||||
>
|
>
|
||||||
<template slot-scope="scope">{{
|
<template slot-scope="scope">{{
|
||||||
scope.row.orginalStudyList.length
|
scope.row.orginalStudyList.length
|
||||||
}}</template>
|
}}</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column :label="$t('common:action:action')" fixed="right">
|
||||||
:label="$t('common:action:action')"
|
|
||||||
width="250"
|
|
||||||
fixed="right"
|
|
||||||
>
|
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-button
|
<el-button
|
||||||
circle
|
circle
|
||||||
|
|
|
@ -176,13 +176,17 @@
|
||||||
@click="handleReadImage(scope.row)"
|
@click="handleReadImage(scope.row)"
|
||||||
/>
|
/>
|
||||||
<!-- 上传 -->
|
<!-- 上传 -->
|
||||||
<!-- <el-button
|
<el-button
|
||||||
v-hasPermi="['role:ir']"
|
v-hasPermi="['role:ir']"
|
||||||
|
v-if="
|
||||||
|
item.CriterionType === 0 &&
|
||||||
|
(item.ImageDownloadEnum > 0 || item.ImageUploadEnum > 0)
|
||||||
|
"
|
||||||
circle
|
circle
|
||||||
icon="el-icon-upload2"
|
icon="el-icon-upload2"
|
||||||
:title="$t('trials:pendingReadingTasks:button:upload')"
|
:title="$t('trials:pendingReadingTasks:button:upload')"
|
||||||
@click="upload(scope.row, item)"
|
@click="upload(scope.row, item)"
|
||||||
/> -->
|
/>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
|
|
Loading…
Reference in New Issue