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
452800ab
Commit
452800ab
authored
Apr 23, 2020
by
康振飞
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
工艺规程new--详情
parent
cd48db28
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
201 additions
and
59 deletions
+201
-59
iview-reset.less
assets/css/iview-reset.less
+3
-1
details.vue
pages/technology/details.vue
+60
-0
index.vue
pages/technology/details/controlcard/index.vue
+39
-0
index.vue
pages/technology/details/index.vue
+17
-57
index.vue
pages/technology/details/process/index.vue
+39
-0
index.vue
pages/technology/details/setup/index.vue
+39
-0
index.vue
pages/technology/details/working/index.vue
+1
-1
technolog.less
pages/technology/technolog.less
+3
-0
No files found.
assets/css/iview-reset.less
View file @
452800ab
...
@@ -339,7 +339,9 @@
...
@@ -339,7 +339,9 @@
color: #fff;
color: #fff;
}
}
}
}
.ivu-select-dropdown{
z-index: 910!important;
}
.manyTabs {
.manyTabs {
.ivu-tabs-bar {
.ivu-tabs-bar {
position: absolute;
position: absolute;
...
...
pages/technology/details.vue
0 → 100644
View file @
452800ab
<
style
lang=
"less"
>
@import './technolog.less';
</
style
>
<
template
>
<Layout
class=
"pt10 details_box"
>
<Header>
<h4
class=
"details_top tc"
>
<a
class=
"back_href"
@
click=
"back"
>
<Icon
type=
"ios-undo-outline"
/>
返回工艺规程
</a>
<div>
工艺信息
</div>
</h4>
<div
class=
"details_body"
>
<Menu
mode=
"horizontal"
theme=
"light"
active-name=
"1"
>
<MenuItem
name=
"1"
to=
"/technology/details/working"
>
工序
</MenuItem>
<MenuItem
name=
"2"
to=
"/technology/details/controlcard"
>
质控卡
</MenuItem>
<MenuItem
name=
"3"
to=
"/technology/details/process"
>
工艺BOM
</MenuItem>
<MenuItem
name=
"4"
to=
"/technology/details/setup"
>
生产准备
</MenuItem>
</Menu>
</div>
</Header>
<Layout
class=
"bottom_box"
>
<nuxt-child
keep-alive
></nuxt-child>
</Layout>
</Layout>
</
template
>
<
script
>
export
default
{
components
:
{},
data
()
{
return
{
showMenu
:
true
,
treeHeight
:
''
,
actNum
:
'1'
,
}
},
created
()
{
this
.
treeHeight
=
window
.
innerHeight
-
140
},
async
fetch
({
store
,
params
})
{
await
store
.
dispatch
(
'loadDictionary'
)
// 加载数据字典
},
mounted
()
{
window
.
onresize
=
()
=>
{
///浏览器窗口大小变化
return
(()
=>
{
this
.
treeHeight
=
window
.
innerHeight
-
140
})()
}
},
computed
:
{
},
methods
:
{
back
(){
this
.
$router
.
push
({
name
:
"technology"
,
// params: { transmitData: lemData }
});
},
}
}
</
script
>
pages/technology/details/controlcard/index.vue
0 → 100644
View file @
452800ab
<
style
lang=
"less"
>
@import '../../technolog.less';
</
style
>
<
template
>
<div>
质控卡内容
</div>
</
template
>
<
script
>
export
default
{
components
:
{},
data
()
{
return
{
showMenu
:
true
,
treeHeight
:
''
,
actNum
:
'1'
,
}
},
created
()
{
this
.
treeHeight
=
window
.
innerHeight
-
140
},
async
fetch
({
store
,
params
})
{
await
store
.
dispatch
(
'loadDictionary'
)
// 加载数据字典
},
mounted
()
{
window
.
onresize
=
()
=>
{
///浏览器窗口大小变化
return
(()
=>
{
this
.
treeHeight
=
window
.
innerHeight
-
140
})()
}
},
computed
:
{
},
methods
:
{
back
(){
},
}
}
</
script
>
pages/technology/details/index.vue
View file @
452800ab
<
style
lang=
"less"
>
@import '../technolog.less';
</
style
>
<
template
>
<
template
>
<Layout
class=
"pt10 details_box"
>
<workingView></workingView>
<Header>
<h4
class=
"details_top tc"
>
<a
class=
"back_href"
@
click=
"back"
>
<Icon
type=
"ios-undo-outline"
/>
返回工艺规程
</a>
<div>
工艺信息
</div>
</h4>
<div
class=
"details_body"
>
<Menu
mode=
"horizontal"
theme=
"light"
active-name=
"1"
>
<MenuItem
name=
"1"
>
工序
</MenuItem>
<MenuItem
name=
"2"
to=
"/technology/details/component/gongxu"
>
质控卡
</MenuItem>
<MenuItem
name=
"3"
>
工艺BOM
</MenuItem>
<MenuItem
name=
"4"
>
生产准备
</MenuItem>
<!-- -->
</Menu>
</div>
</Header>
<!--
<Content>
-->
<Layout
class=
"bottom_box"
>
<nuxt-child
keep-alive
></nuxt-child>
</Layout>
<!--
</Content>
-->
</Layout>
</
template
>
</
template
>
<
script
>
<
script
>
import
workingView
from
'./working/index'
export
default
{
export
default
{
components
:
{},
components
:{
workingView
},
data
()
{
return
{
showMenu
:
true
,
treeHeight
:
''
,
actNum
:
'1'
,
}
},
created
()
{
this
.
treeHeight
=
window
.
innerHeight
-
140
},
async
fetch
({
store
,
params
})
{
await
store
.
dispatch
(
'loadDictionary'
)
// 加载数据字典
},
mounted
()
{
window
.
onresize
=
()
=>
{
///浏览器窗口大小变化
return
(()
=>
{
this
.
treeHeight
=
window
.
innerHeight
-
140
})()
}
},
computed
:
{
},
methods
:
{
back
(){
this
.
$router
.
push
({
name
:
"technology"
,
// params: { transmitData: lemData }
});
},
}
}
}
</
script
>
</
script
>
<
style
lang=
"less"
>
.footer02 {
background: #4c5968;
opacity: 0.9;
position: absolute;
bottom: 9px;
box-shadow: 0px -5px 6px rgba(0,0,0,0.3);
width: 83%;
z-index: 99;
padding: 10px;
color: #fff;
margin: 10px 0 10px 0;
}
</
style
>
\ No newline at end of file
pages/technology/details/process/index.vue
0 → 100644
View file @
452800ab
<
style
lang=
"less"
>
@import '../../technolog.less';
</
style
>
<
template
>
<div>
工艺BOM
</div>
</
template
>
<
script
>
export
default
{
components
:
{},
data
()
{
return
{
showMenu
:
true
,
treeHeight
:
''
,
actNum
:
'1'
,
}
},
created
()
{
this
.
treeHeight
=
window
.
innerHeight
-
140
},
async
fetch
({
store
,
params
})
{
await
store
.
dispatch
(
'loadDictionary'
)
// 加载数据字典
},
mounted
()
{
window
.
onresize
=
()
=>
{
///浏览器窗口大小变化
return
(()
=>
{
this
.
treeHeight
=
window
.
innerHeight
-
140
})()
}
},
computed
:
{
},
methods
:
{
back
(){
},
}
}
</
script
>
pages/technology/details/setup/index.vue
0 → 100644
View file @
452800ab
<
style
lang=
"less"
>
@import '../../technolog.less';
</
style
>
<
template
>
<div>
生产准备
</div>
</
template
>
<
script
>
export
default
{
components
:
{},
data
()
{
return
{
showMenu
:
true
,
treeHeight
:
''
,
actNum
:
'1'
,
}
},
created
()
{
this
.
treeHeight
=
window
.
innerHeight
-
140
},
async
fetch
({
store
,
params
})
{
await
store
.
dispatch
(
'loadDictionary'
)
// 加载数据字典
},
mounted
()
{
window
.
onresize
=
()
=>
{
///浏览器窗口大小变化
return
(()
=>
{
this
.
treeHeight
=
window
.
innerHeight
-
140
})()
}
},
computed
:
{
},
methods
:
{
back
(){
},
}
}
</
script
>
pages/technology/details/
component/gongxu
.vue
→
pages/technology/details/
working/index
.vue
View file @
452800ab
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
@import '../../technolog.less';
@import '../../technolog.less';
</
style
>
</
style
>
<
template
>
<
template
>
<div>
1231323
</div>
<div>
工序
</div>
</
template
>
</
template
>
<
script
>
<
script
>
...
...
pages/technology/technolog.less
View file @
452800ab
...
@@ -74,4 +74,7 @@
...
@@ -74,4 +74,7 @@
}
}
}
}
}
}
.bottom_box{
margin-top: 50px;
}
}
}
\ 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