Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
template_vue
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
胡宝山
template_vue
Commits
34aa44c6
Commit
34aa44c6
authored
Jul 25, 2023
by
吴志坤
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面改动
parent
c3381046
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
263 additions
and
126 deletions
+263
-126
check.vue
src/views/equipment/check.vue
+90
-21
management.vue
src/views/equipment/management.vue
+111
-73
second.vue
src/views/equipment/second.vue
+54
-24
statistic.vue
src/views/equipment/statistic.vue
+8
-8
No files found.
src/views/equipment/check.vue
View file @
34aa44c6
<
template
>
<
template
>
<div
class=
"app-container"
>
<div
class=
"app-container"
>
<el-form
ref=
"queryForm"
style=
"padding: 0 0 0 10px"
:model=
"queryParams"
:inline=
"true"
>
<el-form
ref=
"queryForm"
style=
"padding: 0 0 0 10px"
:model=
"queryParams"
:inline=
"true"
>
<el-form-item
label=
"设备
名称"
prop=
"roleNam
e"
>
<el-form-item
label=
"设备
编码"
prop=
"equipmentCod
e"
>
<el-input
<el-input
v-model=
"queryParams.
roleNam
e"
v-model=
"queryParams.
equipmentCod
e"
placeholder=
"请输入设备
名称
"
placeholder=
"请输入设备
编码
"
clearable
clearable
:maxlength=
"30"
:maxlength=
"30"
size=
"small"
size=
"small"
...
@@ -12,10 +12,20 @@
...
@@ -12,10 +12,20 @@
@
keyup
.
enter
.
native=
"handleQuery"
@
keyup
.
enter
.
native=
"handleQuery"
/>
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"
设备编码"
prop=
"roleKey
"
>
<el-form-item
label=
"
lot"
prop=
"lot
"
>
<el-input
<el-input
v-model=
"queryParams.roleKey"
v-model=
"queryParams.roleKey"
placeholder=
"请输入设备编码"
placeholder=
"请输入设备lot"
clearable
size=
"small"
style=
"width: 150px"
@
keyup
.
enter
.
native=
"handleQuery"
/>
</el-form-item>
<el-form-item
label=
"位置"
prop=
"location"
>
<el-input
v-model=
"queryParams.location"
placeholder=
"请输入设备位置"
clearable
clearable
size=
"small"
size=
"small"
style=
"width: 150px"
style=
"width: 150px"
...
@@ -40,43 +50,46 @@
...
@@ -40,43 +50,46 @@
<div
class=
"placeholder"
/>
<div
class=
"placeholder"
/>
<div
style=
"padding:5px 10px"
>
<div
style=
"padding:5px 10px"
>
<div
class=
"mb12 font-small-bold"
>
设备管理列表
</div>
<div
class=
"mb12 font-small-bold"
>
设备管理列表
</div>
<el-table
v-loading=
"loading"
border
:data=
"roleList"
@
selection-change=
"handleSelectionChange"
>
<el-table
v-loading=
"loading"
border
:data=
"equipmentList"
@
selection-change=
"handleSelectionChange"
>
<el-table-column
label=
"名称"
prop=
"roleName"
:show-overflow-tooltip=
"true"
>
<el-table-column
type=
"selection"
width=
"55"
/>
<el-table-column
type=
"index"
label=
"序号"
width=
"80"
/>
<el-table-column
label=
"编码"
prop=
"equipmentCode"
width=
"120"
>
<template
slot-scope=
"scope"
>
<template
slot-scope=
"scope"
>
{{
scope
.
row
.
roleNam
e
||
'-'
}}
{{
scope
.
row
.
equipmentCod
e
||
'-'
}}
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"
编码"
prop=
"roleKey
"
>
<el-table-column
label=
"
lot"
prop=
"lot"
width=
"120
"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
roleKey
||
'-'
}}
{{
scope
.
row
.
lot
||
'-'
}}
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"
lot"
prop=
"roleSort
"
>
<el-table-column
label=
"
位置"
prop=
"location
"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
roleSort
||
'-'
}}
{{
scope
.
row
.
location
||
'-'
}}
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"
位置"
prop=
"roleSort
"
>
<el-table-column
label=
"
厚度"
prop=
"thickness
"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
roleSort
||
'-'
}}
{{
scope
.
row
.
thickness
||
'-'
}}
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"
厚度"
prop=
"roleSort
"
>
<el-table-column
label=
"
创建员"
prop=
"createBy
"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
roleSort
||
'-'
}}
{{
scope
.
row
.
createBy
||
'-'
}}
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"
创建人"
prop=
"roleSort
"
>
<el-table-column
label=
"
操作时间"
:show-overflow-tooltip=
"true"
align=
"center"
prop=
"createTime
"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
roleSort
||
'-'
}}
<span>
{{
scope
.
row
.
createTime
|
transformDateByFormat
(
'YYYY-MM-DD HH:mm'
)
}}
</span>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"
创建时间"
:show-overflow-tooltip=
"true"
align=
"center"
prop=
"createTime
"
>
<el-table-column
label=
"
操作"
class-name=
"small-padding fixed-width"
width=
"150px
"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<span>
{{
scope
.
row
.
createDate
|
transformDateByFormat
(
'YYYY-MM-DD HH:mm'
)
}}
</span>
<el-button
:type=
"typeParent"
:size=
"size"
@
click=
"handleDetail(scope.row)"
>
详情
</el-button>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
</el-table>
</el-table>
</div>
</div>
<pagination
<pagination
...
@@ -130,6 +143,29 @@
...
@@ -130,6 +143,29 @@
<el-button
type=
"primary"
@
click=
"submitForm"
>
确 定
</el-button>
<el-button
type=
"primary"
@
click=
"submitForm"
>
确 定
</el-button>
</div>
</div>
</el-dialog>
</el-dialog>
<!-- TODO: 单项详情信息表单配置 -->
<el-dialog
class=
"aboutSingleDetails"
:title=
"title"
:visible
.
sync=
"openDetails"
width=
"700px"
append-to-body
>
<el-form
ref=
"formDetails"
:model=
"singleDetails"
size=
"small"
label-width=
"90px"
>
<el-form-item
label=
"编码:"
prop=
"processName"
>
<el-input
v-model
.
trim=
"singleDetails.equipmentCode"
:readonly=
"true"
/>
</el-form-item>
<el-form-item
label=
"lot:"
prop=
"workshop"
>
<el-input
v-model
.
trim=
"singleDetails.lot"
:readonly=
"true"
/>
</el-form-item>
<el-form-item
label=
"位置:"
prop=
"location"
>
<el-input
v-model
.
trim=
"singleDetails.location"
:readonly=
"true"
/>
</el-form-item>
<el-form-item
label=
"厚度:"
prop=
"thickness"
>
<el-input
v-model
.
trim=
"singleDetails.thickness"
:readonly=
"true"
/>
</el-form-item>
<el-form-item
label=
"创建时间:"
prop=
"createTime"
>
<el-input
v-model
.
trim=
"singleDetails.createTime"
:readonly=
"true"
/>
</el-form-item>
<el-form-item
label=
"创建人:"
prop=
"createBy"
>
<el-input
v-model
.
trim=
"singleDetails.createBy"
:readonly=
"true"
/>
</el-form-item>
</el-form>
</el-dialog>
</div>
</div>
</template>
</template>
...
@@ -144,6 +180,20 @@ export default {
...
@@ -144,6 +180,20 @@ export default {
components
:
{
Coolbutton
},
components
:
{
Coolbutton
},
data
()
{
data
()
{
return
{
return
{
// TODO: 表单里的单项详情参数
singleDetails
:
{
equipmentName
:
''
,
equipmentCode
:
''
,
lot
:
''
,
location
:
''
,
thickness
:
''
,
createBy
:
''
,
createTime
:
''
},
// 是否显示弹出层(数据详情)
openDetails
:
false
,
// TODO: 模拟测试数据
equipmentList
:
[{
equipmentCode
:
'001'
,
lot
:
'xxx'
,
location
:
'位置01'
,
thickness
:
'50'
,
createBy
:
'操作员01'
,
createTime
:
new
Date
()
},
{
equipmentCode
:
'002'
,
lot
:
'xxx'
,
location
:
'位置02'
,
thickness
:
'70'
,
createBy
:
'操作员02'
,
createTime
:
new
Date
()
},
{
equipmentCode
:
'001'
,
lot
:
'xxx'
,
location
:
'位置01'
,
thickness
:
'50'
,
createBy
:
'操作员01'
,
createTime
:
new
Date
()
},
{
equipmentCode
:
'001'
,
lot
:
'xxx'
,
location
:
'位置01'
,
thickness
:
'50'
,
createBy
:
'操作员01'
,
createTime
:
new
Date
()
},
{
equipmentCode
:
'001'
,
lot
:
'xxx'
,
location
:
'位置01'
,
thickness
:
'50'
,
createBy
:
'操作员01'
,
createTime
:
new
Date
()
},
{
equipmentCode
:
'001'
,
lot
:
'xxx'
,
location
:
'位置01'
,
thickness
:
'50'
,
createBy
:
'操作员01'
,
createTime
:
new
Date
()
},
{
equipmentCode
:
'001'
,
lot
:
'xxx'
,
location
:
'位置01'
,
thickness
:
'50'
,
createBy
:
'操作员01'
,
createTime
:
new
Date
()
},
{
equipmentCode
:
'001'
,
lot
:
'xxx'
,
location
:
'位置01'
,
thickness
:
'50'
,
createBy
:
'操作员01'
,
createTime
:
new
Date
()
},
{
equipmentCode
:
'001'
,
lot
:
'xxx'
,
location
:
'位置01'
,
thickness
:
'50'
,
createBy
:
'操作员01'
,
createTime
:
new
Date
()
},
{
equipmentCode
:
'001'
,
lot
:
'xxx'
,
location
:
'位置01'
,
thickness
:
'50'
,
createBy
:
'操作员01'
,
createTime
:
new
Date
()
}],
check
:
'盘点'
,
check
:
'盘点'
,
typeParent
:
'text'
,
typeParent
:
'text'
,
typePrimary
:
'primary'
,
typePrimary
:
'primary'
,
...
@@ -282,6 +332,13 @@ export default {
...
@@ -282,6 +332,13 @@ export default {
// });
// });
},
},
methods
:
{
methods
:
{
// TODO: 获取所选行详情信息操作
handleDetail
(
row
)
{
this
.
singleDetails
=
this
.
formReset
this
.
singleDetails
=
row
this
.
title
=
'详情信息'
this
.
openDetails
=
!
this
.
openDetails
},
handelTab
(
i
,
e
)
{
handelTab
(
i
,
e
)
{
const
that
=
this
const
that
=
this
if
(
!
that
.
$refs
[
'input'
+
i
])
{
if
(
!
that
.
$refs
[
'input'
+
i
])
{
...
@@ -608,6 +665,18 @@ export default {
...
@@ -608,6 +665,18 @@ export default {
}
}
</
script
>
</
script
>
<
style
lang=
"scss"
scoped
>
<
style
lang=
"scss"
scoped
>
.aboutSingleDetails
{
.el-form-item
{
.el-input
>>>
.el-input__inner
{
-webkit-appearance
:
none
;
background-color
:
#FFF
;
background-image
:
none
;
border-radius
:
4px
;
border
:
0
;
width
:
100%
;
}
}
}
.app-container
{
.app-container
{
font-size
:
18px
;
font-size
:
18px
;
padding
:
0
;
padding
:
0
;
...
...
src/views/equipment/management.vue
View file @
34aa44c6
This diff is collapsed.
Click to expand it.
src/views/equipment/second.vue
View file @
34aa44c6
<
template
>
<
template
>
<div
class=
"app-container"
>
<div
class=
"app-container"
>
<el-form
ref=
"queryForm"
style=
"padding: 0 0 0 10px"
:model=
"queryParams"
:inline=
"true"
>
<el-form
ref=
"queryForm"
style=
"padding: 0 0 0 10px"
:model=
"queryParams"
:inline=
"true"
>
<el-form-item
label=
"
设备名称"
prop=
"roleNam
e"
>
<el-form-item
label=
"
编码"
prop=
"equipmentCod
e"
>
<el-input
<el-input
v-model=
"queryParams.
roleNam
e"
v-model=
"queryParams.
equipmentCod
e"
placeholder=
"请输入
设备名称
"
placeholder=
"请输入
编码
"
clearable
clearable
:maxlength=
"30"
:maxlength=
"30"
size=
"small"
size=
"small"
...
@@ -12,10 +12,20 @@
...
@@ -12,10 +12,20 @@
@
keyup
.
enter
.
native=
"handleQuery"
@
keyup
.
enter
.
native=
"handleQuery"
/>
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"
设备编码"
prop=
"roleKey
"
>
<el-form-item
label=
"
lot"
prop=
"lot
"
>
<el-input
<el-input
v-model=
"queryParams.roleKey"
v-model=
"queryParams.roleKey"
placeholder=
"请输入设备编码"
placeholder=
"请输入设备lot"
clearable
size=
"small"
style=
"width: 150px"
@
keyup
.
enter
.
native=
"handleQuery"
/>
</el-form-item>
<el-form-item
label=
"位置"
prop=
"location"
>
<el-input
v-model=
"queryParams.location"
placeholder=
"请输入设备位置"
clearable
clearable
size=
"small"
size=
"small"
style=
"width: 150px"
style=
"width: 150px"
...
@@ -30,7 +40,7 @@
...
@@ -30,7 +40,7 @@
<coolbutton
<coolbutton
style=
"padding: 8px 7px;"
style=
"padding: 8px 7px;"
:type=
"typePrimary"
:type=
"typePrimary"
:name=
"
check
"
:name=
"
addProcess
"
:size=
"smallSize"
:size=
"smallSize"
:icon=
"addIcon"
:icon=
"addIcon"
/>
/>
...
@@ -40,40 +50,42 @@
...
@@ -40,40 +50,42 @@
<div
class=
"placeholder"
/>
<div
class=
"placeholder"
/>
<div
style=
"padding:5px 10px"
>
<div
style=
"padding:5px 10px"
>
<div
class=
"mb12 font-small-bold"
>
设备管理列表
</div>
<div
class=
"mb12 font-small-bold"
>
设备管理列表
</div>
<el-table
v-loading=
"loading"
border
:data=
"roleList"
@
selection-change=
"handleSelectionChange"
>
<el-table
v-loading=
"loading"
border
:data=
"processList"
@
selection-change=
"handleSelectionChange"
>
<el-table-column
label=
"名称"
prop=
"roleName"
:show-overflow-tooltip=
"true"
>
<el-table-column
type=
"selection"
width=
"55"
/>
<el-table-column
type=
"index"
label=
"序号"
width=
"80"
/>
<el-table-column
label=
"工序名称"
prop=
"processCode"
:show-overflow-tooltip=
"true"
>
<template
slot-scope=
"scope"
>
<template
slot-scope=
"scope"
>
{{
scope
.
row
.
roleNam
e
||
'-'
}}
{{
scope
.
row
.
processCod
e
||
'-'
}}
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"编码"
prop=
"
roleKey
"
>
<el-table-column
label=
"编码"
prop=
"
lot
"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
roleKey
||
'-'
}}
{{
scope
.
row
.
lot
||
'-'
}}
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"
lot"
prop=
"roleSort
"
>
<el-table-column
label=
"
位置"
prop=
"location
"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
roleSort
||
'-'
}}
{{
scope
.
row
.
location
||
'-'
}}
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"位置"
prop=
"
roleSort
"
>
<el-table-column
label=
"位置"
prop=
"
location
"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
roleSort
||
'-'
}}
{{
scope
.
row
.
location
||
'-'
}}
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"厚度"
prop=
"
roleSort
"
>
<el-table-column
label=
"厚度"
prop=
"
thickness
"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
roleSort
||
'-'
}}
{{
scope
.
row
.
thickness
||
'-'
}}
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"创建人"
prop=
"
roleSort
"
>
<el-table-column
label=
"创建人"
prop=
"
createBy
"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
roleSort
||
'-'
}}
{{
scope
.
row
.
createBy
||
'-'
}}
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"创建时间"
:show-overflow-tooltip=
"true"
align=
"center"
prop=
"createTime"
>
<el-table-column
label=
"创建时间"
:show-overflow-tooltip=
"true"
align=
"center"
prop=
"createTime"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<span>
{{
scope
.
row
.
create
Dat
e
|
transformDateByFormat
(
'YYYY-MM-DD HH:mm'
)
}}
</span>
<span>
{{
scope
.
row
.
create
Tim
e
|
transformDateByFormat
(
'YYYY-MM-DD HH:mm'
)
}}
</span>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
...
@@ -100,9 +112,6 @@
...
@@ -100,9 +112,6 @@
<el-input-number
v-model=
"form.roleSort"
style=
"width: 100%"
controls-position=
"right"
:min=
"0"
/>
<el-input-number
v-model=
"form.roleSort"
style=
"width: 100%"
controls-position=
"right"
:min=
"0"
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"设备批次"
>
<el-form-item
label=
"设备批次"
>
<!-- <el-checkbox v-model="menuExpand" @change="handleCheckedTreeExpand($event, 'menu')">展开/折叠</el-checkbox>-->
<!-- <el-checkbox v-model="menuNodeAll" @change="handleCheckedTreeNodeAll($event, 'menu')">全选/全不选</el-checkbox>-->
<!-- <el-checkbox v-model="form.menuCheckStrictly" @change="handleCheckedTreeConnect($event, 'menu')">父子联动</el-checkbox>-->
<el-tree
<el-tree
ref=
"menu"
ref=
"menu"
class=
"tree-border"
class=
"tree-border"
...
@@ -144,7 +153,21 @@ export default {
...
@@ -144,7 +153,21 @@ export default {
components
:
{
Coolbutton
},
components
:
{
Coolbutton
},
data
()
{
data
()
{
return
{
return
{
check
:
'盘点'
,
// TODO: 表单里的单项详情参数
singleDetails
:
{
equipmentName
:
''
,
equipmentCode
:
''
,
lot
:
''
,
location
:
''
,
thickness
:
''
,
createBy
:
''
,
createTime
:
''
},
// 是否显示弹出层(数据详情)
openDetails
:
false
,
// TODO: 模拟测试数据
processList
:
[{
processCode
:
'001'
,
lot
:
'xxx'
,
location
:
'位置01'
,
thickness
:
'50'
,
createBy
:
'操作员01'
,
createTime
:
new
Date
()
},
{
processCode
:
'002'
,
lot
:
'xxx'
,
location
:
'位置02'
,
thickness
:
'70'
,
createBy
:
'操作员02'
,
createTime
:
new
Date
()
},
{
processCode
:
'001'
,
lot
:
'xxx'
,
location
:
'位置01'
,
thickness
:
'50'
,
createBy
:
'操作员01'
,
createTime
:
new
Date
()
},
{
processCode
:
'001'
,
lot
:
'xxx'
,
location
:
'位置01'
,
thickness
:
'50'
,
createBy
:
'操作员01'
,
createTime
:
new
Date
()
},
{
processCode
:
'001'
,
lot
:
'xxx'
,
location
:
'位置01'
,
thickness
:
'50'
,
createBy
:
'操作员01'
,
createTime
:
new
Date
()
},
{
processCode
:
'001'
,
lot
:
'xxx'
,
location
:
'位置01'
,
thickness
:
'50'
,
createBy
:
'操作员01'
,
createTime
:
new
Date
()
},
{
processCode
:
'001'
,
lot
:
'xxx'
,
location
:
'位置01'
,
thickness
:
'50'
,
createBy
:
'操作员01'
,
createTime
:
new
Date
()
},
{
processCode
:
'001'
,
lot
:
'xxx'
,
location
:
'位置01'
,
thickness
:
'50'
,
createBy
:
'操作员01'
,
createTime
:
new
Date
()
},
{
processCode
:
'001'
,
lot
:
'xxx'
,
location
:
'位置01'
,
thickness
:
'50'
,
createBy
:
'操作员01'
,
createTime
:
new
Date
()
},
{
processCode
:
'001'
,
lot
:
'xxx'
,
location
:
'位置01'
,
thickness
:
'50'
,
createBy
:
'操作员01'
,
createTime
:
new
Date
()
}],
addProcess
:
'入库'
,
typeParent
:
'text'
,
typeParent
:
'text'
,
typePrimary
:
'primary'
,
typePrimary
:
'primary'
,
typeSuccess
:
'success'
,
typeSuccess
:
'success'
,
...
@@ -282,6 +305,13 @@ export default {
...
@@ -282,6 +305,13 @@ export default {
// });
// });
},
},
methods
:
{
methods
:
{
// TODO: 获取所选行详情信息操作
handleDetail
(
row
)
{
this
.
singleDetails
=
this
.
formReset
this
.
singleDetails
=
row
this
.
title
=
'详情信息'
this
.
openDetails
=
!
this
.
openDetails
},
handelTab
(
i
,
e
)
{
handelTab
(
i
,
e
)
{
const
that
=
this
const
that
=
this
if
(
!
that
.
$refs
[
'input'
+
i
])
{
if
(
!
that
.
$refs
[
'input'
+
i
])
{
...
...
src/views/equipment/statistic.vue
View file @
34aa44c6
...
@@ -39,17 +39,17 @@
...
@@ -39,17 +39,17 @@
<el-form-item
/>
<el-form-item
/>
</div>
</div>
</el-form>
</el-form>
<div
class=
"placeholder"
/
>
<div
class=
"placeholder"
></div
>
<div
class=
"Role"
style=
"width: 100%; height:
400px; display: flex; padding-left: 10
0px"
>
<div
class=
"Role"
style=
"width: 100%; height:
600px; display: flex; padding-left: 5
0px"
>
<!--左边两个图-->
<!--左边两个图-->
<div
class=
"left-charts"
style=
"width:
100%; height: 10
0%; display: flex; flex-direction: column;"
>
<div
class=
"left-charts"
style=
"width:
5
0%; display: flex; flex-direction: column;"
>
<div
id=
"myChart1"
style=
"
width: 50%; height: 50%
;"
></div>
<div
id=
"myChart1"
style=
"
flex: 1; margin-bottom: 100px
;"
></div>
<div
id=
"myChart2"
style=
"
width: 50%; height: 50%
;"
></div>
<div
id=
"myChart2"
style=
"
flex: 1
;"
></div>
</div>
</div>
<!--右边两个图-->
<!--右边两个图-->
<div
class=
"right-charts"
style=
"width:
100%; height: 10
0%; display: flex; flex-direction: column;"
>
<div
class=
"right-charts"
style=
"width:
5
0%; display: flex; flex-direction: column;"
>
<div
id=
"myChart5"
style=
"
width: 50%; height: 50%
;"
></div>
<div
id=
"myChart5"
style=
"
flex: 1; margin-bottom: 60px
;"
></div>
<div
id=
"myChart3"
style=
"
width: 50%; height: 50%
;"
></div>
<div
id=
"myChart3"
style=
"
flex: 1
;"
></div>
</div>
</div>
</div>
</div>
</div>
</div>
...
...
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