提交 ac50ca98 authored 作者: 钟是志's avatar 钟是志

用户授权功能开发

上级 c19401be
......@@ -22,3 +22,6 @@ export function getIsGong_Mao() { // 判断当前环境是不是成都工贸
return window.specialImportantSystemConfig?.schoolName && window.specialImportantSystemConfig?.schoolName.indexOf('成都工贸') > -1;
}
export function getIsYsgz() { // 判断当前环境是不是云上贵州
return window.specialImportantSystemConfig?.schoolName && window.specialImportantSystemConfig?.schoolName.indexOf('知用科技有限公司') > -1;
}
......@@ -9,6 +9,7 @@ import {
getSysConfig as getSysConfigLocalStorage,
} from '@/webPublic/zyd_private/utils/basiclayout';
import { getOneStopConfig } from '@/webPublic/zyd_public/utils/utils';
import { getIsYsgz } from '@/webPublic/zyd_public/utils/getSchoolType';
function formatUploadFile(fileList) {
if (!fileList || !Array.isArray(fileList)) return [];
......@@ -60,7 +61,12 @@ export const valueTypes = {
};
export function getSysConfig() {
return getInfo({ pageSize: 10000 }, '/WebConfigApi/getPage?oauthPub=true')
let url = '/WebConfigApi/getPage?oauthPub=true';
if(getIsYsgz()){
url = '/WebConfigApi/getPage';
}
return getInfo({ pageSize: 10000 }, url)
.then((res) => {
if (res && res.rows && res.rows.length) {
const formattered = res.rows.reduce((acc, cur) => {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论