You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.3 KiB
45 lines
1.3 KiB
/** @format */
|
|
import { dateUtil } from '/nerv-lib/util/date-util';
|
|
|
|
export const appConfig = {
|
|
projectType: 'web',
|
|
baseApi: '/api',
|
|
enablePermissions: false,
|
|
// siderPosition: 'left',
|
|
baseHeader: '/parkingManage',
|
|
baseRouter: '/parkingManage/parkingLotManage',
|
|
userCustomRouterGuard: (to, from, next, whiteNameList, authorizationStore, appConfig) => {
|
|
console.log({ to, from, next, whiteNameList, authorizationStore, appConfig }, 'routeConfig');
|
|
next();
|
|
},
|
|
customUpdatePwd: () => import('/@/view/updatePassword/updatePassword.vue'),
|
|
timeout: 60 * 1000,
|
|
userLoginApi: 'api/web/objs/Login',
|
|
// userResourceApi: '/api/web/objs/User/Resource',
|
|
// userInfoApi: 'api/web/objs/CurrentUser',
|
|
useHistoryTag: false,
|
|
// 修改密码配置
|
|
updatePassWordInfo: {
|
|
title: '修改密码',
|
|
subtitle: '芜优出行平台',
|
|
api: '/api/web/objs/User/changePassword',
|
|
},
|
|
// headerBellInfo: {
|
|
// isShow: true,
|
|
// api: '/api/web/objs/bulletin/readCount',
|
|
// toRouterName: 'NoticeManageIndex',
|
|
// },
|
|
resourceInfo: {
|
|
application: {
|
|
version: '1.1.74',
|
|
label: '停车业务平台',
|
|
dataScope: {
|
|
scopeMode: 0,
|
|
scopeType: '',
|
|
dataTips: '',
|
|
},
|
|
},
|
|
api: '/qa/Operation/Resources/Pc/init',
|
|
token: `${dateUtil().format('YYYYMMDD')}1a329ffasasozozxqq66cfab7`,
|
|
},
|
|
};
|
|
|