机构增加云胶片地址字段
This commit is contained in:
parent
301715cbd6
commit
7923de94b7
@ -17,6 +17,7 @@ export interface OrgVO {
|
||||
dcmprefix:string//机构dcm前缀
|
||||
dcmurl:string//dcm地址
|
||||
enableCloudDicom:string //是否启用云胶片
|
||||
cloudDicom:string//云胶片地址
|
||||
}
|
||||
|
||||
// 机构管理 API
|
||||
|
@ -61,6 +61,9 @@
|
||||
<el-radio-button label="关闭" value="0" />
|
||||
</el-radio-group>
|
||||
</el-form-item>
|
||||
<el-form-item label="云胶片地址" prop="cloudDicom" label-width="130px">
|
||||
<el-input v-model="formData.cloudDicom" placeholder="请输入云胶片地址" />
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<template #footer>
|
||||
<el-button
|
||||
@ -106,7 +109,8 @@ const formData = ref({
|
||||
orgLogoUrl: undefined,
|
||||
dcmprefix: undefined,
|
||||
dcmurl: undefined,
|
||||
enableCloudDicom: '0'
|
||||
enableCloudDicom: '0',
|
||||
cloudDicom:undefined
|
||||
})
|
||||
const formRules = reactive({
|
||||
orgID: [{ required: true, message: '请输入机构编码', trigger: 'blur' }],
|
||||
@ -187,7 +191,8 @@ const resetForm = () => {
|
||||
orgLogoUrl: undefined,
|
||||
dcmprefix: undefined,
|
||||
dcmurl: undefined,
|
||||
enableCloudDicom: '0'
|
||||
enableCloudDicom: '0',
|
||||
cloudDicom:undefined
|
||||
}
|
||||
formRef.value?.resetFields()
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user