dicom ae添加是否支持多模态字段
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
886d148b31
commit
c6302e88c3
|
@ -96,6 +96,20 @@
|
|||
>
|
||||
<el-input v-model="form.Description" clearable />
|
||||
</el-form-item>
|
||||
<!--是否支持多模态-->
|
||||
<el-form-item
|
||||
:label="$t('system:dicom:form:IsSupportMutiModality')"
|
||||
prop="IsSupportMutiModality"
|
||||
>
|
||||
<el-switch
|
||||
v-model="form.IsSupportMutiModality"
|
||||
:active-text="$fd('YesOrNo', true)"
|
||||
:inactive-text="$fd('YesOrNo', false)"
|
||||
:active-value="true"
|
||||
:inactive-value="false"
|
||||
>
|
||||
</el-switch>
|
||||
</el-form-item>
|
||||
</div>
|
||||
<div
|
||||
class="base-dialog-footer"
|
||||
|
@ -155,6 +169,7 @@ export default {
|
|||
PacsTypeEnum: null,
|
||||
PacsSearchMaxDays: null,
|
||||
MaxStudyCount: null,
|
||||
IsSupportMutiModality: false
|
||||
},
|
||||
rules: {
|
||||
PacsTypeEnum: [
|
||||
|
|
|
@ -137,6 +137,17 @@
|
|||
show-overflow-tooltip
|
||||
sortable="custom"
|
||||
/>
|
||||
<!--IsSupportMutiModality-->
|
||||
<el-table-column
|
||||
:label="$t('system:dicom:table:IsSupportMutiModality')"
|
||||
prop="IsSupportMutiModality"
|
||||
show-overflow-tooltip
|
||||
sortable="custom"
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
<span>{{ $fd('YesOrNo', scope.row.IsSupportMutiModality) }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<!--测试状态-->
|
||||
<el-table-column
|
||||
:label="$t('system:dicom:table:IsTestOK')"
|
||||
|
|
Loading…
Reference in New Issue