Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
smart_gov_platform
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
赵啸非
smart_gov_platform
Commits
03f6b05c
Commit
03f6b05c
authored
Jan 11, 2023
by
“yiyousong”
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.scsmile.cn/zxf/smart_gov_platform
parents
37a2161d
5efb5820
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
84 additions
and
5 deletions
+84
-5
base-manager-ui/admin/.env.yibin
base-manager-ui/admin/.env.yibin
+3
-0
base-manager-ui/admin/package.json
base-manager-ui/admin/package.json
+1
-1
base-manager/pom.xml
base-manager/pom.xml
+25
-0
base-manager/src/main/java/com/mortals/xhx/module/site/service/impl/SiteServiceImpl.java
...mortals/xhx/module/site/service/impl/SiteServiceImpl.java
+1
-1
base-manager/src/test/java/com/mortals/httpclient/site/SiteController.http
...test/java/com/mortals/httpclient/site/SiteController.http
+1
-1
portal-manager-ui/admin/.env.yibin
portal-manager-ui/admin/.env.yibin
+3
-0
portal-manager-ui/admin/package.json
portal-manager-ui/admin/package.json
+1
-0
portal-manager/pom.xml
portal-manager/pom.xml
+26
-1
smart-gateway/pom.xml
smart-gateway/pom.xml
+23
-1
No files found.
base-manager-ui/admin/.env.yibin
0 → 100644
View file @
03f6b05c
#测试环境
NODE_ENV = "yibin"
VUE_APP_API_BASE_URL=http://192.168.2.144:11078
\ No newline at end of file
base-manager-ui/admin/package.json
View file @
03f6b05c
...
...
@@ -8,7 +8,7 @@
"build"
:
"vue-cli-service build --mode production"
,
"beta"
:
"vue-cli-service build --mode beta"
,
"test"
:
"vue-cli-service build --mode test"
,
"y
b"
:
"vue-cli-service build --mode yb
"
,
"y
ibin"
:
"vue-cli-service build --mode yibin
"
,
"build:prod"
:
"vue-cli-service build --model prod"
,
"lint"
:
"vue-cli-service lint"
,
"predeploy"
:
"yarn build"
,
...
...
base-manager/pom.xml
View file @
03f6b05c
...
...
@@ -93,6 +93,31 @@
<skipDeploy>
false
</skipDeploy>
</properties>
</profile>
<profile>
<id>
yibin
</id>
<properties>
<profiles.active>
yibin
</profiles.active>
<profiles.server.ip>
192.168.2.144
</profiles.server.ip>
<profiles.server.port>
17211
</profiles.server.port>
<profiles.nginx.port>
11071
</profiles.nginx.port>
<profiles.server.gatewayport>
11078
</profiles.server.gatewayport>
<profiles.server.path>
/base
</profiles.server.path>
<profiles.publish.path>
/home/publish
</profiles.publish.path>
<profiles.rabbitmq.host>
192.168.2.144
</profiles.rabbitmq.host>
<profiles.rabbitmq.port>
5672
</profiles.rabbitmq.port>
<profiles.rabbitmq.username>
root
</profiles.rabbitmq.username>
<profiles.rabbitmq.password>
xhx@2022
</profiles.rabbitmq.password>
<profiles.rabbitmq.virtualhost>
/
</profiles.rabbitmq.virtualhost>
<profiles.nacos.server-addr>
127.0.0.1:8848
</profiles.nacos.server-addr>
<profiles.nacos.group>
DEFAULT_GROUP
</profiles.nacos.group>
<profiles.nacos.namespace>
smart-gov
</profiles.nacos.namespace>
<profiles.log.path>
/home/mortals/app/logs
</profiles.log.path>
<profiles.log.level>
INFO
</profiles.log.level>
<package.environment>
build
</package.environment>
<skipDeploy>
false
</skipDeploy>
</properties>
</profile>
</profiles>
<dependencies>
...
...
base-manager/src/main/java/com/mortals/xhx/module/site/service/impl/SiteServiceImpl.java
View file @
03f6b05c
...
...
@@ -328,7 +328,7 @@ public class SiteServiceImpl extends AbstractCRUDCacheServiceImpl<SiteDao, SiteE
throw
new
AppException
(
"区域名称查询参数不能为空!"
);
}
//SiteEntity siteCache = this.getCache(query.getId().toString());
AreaEntity
areaEntity
=
areaService
.
getCache
(
query
.
getAreaName
()
);
AreaEntity
areaEntity
=
areaService
.
selectOne
(
new
AreaQuery
().
name
(
query
.
getAreaName
()),
context
);
if
(
ObjectUtils
.
isEmpty
(
areaEntity
)){
throw
new
AppException
(
"区域名称不存在!"
);
}
...
...
base-manager/src/test/java/com/mortals/httpclient/site/SiteController.http
View file @
03f6b05c
...
...
@@ -89,7 +89,7 @@ POST {{baseUrl}}/site/getAreaSitesBySite
Content-Type: application/json
{
"
id":7
"
areaName":"宜宾市"
}
...
...
portal-manager-ui/admin/.env.yibin
0 → 100644
View file @
03f6b05c
#宜宾环境
NODE_ENV = "yibin"
VUE_APP_API_BASE_URL=http://192.168.2.144:11078
\ No newline at end of file
portal-manager-ui/admin/package.json
View file @
03f6b05c
...
...
@@ -6,6 +6,7 @@
"serve"
:
"vue-cli-service serve"
,
"build"
:
"vue-cli-service build"
,
"test"
:
"vue-cli-service build --model test"
,
"yibin"
:
"vue-cli-service build --model yibin"
,
"build:prod"
:
"vue-cli-service build --model prod"
},
"dependencies"
:
{
...
...
portal-manager/pom.xml
View file @
03f6b05c
...
...
@@ -77,7 +77,32 @@
<profiles.rabbitmq.username>
root_mq
</profiles.rabbitmq.username>
<profiles.rabbitmq.password>
xhx@2022
</profiles.rabbitmq.password>
<profiles.rabbitmq.virtualhost>
/
</profiles.rabbitmq.virtualhost>
<profiles.nacos.server-addr>
192.168.0.218:8848
</profiles.nacos.server-addr>
<profiles.nacos.server-addr>
127.0.0.1:8848
</profiles.nacos.server-addr>
<profiles.nacos.group>
DEFAULT_GROUP
</profiles.nacos.group>
<profiles.nacos.namespace>
smart-gov
</profiles.nacos.namespace>
<profiles.log.level>
INFO
</profiles.log.level>
<profiles.log.path>
/mortals/app/logs
</profiles.log.path>
<package.environment>
build
</package.environment>
<skipDeploy>
false
</skipDeploy>
</properties>
</profile>
<profile>
<id>
yibin
</id>
<properties>
<profiles.active>
yibin
</profiles.active>
<profiles.server.ip>
192.168.2.144
</profiles.server.ip>
<profiles.server.port>
17212
</profiles.server.port>
<profiles.nginx.port>
11072
</profiles.nginx.port>
<profiles.server.gatewayport>
11078
</profiles.server.gatewayport>
<profiles.server.path>
/zwfw
</profiles.server.path>
<profiles.publish.path>
/home/publish
</profiles.publish.path>
<profiles.rabbitmq.host>
127.0.0.1
</profiles.rabbitmq.host>
<profiles.rabbitmq.port>
5672
</profiles.rabbitmq.port>
<profiles.rabbitmq.username>
root_mq
</profiles.rabbitmq.username>
<profiles.rabbitmq.password>
xhx@2022
</profiles.rabbitmq.password>
<profiles.rabbitmq.virtualhost>
/
</profiles.rabbitmq.virtualhost>
<profiles.nacos.server-addr>
127.0.0.1:8848
</profiles.nacos.server-addr>
<profiles.nacos.group>
DEFAULT_GROUP
</profiles.nacos.group>
<profiles.nacos.namespace>
smart-gov
</profiles.nacos.namespace>
<profiles.log.level>
INFO
</profiles.log.level>
...
...
smart-gateway/pom.xml
View file @
03f6b05c
...
...
@@ -62,7 +62,7 @@
<profile>
<id>
product
</id>
<properties>
<profiles.active>
tes
t
</profiles.active>
<profiles.active>
produc
t
</profiles.active>
<profiles.server.ip>
192.168.0.251
</profiles.server.ip>
<profiles.server.port>
17214
</profiles.server.port>
<profiles.nginx.port>
11078
</profiles.nginx.port>
...
...
@@ -80,6 +80,28 @@
</properties>
</profile>
<profile>
<id>
yibin
</id>
<properties>
<profiles.active>
yibin
</profiles.active>
<profiles.server.ip>
192.168.2.144
</profiles.server.ip>
<profiles.server.port>
17214
</profiles.server.port>
<profiles.nginx.port>
11078
</profiles.nginx.port>
<profiles.rabbitmq.host>
127.0.0.1
</profiles.rabbitmq.host>
<profiles.rabbitmq.port>
5672
</profiles.rabbitmq.port>
<profiles.rabbitmq.username>
root
</profiles.rabbitmq.username>
<profiles.rabbitmq.password>
xhx@2022
</profiles.rabbitmq.password>
<profiles.rabbitmq.virtualhost>
/
</profiles.rabbitmq.virtualhost>
<profiles.nacos.server-addr>
127.0.0.1:8848
</profiles.nacos.server-addr>
<profiles.nacos.group>
DEFAULT_GROUP
</profiles.nacos.group>
<profiles.nacos.namespace>
smart-gov
</profiles.nacos.namespace>
<profiles.log.level>
INFO
</profiles.log.level>
<profiles.log.path>
/home/mortals/app/logs
</profiles.log.path>
<profiles.publish.path>
/home/publish
</profiles.publish.path>
</properties>
</profile>
</profiles>
<properties>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment