Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mes-ui
Project
Project
Details
Activity
Releases
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
周远喜
mes-ui
Commits
9537973d
Commit
9537973d
authored
Jun 15, 2020
by
kangzhenfei
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'product-kk' into product
parents
86183518
44a17143
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
198 additions
and
0 deletions
+198
-0
datalist.vue
pages/dncmnc/dnc/datalist.vue
+14
-0
index.vue
pages/dncmnc/dnc/index.vue
+150
-0
index.vue
pages/dncmnc/mnc/index.vue
+34
-0
No files found.
pages/dncmnc/dnc/datalist.vue
0 → 100644
View file @
9537973d
<
template
>
<div>
数据传输
</div>
</
template
>
<
script
>
export
default
{
data
()
{
return
{
};
},
}
</
script
>
\ No newline at end of file
pages/dncmnc/dnc/index.vue
0 → 100644
View file @
9537973d
<
template
>
<div
class=
"dnc_box"
>
<!-- 数据传输 -->
<DataGrid
:columns=
"columns"
ref=
"grid"
:action=
"action"
:data=
"data"
:high=
"false"
></DataGrid>
</div>
</
template
>
<
script
>
export
default
{
components
:
{},
data
()
{
return
{
columns
:
[
{
key
:
"projectNo"
,
title
:
"物料编码"
},
{
key
:
"lingNo"
,
title
:
"零件图号"
},
{
key
:
"lingName"
,
title
:
"零件名称"
},
{
key
:
"produCode"
,
title
:
"工艺规程/工序号"
},
{
key
:
"produName"
,
title
:
"工序名称"
},
{
key
:
"projecName"
,
title
:
"程序名称"
},
{
key
:
"fileName"
,
title
:
"程序文件名称"
},
{
key
:
"tvb"
,
title
:
"版本"
},
{
key
:
"creatUser"
,
title
:
"创建人"
,
width
:
"100"
},
{
key
:
"statue"
,
title
:
"状态"
,
width
:
"100"
},
{
key
:
"id"
,
title
:
"操作"
,
width
:
120
,
render
:
(
h
,
params
)
=>
{
return
h
(
"div"
,{
class
:
"action"
},[
h
(
"op"
,
{
on
:{
click
:()
=>
{
this
.
edit
(
params
.
row
)
}}
},
"编辑"
),
])
}
},
{
key
:
"notse"
,
title
:
"备注"
}
],
data
:
[
{
projectNo
:
"1102347890"
,
id
:
1
,
lingNo
:
"dd4.rt5.991"
,
lingName
:
"轴承"
,
produCode
:
"JJGYI-001/1"
,
produName
:
"车"
,
projecName
:
"精车文件"
,
fileName
:
"dd4rt5991.1.A.txt"
,
tvb
:
"A"
,
creatUser
:
"刘建"
,
statue
:
"受控"
,
notse
:
"适用于MDF设备"
},
{
projectNo
:
"1102347890"
,
id
:
2
,
lingNo
:
"dd4.rt5.991"
,
lingName
:
"轴承"
,
produCode
:
"JJGYI-001/1"
,
produName
:
"车"
,
projecName
:
"精车文件"
,
fileName
:
"dd4rt5991.1.A.txt"
,
tvb
:
"A"
,
creatUser
:
"刘建"
,
statue
:
"受控"
,
notse
:
"适用于MDF设备"
},
{
projectNo
:
"1102347890"
,
id
:
3
,
lingNo
:
"dd4.rt5.991"
,
lingName
:
"轴承"
,
produCode
:
"JJGYI-001/1"
,
produName
:
"车"
,
projecName
:
"精车文件"
,
fileName
:
"dd4rt5991.1.A.txt"
,
tvb
:
"A"
,
creatUser
:
"刘建"
,
statue
:
"受控"
,
notse
:
"适用于MDF设备"
},
{
projectNo
:
"1102347890"
,
id
:
4
,
lingNo
:
"dd4.rt5.991"
,
lingName
:
"轴承"
,
produCode
:
"JJGYI-001/1"
,
produName
:
"车"
,
projecName
:
"精车文件"
,
fileName
:
"dd4rt5991.1.A.txt"
,
tvb
:
"A"
,
creatUser
:
"刘建"
,
statue
:
"受控"
,
notse
:
"适用于MDF设备"
}
]
};
},
created
()
{},
mounted
()
{
this
.
loadDuration
();
},
methods
:
{
edit
(
rowData
){
console
.
log
(
rowData
)
},
},
computed
:
{},
watch
:
{}
};
</
script
>
\ No newline at end of file
pages/dncmnc/mnc/index.vue
0 → 100644
View file @
9537973d
<
template
>
<div
class=
"dnc_box"
>
设备监控
<DataGrid
:columns=
"columnsDuration"
ref=
"gridDuration"
:data=
"data"
:high=
"false"
:page=
"false"
:batch=
"false"
:easy=
"false"
:set=
"false"
:height=
"400"
:tool=
"false"
></DataGrid>
</div>
</
template
>
<
script
>
export
default
{
components
:
{},
data
()
{
return
{
columnsDuration
:
[]
};
},
created
()
{},
mounted
()
{
this
.
loadDuration
();
},
methods
:
{},
computed
:
{},
watch
:
{}
};
</
script
>
\ No newline at end of file
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