vue2-client 1.16.19 → 1.16.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/utils/routerUtil.js +0 -2
- package/vue.config.js +2 -2
package/package.json
CHANGED
package/src/utils/routerUtil.js
CHANGED
@@ -311,7 +311,6 @@ function deduplicateRouteNames (routes) {
|
|
311
311
|
// 检查是否已经处理过完全相同的路由(名称和路径都相同)
|
312
312
|
if (nameRegistry.has(routeKey)) {
|
313
313
|
// 完全重复的路由,直接跳过
|
314
|
-
console.warn(`跳过完全重复的路由: name=${processedRoute.name}, path=${fullPath}`)
|
315
314
|
return null
|
316
315
|
}
|
317
316
|
|
@@ -322,7 +321,6 @@ function deduplicateRouteNames (routes) {
|
|
322
321
|
if (existingRoute.fullPath !== fullPath) {
|
323
322
|
const parentPathStr = parentPath.join('/')
|
324
323
|
const newName = generateUniqueName(processedRoute.name, parentPathStr)
|
325
|
-
console.log(`重命名路由: ${processedRoute.name} -> ${newName} (路径: ${fullPath})`)
|
326
324
|
processedRoute.name = newName
|
327
325
|
}
|
328
326
|
}
|
package/vue.config.js
CHANGED
@@ -11,11 +11,11 @@ const productionGzipExtensions = ['js', 'css']
|
|
11
11
|
const isProd = process.env.NODE_ENV === 'production'
|
12
12
|
|
13
13
|
// v4 产品演示
|
14
|
-
const v3Server = 'http://
|
14
|
+
const v3Server = 'http://192.168.50.67:31567'
|
15
15
|
// const gateway = 'http://192.168.50.67:31467'
|
16
16
|
// const testUpload = 'http://123.60.214.109:8406'
|
17
17
|
const OSSServerDev = 'http://192.168.50.67:30351'
|
18
|
-
const revenue = 'http://
|
18
|
+
const revenue = 'http://192.168.50.67:31567'
|
19
19
|
// const revenue = 'http://127.0.0.1:31467'
|
20
20
|
// const OSSServerProd = 'http://192.168.50.67:31351'
|
21
21
|
// const testUploadLocal = 'http://127.0.0.1:9001'
|