Compare commits

..

2 Commits

Author SHA1 Message Date
DESKTOP-6C3NK6N\WXS 7bb0213a8c Merge branch 'main' of https://gitea.frp.extimaging.com/XCKJ/irc_web
continuous-integration/drone/push Build is passing Details
2024-09-30 10:22:00 +08:00
DESKTOP-6C3NK6N\WXS a75367480d 后处理上传添加限制 2024-09-30 10:21:47 +08:00
2 changed files with 6 additions and 2 deletions

View File

@ -114,7 +114,8 @@
circle
:disabled="
!scope.row.UploadStudyList ||
scope.row.UploadStudyList.length <= 0
scope.row.UploadStudyList.length <= 0 ||
scope.row.ReadingTaskState === 2
"
icon="el-icon-delete"
:title="$t('upload:dicom:button:delete')"

View File

@ -203,7 +203,10 @@
/>
<!--删除--->
<el-button
:disabled="scope.row.UploadedFileCount <= 0"
:disabled="
scope.row.UploadedFileCount <= 0 ||
scope.row.ReadingTaskState === 2
"
circle
icon="el-icon-delete"
:title="$t('upload:nonedicom:button:delete')"