Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
Laisi_AutoMES2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
jiawei.su
Laisi_AutoMES2
Commits
1f526f2e
Commit
1f526f2e
authored
Jan 25, 2021
by
xin.yang
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://test.siger-data.com:9000/jiawei.su/Laisi_AutoMES2
parents
621d7302
01ef29c3
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
24 additions
and
17 deletions
+24
-17
feedingBlanking.vue
Html/src/view/fml/operation_manage/feedingBlanking.vue
+8
-8
lineMonitor.vue
Html/src/view/fml/statistical_analysis/lineMonitor.vue
+10
-8
AutomationStateController.cs
...pis/Siger.ApiACC/Controllers/AutomationStateController.cs
+1
-1
ResponseLoadStation.cs
...er.Middlelayer.Repository/Response/ResponseLoadStation.cs
+5
-0
No files found.
Html/src/view/fml/operation_manage/feedingBlanking.vue
View file @
1f526f2e
...
...
@@ -263,7 +263,7 @@ export default {
a
:
-
1
,
b
:
-
1
,
attr1
:
false
,
//上料、下料、上下料
attr2
:
tru
e
,
//上料、下料、上下料
attr2
:
fals
e
,
//上料、下料、上下料
modal
:
false
,
code
:
""
,
//工令单
columns1
:
[
...
...
@@ -370,13 +370,13 @@ export default {
this
.
b
=
index
;
let
status
=
this
.
stationList
[
index
].
status
;
this
.
sectionid
=
this
.
stationList
[
index
].
section
;
if
(
status
==
3
)
{
this
.
attr1
=
true
;
this
.
tabindex
=
"2"
;
this
.
getRunningDetail
(
index
);
}
else
{
this
.
attr2
=
true
;
}
//
if (status == 3) {
//
this.attr1 = true;
//
this.tabindex = "2";
//
this.getRunningDetail(index);
//
} else {
//
this.attr2 = true;
//
}
if
(
status
==
2
)
{
this
.
getRunningDetail
(
index
);
}
...
...
Html/src/view/fml/statistical_analysis/lineMonitor.vue
View file @
1f526f2e
...
...
@@ -10,6 +10,7 @@
class=
"searchSelect"
:data=
"datalevel"
:value=
"leveldata"
change-on-select
@
on-change=
"getSectionId"
></Cascader>
</div>
...
...
@@ -34,6 +35,10 @@
<div
class=
"divborder"
>
<div
class=
"stateTitle flex"
>
<p>
<span>
{{
summary
.
waittingTotal
}}
</span
>
待上料
</p>
<p>
<span>
{{
summary
.
produceTotal
}}
</span
>
生产中
</p>
...
...
@@ -41,10 +46,7 @@
<span>
{{
summary
.
complateTotal
}}
</span
>
待下料
</p>
<p>
<span>
{{
summary
.
waittingTotal
}}
</span
>
待上料
</p>
<p>
<span>
{{
summary
.
disableTotal
}}
</span
>
不可用
...
...
@@ -347,10 +349,10 @@ export default {
bgc
=
"red"
;
}
if
(
ele
.
status
==
1
)
{
bgc
=
"#
2db7f5
"
;
bgc
=
"#
ff9900
"
;
}
if
(
ele
.
status
==
2
)
{
bgc
=
"#
ff9900
"
;
bgc
=
"#
2db7f5
"
;
}
if
(
ele
.
status
==
3
)
{
bgc
=
"#19be6b"
;
...
...
@@ -445,13 +447,13 @@ export default {
//
border
:
1px
solid
#333
;
}
}
p
:nth-child
(
1
)
span
{
p
:nth-child
(
3
)
span
{
background-color
:
#2db7f5
;
}
p
:nth-child
(
2
)
span
{
background-color
:
#19be6b
;
}
p
:nth-child
(
3
)
span
{
p
:nth-child
(
1
)
span
{
background-color
:
#ff9900
;
}
p
:nth-child
(
4
)
span
{
...
...
Server/Apis/Siger.ApiACC/Controllers/AutomationStateController.cs
View file @
1f526f2e
...
...
@@ -58,7 +58,7 @@ namespace Siger.ApiACC.Controllers
fixtureCode
=
""
,
fixtureName
=
""
,
lastupdate
=
""
,
status
=
0
,
status
=
(
int
)
Automation
.
MachineStatus
.
Waiting
,
};
var
fixture
=
_automationFixtureMonitor
.
Get
(
f
=>
f
.
section
==
d
.
sectionid
);
...
...
Server/Infrastructure/Repositories/Siger.Middlelayer.Repository/Response/ResponseLoadStation.cs
View file @
1f526f2e
...
...
@@ -18,5 +18,10 @@ namespace Siger.Middlelayer.Repository.Response
/// 上料位状态
/// </summary>
public
int
status
{
get
;
set
;
}
/// <summary>
/// 1 :可以上料 2:可以下料
/// </summary>
public
int
upload
{
get
;
set
;
}
}
}
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