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
3c53163a
Commit
3c53163a
authored
Jan 22, 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
fa982333
2525380d
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
53 additions
and
20 deletions
+53
-20
feedingBlanking.vue
Html/src/view/fml/operation_manage/feedingBlanking.vue
+32
-17
lineMonitor.vue
Html/src/view/fml/statistical_analysis/lineMonitor.vue
+0
-0
taskList.vue
Html/src/view/fml/statistical_analysis/taskList.vue
+21
-2
tool_boom.vue
Html/src/view/tlm/config/tool_boom.vue
+0
-1
No files found.
Html/src/view/fml/operation_manage/feedingBlanking.vue
View file @
3c53163a
...
...
@@ -24,15 +24,16 @@
<span
class=
"red"
>
*
</span>
</p>
<div
class=
"row"
>
<
p
<
div
:key=
"index"
class=
"options"
v-for=
"(item, index) in
productionLine
"
class=
"options
2
"
v-for=
"(item, index) in
stationList
"
@
click=
"change(index)"
:class=
"
{ active: a == index }"
>
{{
item
.
title
}}
</p>
<p>
{{
item
.
title
}}
</p>
<p>
{{
item
.
status
==
1
?
"待上料"
:
"运行中"
}}
</p>
</div>
</div>
</div>
<div
class=
"choose"
>
...
...
@@ -46,11 +47,8 @@
<label
style=
"font-size: 16px"
>
上料信息:
</label
>
<Input
type=
"text"
class=
"searchInput"
style=
"width: 300px"
></Input>
<Input
type=
"text"
class=
"searchInput"
style=
"width: 300px"
/>
</div>
<div
class=
"row"
>
<p
class=
"flex"
>
...
...
@@ -277,20 +275,25 @@ export default {
method
:
"get"
,
})
.
then
((
res
)
=>
{
this
.
productionLine
=
res
.
data
.
data
;
// this.change(0);
if
(
this
.
productionLine
.
length
==
0
)
{
this
.
$Message
.
error
(
this
.
$t
(
950057
));
if
(
res
.
data
.
ret
==
1
)
{
this
.
productionLine
=
res
.
data
.
data
;
// this.change(0);
if
(
this
.
productionLine
.
length
==
0
)
{
this
.
$Message
.
error
(
this
.
$t
(
950057
));
}
}
});
},
getStations
(
id
)
{
let
data
=
{
line
:
id
,
type
:
0
,
};
this
.
request
(
"/
qms/RepairPostionSetting/GetSettingByChanel?Id="
+
id
,
""
,
"/
acc/AutomationOperate/GetloadStation"
,
data
,
"get"
).
then
((
res
)
=>
{
// console.log(res.data.data);
if
(
res
.
data
.
ret
==
1
)
{
this
.
stationList
=
res
.
data
.
data
;
}
...
...
@@ -374,6 +377,18 @@ export default {
margin-right
:
50px
;
cursor
:
pointer
;
}
.options2
{
font-size
:
12px
;
padding
:
0
12px
;
height
:
50px
;
line-height
:
25px
;
text-align
:
center
;
border-radius
:
5px
;
background-color
:
#f2f2f2
;
margin
:
10px
0
;
margin-right
:
50px
;
cursor
:
pointer
;
}
.active
{
background-color
:
#2d8cf0
;
color
:
#fff
;
...
...
Html/src/view/fml/statistical_analysis/lineMonitor.vue
View file @
3c53163a
This diff is collapsed.
Click to expand it.
Html/src/view/fml/statistical_analysis/taskList.vue
View file @
3c53163a
...
...
@@ -44,11 +44,11 @@
</div>
<div
class=
"filter"
>
<label>
任务编号:
</label>
<Input
type=
"text"
class=
"searchInput"
></Input
>
<Input
type=
"text"
class=
"searchInput"
/
>
</div>
<div
class=
"filter"
>
<label>
工件编号:
</label>
<Input
type=
"text"
class=
"searchInput"
></Input
>
<Input
type=
"text"
class=
"searchInput"
/
>
</div>
<div
class=
"filter"
>
<label>
状态:
</label>
...
...
@@ -138,6 +138,8 @@
</
template
>
<
script
>
import
axios
from
"@/libs/api.request"
;
export
default
{
data
()
{
return
{
...
...
@@ -259,6 +261,23 @@ export default {
}
});
},
exportExcel
(){
let
data
=
{};
this
.
axios
.
request
({
url
:
""
,
data
,
method
:
""
,
})
.
then
((
res
)
=>
{
if
(
res
.
data
.
ret
===
1
)
{
window
.
location
.
href
=
axios
.
publicPath
+
""
+
res
.
data
.
data
;
}
else
{
this
.
$Message
.
error
(
this
.
$t
(
res
.
data
.
msg
));
}
});
}
},
};
</
script
>
...
...
Html/src/view/tlm/config/tool_boom.vue
View file @
3c53163a
...
...
@@ -722,7 +722,6 @@ export default {
alert
(
err
.
msg
);
});
},
request
(
url
,
data
,
type
)
{
if
(
type
==
"get"
)
{
return
this
.
axios
...
...
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