1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| /*
| * @Author : yuan
| * @Date : 2025-06-13 09:48:50
| * @LastEditors : yuan
| * @LastEditTime : 2025-06-25 10:13:27
| * @FilePath : \src\buildConfig\gateWayConfig\defaultGateWay.js
| * @Description :
| * Copyright 2025 OBKoro1, All Rights Reserved.
| * 2025-06-13 09:48:50
| */
| export default {
| // 其他私有化相关配置
| gatewayMenu: [
| {
| normal: new URL('@/assets/images/login/zhglpt.png', import.meta.url).href,
| active: new URL('@/assets/images/login/zhglpt-active.png', import.meta.url).href,
| },
| {
| normal: new URL('@/assets/images/login/zhddpt.png', import.meta.url).href,
| active: new URL('@/assets/images/login/zhddpt-active.png', import.meta.url).href,
| },
| {
| normal: new URL('@/assets/images/login/aiskys-sfpt.png', import.meta.url).href,
| active: new URL('@/assets/images/login/aiskys-sfpt-active.png', import.meta.url).href,
| },
| ],
| }
|
|