uat_us
caiyiling 2024-04-18 15:25:09 +08:00
commit c886900005
1 changed files with 15 additions and 9 deletions

View File

@ -141,9 +141,18 @@
:disabled="scope.row.IsDeleted"
@click="handlePreviewStudy(scope.row)"
/>
<!-- 编辑 -->
<el-button
icon="el-icon-edit-outline"
:title="$t('trials:audit:action:edit')"
circle
:disabled="isAudit || scope.row.IsDeleted"
@click="handleEditStudy(scope.row)"
/>
<!-- 预览PET-CT数据 -->
<el-button
icon="el-icon-folder"
type="primary"
icon="el-icon-document tip-i"
:title="$t('trials:audit:tab:clinicalData')"
v-if="
['PT、CT', 'CT、PT', 'PET-CT'].includes(
@ -154,14 +163,6 @@
:disabled="scope.row.IsDeleted"
@click="handlePreviewClinicalData(scope.row)"
/>
<!-- 编辑 -->
<el-button
icon="el-icon-edit-outline"
:title="$t('trials:audit:action:edit')"
circle
:disabled="isAudit || scope.row.IsDeleted"
@click="handleEditStudy(scope.row)"
/>
</template>
</el-table-column>
</el-table>
@ -2248,4 +2249,9 @@ export default {
padding: 10px;
}
}
::v-deep .tip-i{
&::before{
color: #fff !important;
}
}
</style>