Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
device-new-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
赵啸非
device-new-platform
Commits
eec0fc77
Commit
eec0fc77
authored
Nov 17, 2022
by
赵啸非
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改站点请求地址
parent
de75bee0
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
8 additions
and
8 deletions
+8
-8
assembly/assembly.xml
assembly/assembly.xml
+1
-0
device-manager-ui/admin/.env
device-manager-ui/admin/.env
+1
-1
device-manager-ui/admin/.env.production
device-manager-ui/admin/.env.production
+1
-1
device-manager-ui/admin/.env.test
device-manager-ui/admin/.env.test
+1
-1
device-manager/db/add.sql
device-manager/db/add.sql
+1
-1
device-manager/db/module.sql
device-manager/db/module.sql
+1
-3
device-manager/pom.xml
device-manager/pom.xml
+1
-0
device-manager/src/main/java/com/mortals/xhx/module/device/service/impl/DeviceModuleDistributeServiceImpl.java
...evice/service/impl/DeviceModuleDistributeServiceImpl.java
+1
-1
No files found.
assembly/assembly.xml
View file @
eec0fc77
...
@@ -29,6 +29,7 @@
...
@@ -29,6 +29,7 @@
<outputDirectory>
db
</outputDirectory>
<outputDirectory>
db
</outputDirectory>
<fileMode>
0755
</fileMode>
<fileMode>
0755
</fileMode>
</fileSet>
</fileSet>
</fileSets>
</fileSets>
<files>
<files>
...
...
device-manager-ui/admin/.env
View file @
eec0fc77
...
@@ -11,5 +11,5 @@ VUE_APP_WEBSOCKET_API =127.0.0.1:18222/m
...
@@ -11,5 +11,5 @@ VUE_APP_WEBSOCKET_API =127.0.0.1:18222/m
VUE_APP_PORTAL_URL = http://192.168.0.98:11072
VUE_APP_PORTAL_URL = http://192.168.0.98:11072
# 站点请求地址
# 站点请求地址
VUE_APP_SITETREE_URL = http://192.168.0.98:1
8222/m
/site/siteTree
VUE_APP_SITETREE_URL = http://192.168.0.98:1
1078/base
/site/siteTree
device-manager-ui/admin/.env.production
View file @
eec0fc77
...
@@ -12,4 +12,4 @@ VUE_APP_PORTAL_URL = http://192.168.0.251:11072
...
@@ -12,4 +12,4 @@ VUE_APP_PORTAL_URL = http://192.168.0.251:11072
# 站点请求地址
# 站点请求地址
VUE_APP_SITETREE_URL = http://192.168.0.251:18222/m/site/siteTree
VUE_APP_SITETREE_URL = http://192.168.0.251:11078/base/site/siteTree
\ No newline at end of file
\ No newline at end of file
device-manager-ui/admin/.env.test
View file @
eec0fc77
...
@@ -12,4 +12,4 @@ VUE_APP_PORTAL_URL = http://192.168.0.98:11072
...
@@ -12,4 +12,4 @@ VUE_APP_PORTAL_URL = http://192.168.0.98:11072
# 站点请求地址
# 站点请求地址
VUE_APP_SITETREE_URL
=
http
://
192.168
.
0.98
:
18222
/
m
/
site
/
siteTree
VUE_APP_SITETREE_URL
=
http
://
192.168
.
0.98
:
11078
/
base
/
site
/
siteTree
\ No newline at end of file
\ No newline at end of file
device-manager/db/add.sql
View file @
eec0fc77
...
@@ -7,7 +7,7 @@ ALTER TABLE mortals_xhx_device ADD COLUMN `deviceSN` varchar (512) COMMENT '
...
@@ -7,7 +7,7 @@ ALTER TABLE mortals_xhx_device ADD COLUMN `deviceSN` varchar (512) COMMENT '
ALTER
TABLE
mortals_xhx_product
ADD
COLUMN
`skinId`
bigint
(
20
)
COMMENT
'皮肤id'
AFTER
productCode
;
ALTER
TABLE
mortals_xhx_product
ADD
COLUMN
`skinId`
bigint
(
20
)
COMMENT
'皮肤id'
AFTER
productCode
;
ALTER
TABLE
mortals_xhx_product
ADD
COLUMN
`skinName`
varchar
(
512
)
COMMENT
'皮肤名称'
AFTER
skinId
;
ALTER
TABLE
mortals_xhx_product
ADD
COLUMN
`skinName`
varchar
(
512
)
COMMENT
'皮肤名称'
AFTER
skinId
;
ALTER
TABLE
mortals_xhx_
device
ADD
COLUMN
`eventUrl`
varchar
(
512
)
COMMENT
'事件地址'
AFTER
homeUrl
;
ALTER
TABLE
mortals_xhx_
product
ADD
COLUMN
`eventUrl`
varchar
(
512
)
COMMENT
'事件地址'
AFTER
homeUrl
;
...
...
device-manager/db/module.sql
View file @
eec0fc77
use
use
`device-platform`
;
`device-platform`
;
-- ----------------------------
-- ----------------------------
-- 设备表
-- 设备表
-- ----------------------------
-- ----------------------------
...
...
device-manager/pom.xml
View file @
eec0fc77
...
@@ -325,6 +325,7 @@
...
@@ -325,6 +325,7 @@
<workingDirectory>
${project.parent.basedir}/device-manager-ui/admin
</workingDirectory>
<workingDirectory>
${project.parent.basedir}/device-manager-ui/admin
</workingDirectory>
</configuration>
</configuration>
</execution>
</execution>
</executions>
</executions>
</plugin>
</plugin>
...
...
device-manager/src/main/java/com/mortals/xhx/module/device/service/impl/DeviceModuleDistributeServiceImpl.java
View file @
eec0fc77
...
@@ -73,7 +73,7 @@ public class DeviceModuleDistributeServiceImpl extends AbstractCRUDServiceImpl<D
...
@@ -73,7 +73,7 @@ public class DeviceModuleDistributeServiceImpl extends AbstractCRUDServiceImpl<D
}
}
//部署路径是否存在 如果不存在 创建目录,
//部署路径是否存在 如果不存在 创建目录,
String
path
=
GlobalSysInfo
.
getParamValue
(
Constant
.
DISTRIBUTE_PATH
,
"/home/publish/device-
new-
manager-ui/homeDeviceUrl"
);
String
path
=
GlobalSysInfo
.
getParamValue
(
Constant
.
DISTRIBUTE_PATH
,
"/home/publish/device-manager-ui/homeDeviceUrl"
);
String
code
=
distributeEntity
.
getProductCode
();
String
code
=
distributeEntity
.
getProductCode
();
...
...
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