Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
H
holo-web
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
xinkong
holo-web
Commits
5bc12a1d
Commit
5bc12a1d
authored
Oct 07, 2023
by
ninglx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
web服务端口切换
parent
4329a114
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
14 deletions
+15
-14
crossControl.vue
wj-manage-web/src/components/CrossControl/crossControl.vue
+1
-1
simple-card.vue
wj-manage-web/src/components/Standard/simple-card.vue
+1
-1
crossDetail.vue
wj-manage-web/src/views/situation/crossDetail.vue
+11
-10
index.vue
wj-manage-web/src/views/situation/index.vue
+1
-1
vue.config.js
wj-manage-web/vue.config.js
+1
-1
No files found.
wj-manage-web/src/components/CrossControl/crossControl.vue
View file @
5bc12a1d
...
...
@@ -126,7 +126,7 @@ export default {
padding-top: 0.1326rem;
position: relative;
overflow: hidden;
box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.25);
//
box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.25);
}
.crossControl_content_warp {
...
...
wj-manage-web/src/components/Standard/simple-card.vue
View file @
5bc12a1d
...
...
@@ -47,7 +47,7 @@ export default {
border-left: 4px solid #1860a3;
height: 20px;
line-height: 20px;
padding-left:
6
px;
padding-left:
15
px;
font-size: 16px;
width: 100%;
text-align: left;
...
...
wj-manage-web/src/views/situation/crossDetail.vue
View file @
5bc12a1d
...
...
@@ -18,14 +18,14 @@
element-loading-background=
"rgba(0, 0, 0, 0.8)"
>
<div
class=
"item"
:title=
'`服务水平:$
{serviceLevelVal}`'>服务水平:
{{
serviceLevelVal
}}
</div>
<div
class=
"item"
:title=
'`平均运行速度:$
{speedVal}km/h`'>平均运行速度:
{{
speedVal
}}
km/h
</div>
<div
class=
"item"
:title=
'`平均运行速度:$
{speedVal}km/h`'>平均运行速度:
{{
speedVal
}}
km/h
</div>
<div
class=
"item"
:title=
'`路口饱和度:$
{saturationVal}`'>路口饱和度:
{{
saturationVal
}}
</div>
<div
class=
"item"
:title=
'`平均停车次数:$
{stopNumVal}`'>平均停车次数:
{{
stopNumVal
}}
</div>
<div
class=
"item"
:title=
'`拥堵指数:$
{congestIndexVal}`'>拥堵指数:
{{
congestIndexVal
}}
</div>
<div
class=
"item"
:title=
'`最大排队长度:$
{maxQueueLengthVal}m`'>最大排队长度:
{{
maxQueueLengthVal
}}
m
</div>
<div
class=
"item"
:title=
'`小时流量:$
{hourFlowVal}pcu/h`'>小时流量:
{{
hourFlowVal
}}
pcu/h
</div>
<div
class=
"item"
:title=
'`最大排队长度:$
{maxQueueLengthVal}m`'>最大排队长度:
{{
maxQueueLengthVal
}}
m
</div>
<div
class=
"item"
:title=
'`小时流量:$
{hourFlowVal}pcu/h`'>小时流量:
{{
hourFlowVal
}}
pcu/h
</div>
<div
class=
"item"
:title=
'`近一周违法数:$
{illegalNumVal}`'>近一周违法数:
{{
illegalNumVal
}}
</div>
<div
class=
"item"
:title=
'`峰值流量:$
{peakFlowVal}pcu/h`'>峰值流量:
{{
peakFlowVal
}}
pcu/h
</div>
<div
class=
"item"
:title=
'`峰值流量:$
{peakFlowVal}pcu/h`'>峰值流量:
{{
peakFlowVal
}}
pcu/h
</div>
<div
class=
"item"
:title=
'`近一周事故数:$
{accidentNumVal}`'>近一周事故数:
{{
accidentNumVal
}}
</div>
</div>
</simple-card>
...
...
@@ -1117,7 +1117,7 @@ export default {
},
grid
:
{
containLabel
:
true
,
bottom
:
-
2
0
,
bottom
:
-
2
8
,
top
:
26
,
// top: getFontSize(38),
left
:
0
,
...
...
@@ -1154,7 +1154,7 @@ export default {
data
:
(()
=>
{
let
arr
=
[];
for
(
let
item
of
res4
.
content
.
dataList
)
{
console
.
log
(
res4
.
content
);
//
console.log(res4.content);
arr
.
push
(
item
.
dir
);
}
return
arr
;
...
...
@@ -1175,8 +1175,8 @@ export default {
formatter
:
(
val
,
index
)
=>
{
return
this
.
dirDic
[
val
];
},
align
:
"
left
"
,
margin
:
3
0
,
//
align: "left",
// margin:
0,
interval
:
0
,
},
},
...
...
@@ -1385,7 +1385,7 @@ export default {
},
grid
:
{
containLabel
:
true
,
bottom
:
-
2
0
,
bottom
:
-
2
8
,
top
:
26
,
// top: getFontSize(38),
left
:
0
,
...
...
@@ -1560,8 +1560,9 @@ export default {
},
grid
:
{
containLabel
:
true
,
bottom
:
-
2
0
,
bottom
:
-
2
8
,
top
:
26
,
// top: getFontSize(38),
left
:
0
,
right
:
0
,
},
...
...
wj-manage-web/src/views/situation/index.vue
View file @
5bc12a1d
...
...
@@ -582,7 +582,7 @@ export default {
let
socket
=
initWs
({
// url: `${ws_config.CROSS_CONTROL}${nearestCrossId},signal`,
// url: `ws://10.102.1.182:42000/utc/signalStatus/${nearestCrossId},stateMonitor11`,
url
:
`
${
ws_config
.
CROSS_CONTROL
_4200
}${
nearestCrossId
}
,stateMonitor11`
,
url
:
`
${
ws_config
.
CROSS_CONTROL
}${
nearestCrossId
}
,stateMonitor11`
,
callback
:
this
.
callLight
,
name
:
"
callLight
"
,
});
...
...
wj-manage-web/vue.config.js
View file @
5bc12a1d
...
...
@@ -12,7 +12,7 @@ const proxy = {
target
:
'
http://10.102.1.182:9000
'
,
},
'
/web
'
:
{
target
:
'
http://10.102.1.182:9
0
00
'
,
target
:
'
http://10.102.1.182:9
1
00
'
,
},
'
/design
'
:
{
target
:
'
http://10.102.1.182:9000
'
,
...
...
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