This commit is contained in:
ZiJIe 2025-06-24 15:23:59 +08:00
parent c6a37ff805
commit 9af3938029
4 changed files with 7 additions and 20 deletions

View File

@ -68,13 +68,15 @@ spring:
# redis 配置
redis:
# 地址
host: localhost
host: 43.136.31.205
# 端口默认为6379
port: 6379
# 数据库索引
database: 0
# 密码
# password:
password: ygyx8888Redis
# 连接超时时间
timeout: 10s
lettuce:

View File

@ -5,4 +5,4 @@ VUE_APP_TITLE = 若依管理系统
ENV = 'production'
# 若依管理系统/生产环境
VUE_APP_BASE_API = '/prod-api'
VUE_APP_BASE_API = 'https://erp.tashowz.com'

View File

@ -87,22 +87,6 @@ export const constantRoutes = [
meta: { title: '个人中心', icon: 'user' }
}
]
},
{
path: '/banma',
component: Layout,
hidden: false,
redirect: 'noredirect',
name: 'Banma',
meta: { title: '斑马订单', icon: 'shopping' },
children: [
{
path: 'orders',
component: () => import('@/views/banma/orders/index'),
name: 'BanmaOrders',
meta: { title: '订单管理', icon: 'list' }
}
]
}
]

View File

@ -9,8 +9,9 @@ const CompressionPlugin = require('compression-webpack-plugin')
const name = process.env.VUE_APP_TITLE || '若依管理系统' // 网页标题
const baseUrl = 'http://192.168.1.89:8080' // 后端接口
const baseUrl = 'https://erp.tashowz.com' // 后端接口
//const baseUrl = 'http://43.136.31.205:8080'
// const baseUrl = 'http://192.168.1.89:8080'
const port = process.env.port || process.env.npm_config_port || 80 // 端口
// vue.config.js 配置说明