Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
9df512f7
提交
9df512f7
authored
1月 20, 2021
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
增加依赖
上级
81d047d6
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
103 行增加
和
1 行删除
+103
-1
VideoUploadCom.jsx
one_stop_public/libs/VideoUploadCom.jsx
+1
-1
queryConfig.js
one_stop_public/libs/queryConfig.js
+102
-0
没有找到文件。
one_stop_public/libs/VideoUploadCom.jsx
浏览文件 @
9df512f7
import
React
from
'react'
import
{
extend
}
from
'umi-request'
;
import
queryConfig
from
"
@/utils
/queryConfig"
;
import
queryConfig
from
"
.
/queryConfig"
;
import
{
Upload
,
message
}
from
'antd'
;
import
{
isJSON
}
from
"@/webPublic/one_stop_public/copy"
;
...
...
one_stop_public/libs/queryConfig.js
0 → 100644
浏览文件 @
9df512f7
/**
* @param key 配置文件中 key
* @author yyq
* @version 0.0.1
* @return 配置信息
* @description
* 当未传入key时返回config对象
* 当key存在是且存在对应key值时返回key值 否则返回config对象
* */
const
queryConfig
=
(
key
)
=>
{
const
dynamicConfig
=
window
.
CONFIG
;
if
(
typeof
key
===
"undefined"
)
return
dynamicConfig
;
return
typeof
dynamicConfig
[
key
]
===
"undefined"
?
dynamicConfig
:
dynamicConfig
[
key
];
};
/**
* @description 获取系统编码
* */
export
const
querySysCode
=
()
=>
queryConfig
(
"SYSCODE"
);
/**
* @description 获取服务端请求路径前戳
* */
export
const
queryOauthActionPath
=
()
=>
queryConfig
(
"OAUTH_ACTION_PATH"
);
/**
* @description 获取服务端请求路径前戳
* */
export
const
queryPermActionPath
=
()
=>
queryConfig
(
"PERM_ACTION_PATH"
);
export
const
queryWsPath
=
()
=>
queryConfig
(
"WS_PATH"
);
/**
* @description 获取服务端请求路径前戳
* */
export
const
queryApiActionPath
=
()
=>
queryConfig
(
"API_ACTION_PATH"
);
/**
* @description 获取文件上传地址
* */
export
const
queryFileUploadActionPath
=
()
=>
queryConfig
(
"FILE_UPLOAD_ACTION_PATH"
);
/**
* @description 获取layout头部logo名称
* */
export
const
queryLayoutHeaderLogo
=
()
=>
queryConfig
(
"LAYOUT_HEADER_LOGO"
);
/**
* @description 获取登录页面头部logo名称
* */
export
const
queryLoginHeaderLogo
=
()
=>
queryConfig
(
"LOGIN_HEADER_LOGO"
);
/**
* @description 获取系统名称
* */
export
const
querySystemName
=
()
=>
queryConfig
(
"SYSTEM_NAME"
);
/**
* @description 获取layout头部系统欢迎语
* */
export
const
queryLayoutHeaderSystemWelcome
=
()
=>
queryConfig
(
"LAYOUT_HEADER_SYSTEM_WELCOME"
);
/**
* @description 获取layout类型
* */
export
const
queryLayoutType
=
()
=>
queryConfig
(
"LAYOUT_TYPE"
);
/**
* @description 获取layout头部中间背景图片
* */
export
const
queryLayoutHeaderCenterBackground
=
()
=>
queryConfig
(
"LAYOUT_HEADER_CENTER_BACKGROUND"
);
/**
* @description 获取layout菜单底部背景图片
* */
export
const
queryLayoutSiderFooterBackground
=
()
=>
queryConfig
(
"LAYOUT_SIDER_FOOTER_BACKGROUND"
);
/**
* @description 获取登录页面登录框旁背景图片
* */
export
const
queryLoginBackground
=
()
=>
queryConfig
(
"LOGIN_BACKGROUND"
);
/**
* @description 获取动态图片前缀
* */
export
const
queryDynamicImagePrefix
=
()
=>
`
${
window
.
publicPath
}
images/dynamic/`
;
/**
* @description 获取配置项路由是否需要权限控制
* */
export
const
queryCheckPath
=
()
=>
queryConfig
(
"CHECK_PATH"
);
/**
* @description 获取配置项路由是否需要权限控制
* */
export
const
queryLoginRedirect
=
()
=>
queryConfig
(
"LOGIN_REDIRECT"
);
export
default
queryConfig
;
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论