From 51eed6510f7de98caf42fee15ff844d2ba7ca796 Mon Sep 17 00:00:00 2001
From: lxd <1004405501@qq.com>
Date: Thu, 12 Sep 2024 12:18:57 +0800
Subject: [PATCH] =?UTF-8?q?=E6=9C=BA=E6=9E=84=E5=A2=9E=E5=8A=A0dcm?=
=?UTF-8?q?=E5=89=8D=E7=BC=80=E5=92=8C=E5=9C=B0=E5=9D=80=E5=AD=97=E6=AE=B5?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.env | 6 +++---
src/api/system/org/index.ts | 2 ++
src/views/system/org/OrgForm.vue | 10 ++++++++++
3 files changed, 15 insertions(+), 3 deletions(-)
diff --git a/.env b/.env
index deeb6b50..ffb2aaec 100644
--- a/.env
+++ b/.env
@@ -11,7 +11,7 @@ VITE_OPEN=true
VITE_APP_TENANT_ENABLE=true
# 验证码的开关
-VITE_APP_CAPTCHA_ENABLE=false
+VITE_APP_CAPTCHA_ENABLE=true
# 文档地址的开关
VITE_APP_DOCALERT_ENABLE=false
@@ -21,5 +21,5 @@ VITE_APP_BAIDU_CODE = a1ff8825baa73c3a78eb96aa40325abc
# 默认账户密码
VITE_APP_DEFAULT_LOGIN_TENANT = 芋道源码
-VITE_APP_DEFAULT_LOGIN_USERNAME = admin
-VITE_APP_DEFAULT_LOGIN_PASSWORD = admin123
+VITE_APP_DEFAULT_LOGIN_USERNAME =
+VITE_APP_DEFAULT_LOGIN_PASSWORD =
diff --git a/src/api/system/org/index.ts b/src/api/system/org/index.ts
index 0bdb72bf..c609472a 100644
--- a/src/api/system/org/index.ts
+++ b/src/api/system/org/index.ts
@@ -14,6 +14,8 @@ export interface OrgVO {
createDate: Date // 创建时间:年月日时分秒
highLevelOrgName: string // 上级机构的机构名称
orgLogoUrl: string // 机构logo的URL
+ dcmprefix:string//机构dcm前缀
+ dcmurl:string//dcm地址
}
// 机构管理 API
diff --git a/src/views/system/org/OrgForm.vue b/src/views/system/org/OrgForm.vue
index 42d67501..4eaeb32b 100644
--- a/src/views/system/org/OrgForm.vue
+++ b/src/views/system/org/OrgForm.vue
@@ -49,6 +49,12 @@
+
+
+
+
+
+
确 定
@@ -83,6 +89,8 @@ const formData = ref({
createDate: undefined,
highLevelOrgName: undefined,
orgLogoUrl: undefined,
+ dcmprefix:undefined,
+ dcmurl:undefined
})
const formRules = reactive({
@@ -167,6 +175,8 @@ const resetForm = () => {
createDate: undefined,
highLevelOrgName: undefined,
orgLogoUrl: undefined,
+ dcmprefix:undefined,
+ dcmurl:undefined
}
formRef.value?.resetFields()
}