配置信息调整
This commit is contained in:
parent
41228a4606
commit
4899a15327
4
.env
4
.env
|
@ -2,10 +2,10 @@
|
||||||
VITE_PORT = 3101
|
VITE_PORT = 3101
|
||||||
|
|
||||||
# 网站标题
|
# 网站标题
|
||||||
VITE_GLOB_APP_TITLE = 护理单元业务系统
|
VITE_GLOB_APP_TITLE = 护理单元业务平台
|
||||||
|
|
||||||
# 简称,此变量只能是字符/下划线
|
# 简称,此变量只能是字符/下划线
|
||||||
VITE_GLOB_APP_SHORT_NAME = 护理单元业务系统
|
VITE_GLOB_APP_SHORT_NAME = 护理单元业务平台
|
||||||
|
|
||||||
# 单点登录服务端地址
|
# 单点登录服务端地址
|
||||||
VITE_GLOB_APP_CAS_BASE_URL=http://cas.test.com:8443/cas
|
VITE_GLOB_APP_CAS_BASE_URL=http://cas.test.com:8443/cas
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
VITE_USE_MOCK = false
|
VITE_USE_MOCK = false
|
||||||
|
|
||||||
# 发布路径
|
# 发布路径
|
||||||
VITE_PUBLIC_PATH = /biz102
|
VITE_PUBLIC_PATH = /biz101
|
||||||
|
|
||||||
# 是否启用gzip或brotli压缩
|
# 是否启用gzip或brotli压缩
|
||||||
# 选项值: gzip | brotli | none
|
# 选项值: gzip | brotli | none
|
||||||
|
@ -13,10 +13,10 @@ VITE_BUILD_COMPRESS = 'gzip'
|
||||||
VITE_BUILD_COMPRESS_DELETE_ORIGIN_FILE = false
|
VITE_BUILD_COMPRESS_DELETE_ORIGIN_FILE = false
|
||||||
|
|
||||||
#后台接口父地址(必填)
|
#后台接口父地址(必填)
|
||||||
VITE_GLOB_API_URL=/nursingunit102
|
VITE_GLOB_API_URL=/nursingunit101
|
||||||
|
|
||||||
#后台接口全路径地址(必填)
|
#后台接口全路径地址(必填)
|
||||||
VITE_GLOB_DOMAIN_URL=https://www.focusnu.com/nursingunit102
|
VITE_GLOB_DOMAIN_URL=https://www.focusnu.com/nursingunit101
|
||||||
|
|
||||||
# 接口父路径前缀
|
# 接口父路径前缀
|
||||||
VITE_GLOB_API_URL_PREFIX=
|
VITE_GLOB_API_URL_PREFIX=
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 7.9 KiB After Width: | Height: | Size: 9.0 KiB |
|
@ -34,11 +34,11 @@ export const columns: BasicColumn[] = [
|
||||||
dataIndex: 'phone',
|
dataIndex: 'phone',
|
||||||
width: 100,
|
width: 100,
|
||||||
},
|
},
|
||||||
// {
|
{
|
||||||
// title: '部门',
|
title: '部门',
|
||||||
// width: 150,
|
width: 150,
|
||||||
// dataIndex: 'orgCodeTxt',
|
dataIndex: 'orgCodeTxt',
|
||||||
// },
|
},
|
||||||
{
|
{
|
||||||
title: '可登录类型',
|
title: '可登录类型',
|
||||||
width: 150,
|
width: 150,
|
||||||
|
@ -204,37 +204,37 @@ export const formSchema: FormSchema[] = [
|
||||||
immediate: false,
|
immediate: false,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
// {
|
{
|
||||||
// label: '所属部门',
|
label: '所属部门',
|
||||||
// field: 'selecteddeparts',
|
field: 'selecteddeparts',
|
||||||
// component: 'JSelectDept',
|
component: 'JSelectDept',
|
||||||
// componentProps: ({ formActionType, formModel }) => {
|
componentProps: ({ formActionType, formModel }) => {
|
||||||
// return {
|
return {
|
||||||
// sync: false,
|
sync: false,
|
||||||
// checkStrictly: true,
|
checkStrictly: true,
|
||||||
// defaultExpandLevel: 2,
|
defaultExpandLevel: 2,
|
||||||
|
|
||||||
// onSelect: (options, values) => {
|
onSelect: (options, values) => {
|
||||||
// const { updateSchema } = formActionType;
|
const { updateSchema } = formActionType;
|
||||||
// //所属部门修改后更新负责部门下拉框数据
|
//所属部门修改后更新负责部门下拉框数据
|
||||||
// updateSchema([
|
updateSchema([
|
||||||
// {
|
{
|
||||||
// field: 'departIds',
|
field: 'departIds',
|
||||||
// componentProps: { options },
|
componentProps: { options },
|
||||||
// },
|
},
|
||||||
// ]);
|
]);
|
||||||
// //update-begin---author:wangshuai---date:2024-05-11---for:【issues/1222】用户编辑界面“所属部门”与“负责部门”联动出错整---
|
//update-begin---author:wangshuai---date:2024-05-11---for:【issues/1222】用户编辑界面“所属部门”与“负责部门”联动出错整---
|
||||||
// if(!values){
|
if(!values){
|
||||||
// formModel.departIds = [];
|
formModel.departIds = [];
|
||||||
// return;
|
return;
|
||||||
// }
|
}
|
||||||
// //update-end---author:wangshuai---date:2024-05-11---for:【issues/1222】用户编辑界面“所属部门”与“负责部门”联动出错整---
|
//update-end---author:wangshuai---date:2024-05-11---for:【issues/1222】用户编辑界面“所属部门”与“负责部门”联动出错整---
|
||||||
// //所属部门修改后更新负责部门数据
|
//所属部门修改后更新负责部门数据
|
||||||
// formModel.departIds && (formModel.departIds = formModel.departIds.filter((item) => values.value.indexOf(item) > -1));
|
formModel.departIds && (formModel.departIds = formModel.departIds.filter((item) => values.value.indexOf(item) > -1));
|
||||||
// },
|
},
|
||||||
// };
|
};
|
||||||
// },
|
},
|
||||||
// },
|
},
|
||||||
{
|
{
|
||||||
label: '租户',
|
label: '租户',
|
||||||
field: 'relTenantIds',
|
field: 'relTenantIds',
|
||||||
|
|
Loading…
Reference in New Issue