Merge branch 'main' of https://gitea.frp.extimaging.com/XCKJ/irc_web into main
commit
c886900005
|
@ -141,9 +141,18 @@
|
||||||
:disabled="scope.row.IsDeleted"
|
:disabled="scope.row.IsDeleted"
|
||||||
@click="handlePreviewStudy(scope.row)"
|
@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数据 -->
|
<!-- 预览PET-CT数据 -->
|
||||||
<el-button
|
<el-button
|
||||||
icon="el-icon-folder"
|
type="primary"
|
||||||
|
icon="el-icon-document tip-i"
|
||||||
:title="$t('trials:audit:tab:clinicalData')"
|
:title="$t('trials:audit:tab:clinicalData')"
|
||||||
v-if="
|
v-if="
|
||||||
['PT、CT', 'CT、PT', 'PET-CT'].includes(
|
['PT、CT', 'CT、PT', 'PET-CT'].includes(
|
||||||
|
@ -154,14 +163,6 @@
|
||||||
:disabled="scope.row.IsDeleted"
|
:disabled="scope.row.IsDeleted"
|
||||||
@click="handlePreviewClinicalData(scope.row)"
|
@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>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
|
@ -2248,4 +2249,9 @@ export default {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
::v-deep .tip-i{
|
||||||
|
&::before{
|
||||||
|
color: #fff !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue