Compare commits

..

1 Commits

Author SHA1 Message Date
田朝盛
e53a3408a8
Pre Merge pull request !39 from 田朝盛/N/A 2025-11-11 14:03:43 +00:00
2 changed files with 17 additions and 19 deletions

View File

@ -19,24 +19,23 @@ spring:
max-file-size: 10MB max-file-size: 10MB
max-request-size: 100MB max-request-size: 100MB
# REDIS数据库配置 # REDIS数据库配置
data: redis:
redis: # [必须修改] Redis服务器IP, REDIS安装在本机的,使用127.0.0.1
# [必须修改] Redis服务器IP, REDIS安装在本机的,使用127.0.0.1 host: 127.0.0.1
host: 127.0.0.1 # [必须修改] 端口号
# [必须修改] 端口号 port: 6379
port: 6379 # [可选] 数据库 DB
# [可选] 数据库 DB database: 6
database: 6 # [可选] 访问密码,若你的redis服务器没有设置密码就不需要用密码去连接
# [可选] 访问密码,若你的redis服务器没有设置密码就不需要用密码去连接 password:
password: # [可选] 超时时间
# [可选] 超时时间 timeout: 10000
timeout: 10000 # [可选] 一个pool最多可分配多少个jedis实例
# [可选] 一个pool最多可分配多少个jedis实例 poolMaxTotal: 1000
poolMaxTotal: 1000 # [可选] 一个pool最多有多少个状态为idle(空闲)的jedis实例
# [可选] 一个pool最多有多少个状态为idle(空闲)的jedis实例 poolMaxIdle: 500
poolMaxIdle: 500 # [可选] 最大的等待时间(秒)
# [可选] 最大的等待时间(秒) poolMaxWait: 5
poolMaxWait: 5
# [必选] jdbc数据库配置 # [必选] jdbc数据库配置
datasource: datasource:
# kingbase配置 # kingbase配置

View File

@ -198,7 +198,6 @@ export default {
}, },
refreshLayer(){ refreshLayer(){
this.closeInfoBox() this.closeInfoBox()
// //
if (channelLayer) { if (channelLayer) {
this.$refs.mapComponent.refreshLayer(channelLayer) this.$refs.mapComponent.refreshLayer(channelLayer)