Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vue3portal
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
wuhao
vue3portal
Commits
61149b86
Commit
61149b86
authored
Aug 15, 2023
by
左玲玲
😬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1743
parent
f3c89c7c
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
229 additions
and
84 deletions
+229
-84
bg.png
src/assets/image/bg.png
+0
-0
bg.svg
src/assets/image/bg.svg
+1
-0
main.less
src/assets/less/main.less
+45
-2
elsheader.vue
src/pages/layouts/components/elsheader.vue
+36
-28
elsmain.vue
src/pages/layouts/components/elsmain.vue
+139
-39
index.vue
src/pages/layouts/index.vue
+8
-15
No files found.
src/assets/image/bg.png
0 → 100644
View file @
61149b86
10 KB
src/assets/image/bg.svg
0 → 100644
View file @
61149b86
This diff is collapsed.
Click to expand it.
src/assets/less/main.less
View file @
61149b86
...
@@ -54,14 +54,57 @@ body {
...
@@ -54,14 +54,57 @@ body {
}
}
&::-webkit-scrollbar-thumb {
&::-webkit-scrollbar-thumb {
background-color: #
05192e
;
background-color: #
3f73a5
;
border-radius: 5px;
border-radius: 5px;
}
}
&::-webkit-scrollbar-track {
&::-webkit-scrollbar-track {
background-color:
transparent
;
background-color:
#05192e
;
border-radius: 5px;
border-radius: 5px;
}
}
&::-webkit-scrollbar-button {}
&::-webkit-scrollbar-button {}
}
.home {
.el-tabs__item {
color: #fff !important;
margin: 0 !important;
padding: 0 12px !important;
border: none !important;
&.is-active {
background: transparent !important;
border: none !important;
color: #fff !important;
background-color: rgb(1, 91, 133) !important;
}
}
.el-tabs--border-card {
background: transparent !important;
border: none !important;
display: flex;
.el-tabs__content {
padding: 0 !important;
width: 100%;
height: 100%;
>div {
}
}
}
.el-tabs__header {
background: transparent !important;
border: none !important;
.el-tabs__nav-prev,
.el-tabs__nav-next{
>.el-icon{
font-size: 22px !important;
color: #17d3d8 !important;
}
}
}
}
}
\ No newline at end of file
src/pages/layouts/components/elsheader.vue
View file @
61149b86
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* @Author: zuolingling zuolingling@jsnangao.com
* @Author: zuolingling zuolingling@jsnangao.com
* @Date: 2023-08-10 17:03:11
* @Date: 2023-08-10 17:03:11
* @LastEditors: zuolingling zuolingling@jsnangao.com
* @LastEditors: zuolingling zuolingling@jsnangao.com
* @LastEditTime: 2023-08-1
4 17:16:10
* @LastEditTime: 2023-08-1
5 15:13:21
* @FilePath: \vue3portal\src\pages\layouts\components\elsheader.vue
* @FilePath: \vue3portal\src\pages\layouts\components\elsheader.vue
* @Description:
* @Description:
*
*
...
@@ -35,19 +35,19 @@
...
@@ -35,19 +35,19 @@
</el-dropdown>
</el-dropdown>
</div>
</div>
<el-dialog
v-model=
"dialogVisible"
title=
"修改密码"
width=
"30%"
:before-close=
"handleClose"
>
<el-dialog
v-model=
"dialogVisible"
title=
"修改密码"
width=
"30%"
:before-close=
"handleClose"
>
<el-form
label-position=
"top"
ref=
"ruleFormRef"
:model=
"ruleForm"
status-icon
:rules=
"rules"
label-width=
"100px"
<el-form
label-position=
"top"
ref=
"ruleFormRef"
:model=
"ruleForm"
status-icon
:rules=
"rules"
class=
"demo-ruleForm"
>
label-width=
"100px"
class=
"demo-ruleForm"
>
<el-form-item
label=
"用户名"
prop=
"username"
>
<el-form-item
label=
"用户名"
prop=
"username"
>
<el-input
v-model=
"ruleForm.username"
disabled
/>
<el-input
v-model=
"ruleForm.username"
disabled
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"原始密码"
prop=
"oldPassword"
>
<el-form-item
label=
"原始密码"
prop=
"oldPassword"
show-password
>
<el-input
v-model=
"ruleForm.oldPassword"
type=
"password"
autocomplete=
"off"
/>
<el-input
v-model=
"ruleForm.oldPassword"
type=
"password"
autocomplete=
"off"
show-password
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"新密码"
prop=
"password"
>
<el-form-item
label=
"新密码"
prop=
"password"
>
<el-input
v-model=
"ruleForm.password"
type=
"password"
autocomplete=
"off"
/>
<el-input
v-model=
"ruleForm.password"
type=
"password"
autocomplete=
"off"
show-password
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"确认新密码"
prop=
"confirmPassword"
>
<el-form-item
label=
"确认新密码"
prop=
"confirmPassword"
>
<el-input
v-model=
"ruleForm.confirmPassword"
type=
"password"
autocomplete=
"off"
/>
<el-input
v-model=
"ruleForm.confirmPassword"
type=
"password"
autocomplete=
"off"
show-password
/>
</el-form-item>
</el-form-item>
<el-form-item>
<el-form-item>
<el-button
style=
"width: 100%;"
type=
"primary"
@
click=
"submitForm(ruleFormRef)"
<el-button
style=
"width: 100%;"
type=
"primary"
@
click=
"submitForm(ruleFormRef)"
...
@@ -63,7 +63,7 @@ import { ElMessage } from 'element-plus'
...
@@ -63,7 +63,7 @@ import { ElMessage } from 'element-plus'
import
{
Lock
,
SwitchButton
}
from
"@element-plus/icons-vue"
;
import
{
Lock
,
SwitchButton
}
from
"@element-plus/icons-vue"
;
import
{
getFetch
,
postFetch
}
from
"@/api/doFetch"
;
import
{
getFetch
,
postFetch
}
from
"@/api/doFetch"
;
const
validatePass
=
(
rule
,
value
,
callback
)
=>
{
const
validatePass
=
(
rule
,
value
,
callback
)
=>
{
if
(
value
&&
value
!==
ruleForm
.
password
)
{
if
(
value
&&
value
!==
ruleForm
.
value
.
password
)
{
callback
(
new
Error
(
"2次密码不一致!"
))
callback
(
new
Error
(
"2次密码不一致!"
))
}
else
{
}
else
{
callback
()
callback
()
...
@@ -71,26 +71,29 @@ const validatePass = (rule, value, callback) => {
...
@@ -71,26 +71,29 @@ const validatePass = (rule, value, callback) => {
};
};
const
store
=
useStore
();
const
store
=
useStore
();
const
currentUser
=
computed
(()
=>
{
const
currentUser
=
computed
(()
=>
{
return
store
.
state
.
currentUser
return
store
.
state
.
currentUser
;
});
});
let
titleconfig
=
reactive
({
let
state
=
reactive
({
width
:
1920
,
titleconfig
:
{
scale
:
.
75
width
:
1920
,
}),
scale
:
.
75
dialogVisible
=
ref
(
false
),
},
ruleFormRef
=
ref
({}),
rules
:
{
loading
=
ref
(
false
),
oldPassword
:
[{
required
:
true
,
trigger
:
'submit'
,
}],
ruleForm
=
reactive
({
password
:
[{
required
:
true
,
trigger
:
'submit'
,
}],
confirmPassword
:
[{
validator
:
validatePass
,
trigger
:
'blur'
,
required
:
true
}]
},
ruleForm
:
{
username
:
''
,
username
:
''
,
oldPassword
:
''
,
oldPassword
:
''
,
password
:
''
,
password
:
''
,
confirmPassword
:
''
confirmPassword
:
''
}
),
}
rules
=
reactive
({
}),
oldPassword
:
[{
required
:
true
,
trigger
:
'submit'
,
}]
,
dialogVisible
=
ref
(
false
)
,
password
:
[{
required
:
true
,
trigger
:
'submit'
,
}]
,
ruleFormRef
=
ref
({})
,
confirmPassword
:
[{
validator
:
validatePass
,
trigger
:
'blur'
,
required
:
true
}]
loading
=
ref
(
false
),
}
);
{
titleconfig
,
ruleForm
,
rules
}
=
toRefs
(
state
);
const
loginOut
=
()
=>
{
const
loginOut
=
()
=>
{
getFetch
({
url
:
"/logout"
,
params
:
{}
}).
then
(
res
=>
{
getFetch
({
url
:
"/logout"
,
params
:
{}
}).
then
(
res
=>
{
window
.
location
.
href
=
res
?.
logoutRedirectUrl
;
window
.
location
.
href
=
res
?.
logoutRedirectUrl
;
...
@@ -100,7 +103,7 @@ const loginOut = () => {
...
@@ -100,7 +103,7 @@ const loginOut = () => {
const
handleCommand
=
(
command
)
=>
{
const
handleCommand
=
(
command
)
=>
{
if
(
command
==
"pwd"
)
{
if
(
command
==
"pwd"
)
{
dialogVisible
.
value
=
true
;
dialogVisible
.
value
=
true
;
ruleFormRef
.
value
.
resetFields
()
ruleFormRef
?.
value
?.
resetFields
&&
ruleFormRef
?.
value
?.
resetFields
();
}
else
{
}
else
{
store
.
commit
(
'CHANGE_USER'
,
{
store
.
commit
(
'CHANGE_USER'
,
{
currentUser
:
{}
currentUser
:
{}
...
@@ -116,7 +119,7 @@ const submitForm = async (formEl) => {
...
@@ -116,7 +119,7 @@ const submitForm = async (formEl) => {
await
formEl
.
validate
((
valid
,
fields
)
=>
{
await
formEl
.
validate
((
valid
,
fields
)
=>
{
if
(
valid
)
{
if
(
valid
)
{
loading
.
value
=
true
;
loading
.
value
=
true
;
let
newfields
=
JSON
.
parse
(
JSON
.
stringify
(
ruleForm
));
let
newfields
=
JSON
.
parse
(
JSON
.
stringify
(
ruleForm
.
value
));
delete
newfields
.
username
;
delete
newfields
.
username
;
postFetch
({
url
:
"/user/updatePassword"
,
params
:
{
...
newfields
}
}).
then
(
res
=>
{
postFetch
({
url
:
"/user/updatePassword"
,
params
:
{
...
newfields
}
}).
then
(
res
=>
{
if
(
res
?.
code
==
"0000"
)
{
if
(
res
?.
code
==
"0000"
)
{
...
@@ -135,8 +138,8 @@ const submitForm = async (formEl) => {
...
@@ -135,8 +138,8 @@ const submitForm = async (formEl) => {
}
}
})
})
};
};
watch
(()
=>
currentUser
.
value
?.
username
,
(
newValue
,
oldValue
)
=>
{
watch
(()
=>
currentUser
?
.
value
?.
username
,
(
newValue
,
oldValue
)
=>
{
ruleForm
.
username
=
newValue
;
ruleForm
.
value
.
username
=
newValue
;
})
})
...
@@ -149,9 +152,14 @@ watch(() => currentUser.value?.username, (newValue, oldValue) => {
...
@@ -149,9 +152,14 @@ watch(() => currentUser.value?.username, (newValue, oldValue) => {
padding: 0 18px;
padding: 0 18px;
height: 100%;
height: 100%;
justify-content: flex-end;
justify-content: flex-end;
.headerright {
.headerright {
height: 100%;
height: 100%;
gap: 15px
gap: 15px;
position: relative;
right: 0;
z-index: 9999;
}
}
.el-dropdown-link {
.el-dropdown-link {
...
...
src/pages/layouts/components/elsmain.vue
View file @
61149b86
<
template
>
<
template
>
<div
class=
"mainbox"
>
<div
class=
"mainbox
home
"
>
<div
class=
"set
3
colflex leftbox"
>
<div
class=
"set
1
colflex leftbox"
>
<div
class=
"box2"
>
<div
class=
"box2"
>
<aYinTechBorderA1
:config=
"
{ ...leftConfig, title: '设备状态' }">
</aYinTechBorderA1>
<aYinTechBorderA1
:config=
"
{ ...leftConfig, title: '设备状态' }">
</aYinTechBorderA1>
</div>
</div>
...
@@ -8,17 +8,32 @@
...
@@ -8,17 +8,32 @@
<aYinTechBorderA1
:config=
"
{ ...leftConfig, title: '设备开动率' }">
</aYinTechBorderA1>
<aYinTechBorderA1
:config=
"
{ ...leftConfig, title: '设备开动率' }">
</aYinTechBorderA1>
</div>
</div>
<div
class=
"box3"
>
<div
class=
"box3"
>
<aYinTechBorderA1
:config=
"
{ ...leftConfig, title: '任务待办' }">
</aYinTechBorderA1>
<aYinTechBorderB3
:config=
"tableconfig"
>
<panelTitleA1
:config=
"
{ ...titleconfig, position: 'left' }">任务待办
</panelTitleA1>
</aYinTechBorderB3>
</div>
</div>
<div
class=
"box2"
>
<div
class=
"box2"
>
<aYinTechBorderA1
:config=
"
{ ...leftConfig, title: '生产数据' }">
</aYinTechBorderA1>
<aYinTechBorderA1
:config=
"
{ ...leftConfig, title: '生产数据' }">
</aYinTechBorderA1>
</div>
</div>
</div>
</div>
<div
class=
"set
4
colflex"
style=
"justify-content: space-between;"
>
<div
class=
"set
2
colflex"
style=
"justify-content: space-between;"
>
<div
class=
"middlebox"
>
<div
class=
"middlebox"
>
<aYinTechBorderB4
:config=
"systemconfig"
></aYinTechBorderB4>
<aYinTechBorderB4
:config=
"systemconfig"
>
<div
class=
"pad12 swh rowflex"
style=
"gap:12px"
>
<div
class=
"coltab scrollbar"
>
<div
class=
"colflex"
>
<div
:class=
"['tabitem', activeitem.id == it.id ? 'tabactive' : '']"
v-for=
"it in menus"
:key=
"it.id"
@
click=
"handleClick(it)"
>
{{
it
.
appName
}}
</div>
</div>
</div>
<div
class=
"tabcontent"
>
{{
activeitem
.
appName
}}
</div>
</div>
</aYinTechBorderB4>
</div>
</div>
<div
class=
"box1 rowflex"
style=
"gap:1
5
px"
>
<div
class=
"box1 rowflex"
style=
"gap:1
0
px"
>
<div
class=
"item5 counter-item"
></div>
<div
class=
"item5 counter-item"
></div>
<div
class=
"item5 counter-item"
></div>
<div
class=
"item5 counter-item"
></div>
<div
class=
"item5 counter-item"
></div>
<div
class=
"item5 counter-item"
></div>
...
@@ -26,15 +41,17 @@
...
@@ -26,15 +41,17 @@
<div
class=
"item5 counter-item"
></div>
<div
class=
"item5 counter-item"
></div>
</div>
</div>
<div
class=
"box3"
>
<div
class=
"box3"
>
<aYinTechBorderB1
:config=
"config"
></aYinTechBorderB1>
<aYinTechBorderA1
:config=
"config"
>
<panelTitleA1
:config=
"
{ ...titleconfig }">仓库使用趋势
</panelTitleA1>
</aYinTechBorderA1>
</div>
</div>
</div>
</div>
<div
class=
"set
3
colflex leftbox"
>
<div
class=
"set
1
colflex leftbox"
>
<div
class=
"box2"
>
<div
class=
"box2"
>
<aYinTechBorderA1
:config=
"
{ ...rightConfig, title: '能耗统计' }">
</aYinTechBorderA1>
<aYinTechBorderA1
:config=
"
{ ...rightConfig, title: '能耗统计' }">
</aYinTechBorderA1>
</div>
</div>
<div
class=
"box2"
>
<div
class=
"box2"
>
<aYinTechBorderA1
:config=
"
{ ...rightConfig, title: '
用电
趋势' }">
</aYinTechBorderA1>
<aYinTechBorderA1
:config=
"
{ ...rightConfig, title: '
能耗
趋势' }">
</aYinTechBorderA1>
</div>
</div>
<div
class=
"box3"
>
<div
class=
"box3"
>
<aYinTechBorderB3
:config=
"tableconfig"
></aYinTechBorderB3>
<aYinTechBorderB3
:config=
"tableconfig"
></aYinTechBorderB3>
...
@@ -48,50 +65,95 @@
...
@@ -48,50 +65,95 @@
</
template
>
</
template
>
<
script
setup
>
<
script
setup
>
const
leftConfig
=
reactive
({
import
{
postFetch
}
from
"@/api/doFetch"
;
backgroundColor
:
$c
.
bll9
,
const
state
=
reactive
({
decorationColor
:
[
$c
.
bll3
,
$c
.
cyl5
],
leftConfig
:
{
borderColor
:
$c
.
bll7
,
backgroundColor
:
$c
.
bll9
,
titleWidth
:
100
,
decorationColor
:
[
$c
.
bll3
,
$c
.
cyl5
],
titleColor
:
$c
.
cyl5
,
borderColor
:
$c
.
bll7
,
decorationAlt
:
true
,
titleWidth
:
100
,
rotate
:
'y'
titleColor
:
$c
.
cyl5
,
}),
decorationAlt
:
true
,
rightConfig
=
reactive
({
rotate
:
'y'
},
rightConfig
:
{
backgroundColor
:
$c
.
bll9
,
backgroundColor
:
$c
.
bll9
,
decorationColor
:
[
$c
.
bll3
,
$c
.
cyl5
],
decorationColor
:
[
$c
.
bll3
,
$c
.
cyl5
],
borderColor
:
$c
.
bll7
,
borderColor
:
$c
.
bll7
,
titleWidth
:
100
,
titleWidth
:
100
,
titleColor
:
$c
.
cyl5
titleColor
:
$c
.
cyl5
}
)
,
},
systemconfig
=
reactive
(
{
systemconfig
:
{
backgroundColor
:
$c
.
bll9
,
backgroundColor
:
$c
.
bll9
,
borderColor
:
$c
.
bll7
,
borderColor
:
$c
.
bll7
,
glowColor
:
$c
.
fade
(
$c
.
cyl5
,
.
3
),
glowColor
:
$c
.
fade
(
$c
.
cyl5
,
.
3
),
decorationColor
:
[
$c
.
bll3
,
$c
.
cyl5
],
decorationColor
:
[
$c
.
bll3
,
$c
.
cyl5
],
glow
:
true
,
decoration
:
false
decoration
:
false
}),
},
config
=
reactive
({
config
:
{
directionAlt
:
true
,
rotate
:
"z"
,
opacity
:
0.8
,
backgroundColor
:
$c
.
bll9
,
backgroundColor
:
$c
.
bll9
,
borderColor
:
$c
.
bll7
,
glowColor
:
$c
.
fade
(
$c
.
cyl5
,
.
2
),
decorationColor
:
[
$c
.
bll3
,
$c
.
cyl5
],
decorationColor
:
[
$c
.
bll3
,
$c
.
cyl5
],
decoration
:
false
,
}),
tableconfig
=
reactive
({
backgroundColor
:
$c
.
bll9
,
borderColor
:
$c
.
bll7
,
borderColor
:
$c
.
bll7
,
decoration
:
false
titleColor
:
$c
.
cyl5
}
)
,
},
ta
skconfig
=
reactive
(
{
ta
bleconfig
:
{
backgroundColor
:
$c
.
bll9
,
backgroundColor
:
$c
.
bll9
,
borderColor
:
$c
.
bll7
,
borderColor
:
$c
.
bll7
,
glowColor
:
$c
.
fade
(
$c
.
cyl5
,
.
2
),
decoration
:
false
decorationColor
:
[
$c
.
bll3
,
$c
.
aql5
],
},
titleColor
:
$c
.
bll9
,
titleconfig
:
{
glow
:
true
color
:
$c
.
cyl5
,
});
decorationColor
:
$c
.
cyl5
},
menus
:
[],
activeitem
:
{}
});
const
{
leftConfig
,
rightConfig
,
systemconfig
,
config
,
tableconfig
,
titleconfig
,
menus
,
activeitem
}
=
toRefs
(
state
);
onMounted
(()
=>
{
getData
();
})
function
getData
()
{
queryAppAndMenus
();
}
//应用
function
queryAppAndMenus
()
{
postFetch
({
url
:
"/index/queryAppAndMenus"
,
params
:
{}
}).
then
(
res
=>
{
if
(
res
.
code
==
"0000"
)
{
menus
.
value
=
res
?.
data
?.
dataList
??
[];
activeitem
.
value
=
res
?.
data
?.
dataList
?.[
0
]
??
{}
}
})
};
const
handleClick
=
(
it
)
=>
{
activeitem
.
value
=
it
;
};
// const loop = (data) => {
// data.map(item => {
// if (item.children) {
// return (
//
<
template
>
1123
<
/template
>
// )
// }
// return (
//
<
template
>
789
<
/template
>
// )
// })
// };
// const RecursiveTreeNode = computed(() => {
// return
<
template
>
11
<
/template
>
// })
watch
(()
=>
activeitem
.
value
,
(
newValue
,
oldValue
)
=>
{
console
.
log
(
newValue
);
});
</
script
>
</
script
>
<
style
lang=
"less"
scoped
>
<
style
lang=
"less"
scoped
>
...
@@ -136,7 +198,7 @@ const leftConfig = reactive({
...
@@ -136,7 +198,7 @@ const leftConfig = reactive({
.bgc(fade(@blA17, 70%));
.bgc(fade(@blA17, 70%));
display: inline-block;
display: inline-block;
height: 100%;
height: 100%;
padding: 1
5
px;
padding: 1
0
px;
position: relative;
position: relative;
.icon {
.icon {
...
@@ -196,5 +258,43 @@ const leftConfig = reactive({
...
@@ -196,5 +258,43 @@ const leftConfig = reactive({
margin: 0;
margin: 0;
}
}
}
}
.pad12 {
padding: 12px;
overflow: hidden;
}
.coltab {
height: 100%;
overflow-y: auto;
overflow-x: hidden;
width: 162px;
.tabitem {
display: flex;
align-items: center;
padding: 0 12px;
width: 100%;
height: 40px;
cursor: pointer;
&.tabactive {
background: transparent;
border: none;
color: #fff;
background-color: rgb(1, 91, 133);
}
}
}
.tabcontent {
flex: 1;
height: 100%;
border: 1px solid #3d668e !important;
padding: 12px !important;
border-radius: 8px;
overflow-y: auto;
overflow-x: hidden;
}
}
}
</
style
>
</
style
>
\ No newline at end of file
src/pages/layouts/index.vue
View file @
61149b86
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* @Author: zuolingling zuolingling@jsnangao.com
* @Author: zuolingling zuolingling@jsnangao.com
* @Date: 2023-08-10 15:27:18
* @Date: 2023-08-10 15:27:18
* @LastEditors: zuolingling zuolingling@jsnangao.com
* @LastEditors: zuolingling zuolingling@jsnangao.com
* @LastEditTime: 2023-08-1
4 17:13:4
7
* @LastEditTime: 2023-08-1
5 14:06:3
7
* @FilePath: \vue3portal\src\pages\layouts\index.vue
* @FilePath: \vue3portal\src\pages\layouts\index.vue
* @Description:
* @Description:
*
*
...
@@ -12,20 +12,9 @@
...
@@ -12,20 +12,9 @@
import
elsheader
from
"./components/elsheader.vue"
;
import
elsheader
from
"./components/elsheader.vue"
;
import
elsmain
from
"./components/elsmain.vue"
;
import
elsmain
from
"./components/elsmain.vue"
;
import
"@/assets/less/main.less"
;
import
"@/assets/less/main.less"
;
const
state
=
reactive
({
APConfig
:
{
width
:
1920
,
height
:
974
,
userSelect
:
true
,
// chartCount:0
loading
:
false
,
backgroundFillAll
:
false
}
})
</
script
>
</
script
>
<
template
>
<
template
>
<adaptivePanel
:config=
'state.APConfig'
>
<div
class=
"colflex swh lagoutbg"
>
<div
class=
"colflex swh"
>
<el-container
style=
"overflow-y: hidden;"
>
<el-container
style=
"overflow-y: hidden;"
>
<el-header
height=
"40px"
style=
"padding: 0;"
>
<el-header
height=
"40px"
style=
"padding: 0;"
>
<elsheader></elsheader>
<elsheader></elsheader>
...
@@ -35,9 +24,13 @@ const state = reactive({
...
@@ -35,9 +24,13 @@ const state = reactive({
</el-main>
</el-main>
</el-container>
</el-container>
</div>
</div>
</adaptivePanel>
</
template
>
</
template
>
<
style
lang=
"less"
scoped
></
style
>
<
style
lang=
"less"
scoped
>
\ No newline at end of file
.lagoutbg{
background: url("../../assets/image/bg.svg"), radial-gradient(ellipse at bottom,#053361 10%,#010d18 50%,#000000 100% );
background-repeat: repeat;
}
</
style
>
\ 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