caiyiling 2026-08-17 14:29:26 +08:00
parent 4c642cd814
commit cb2fed1ad2
2 changed files with 2 additions and 7 deletions

View File

@ -61,10 +61,7 @@
scope.row.UploadStudyList.length <= 0 scope.row.UploadStudyList.length <= 0
" @click.stop="handleViewReadingImages(scope.row)" :title="$t('upload:dicom:button:preview')" /> " @click.stop="handleViewReadingImages(scope.row)" :title="$t('upload:dicom:button:preview')" />
<!--删除---> <!--删除--->
<el-button circle :disabled="!scope.row.UploadStudyList || <el-button circle icon="el-icon-delete" :title="$t('upload:dicom:button:delete')" @click.stop="remove(scope.row)" />
scope.row.UploadStudyList.length <= 0 ||
scope.row.ReadingTaskState === 2
" icon="el-icon-delete" :title="$t('upload:dicom:button:delete')" @click.stop="remove(scope.row)" />
</div> </div>
</template> </template>
</el-table-column> </el-table-column>

View File

@ -113,9 +113,7 @@
<el-button circle icon="el-icon-upload2" :title="$t('upload:nonedicom:button:upload')" v-if="!forbid" <el-button circle icon="el-icon-upload2" :title="$t('upload:nonedicom:button:upload')" v-if="!forbid"
@click.native.prevent="handleUpload(scope.row)" :disabled="isReading && !isDownloaded" /> @click.native.prevent="handleUpload(scope.row)" :disabled="isReading && !isDownloaded" />
<!--删除---> <!--删除--->
<el-button :disabled="scope.row.UploadedFileCount <= 0 || <el-button circle icon="el-icon-delete" :title="$t('upload:nonedicom:button:delete')"
scope.row.ReadingTaskState === 2
" circle icon="el-icon-delete" :title="$t('upload:nonedicom:button:delete')"
@click.stop="remove(scope.row)" /> @click.stop="remove(scope.row)" />
</template> </template>
</el-table-column> </el-table-column>