Compare commits

..

No commits in common. "d50cc049ec8a38633eb8ff1b269f8697a97bf729" and "880a0615c9dc59349b94cee05c587f8c350065a1" have entirely different histories.

2 changed files with 8 additions and 10 deletions

View File

@ -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" style="margin-bottom: 10px"> <div class="top">
<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,7 +48,6 @@
<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
@ -76,13 +75,16 @@
<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 :label="$t('common:action:action')" fixed="right"> <el-table-column
:label="$t('common:action:action')"
width="250"
fixed="right"
>
<template slot-scope="scope"> <template slot-scope="scope">
<el-button <el-button
circle circle

View File

@ -159,17 +159,13 @@
@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>