vue2-client 1.2.41 → 1.2.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +109 -103
- package/docs/notice.md +22 -22
- package/package.json +1 -1
- package/src/base-client/components/common/CreateQuery/CreateQueryItem.vue +555 -0
- package/src/base-client/components/common/FormGroupEdit/FormGroupEdit.vue +149 -149
- package/src/base-client/components/common/XAddForm/XAddForm.vue +339 -338
- package/src/base-client/components/common/XAddNativeForm/XAddNativeForm.vue +2 -1
- package/src/base-client/components/common/XForm/XForm.vue +275 -275
- package/src/base-client/components/iot/CustomerDetailsView/CustomerDetailsView.vue +225 -225
- package/src/base-client/components/iot/DataAnalysisView/DataAnalysisView.vue +244 -244
- package/src/base-client/components/iot/DeviceBrandDetailsView/DeviceBrandDetailsView.vue +452 -452
- package/src/base-client/components/iot/DeviceDetailsView/part/DeviceDetailsCount.vue +330 -330
- package/src/base-client/components/iot/DeviceDetailsView/part/DeviceDetailsException.vue +57 -57
- package/src/base-client/components/iot/DeviceDetailsView/part/DeviceDetailsInstructOperate.vue +121 -121
- package/src/base-client/components/iot/DeviceDetailsView/part/DeviceDetailsRead.vue +131 -131
- package/src/base-client/components/iot/DeviceTypeDetailsView/DeviceTypeDetailsView.vue +276 -276
- package/src/base-client/components/iot/InstructDetailsView/InstructDetailsView.vue +469 -469
- package/src/base-client/components/iot/LogDetailsView/LogDetailsView.vue +379 -379
- package/src/base-client/components/iot/MeterDetailsView/MeterDetailsView.vue +359 -359
- package/src/base-client/components/iot/MeterDetailsView/part/MeterDetailsCount.vue +335 -335
- package/src/base-client/components/iot/MeterDetailsView/part/MeterDetailsException.vue +184 -184
- package/src/base-client/components/iot/MeterDetailsView/part/MeterDetailsHandPlan.vue +291 -291
- package/src/base-client/components/iot/MeterDetailsView/part/MeterDetailsInstruct.vue +236 -236
- package/src/base-client/components/iot/MeterDetailsView/part/MeterDetailsMain.vue +256 -256
- package/src/base-client/components/iot/MeterDetailsView/part/MeterDetailsSellGas.vue +189 -189
- package/src/base-client/components/iot/WebmeterAnalysisView/WebmeterAnalysisView.vue +722 -722
- package/src/base-client/components/system/DictionaryDetailsView/DictionaryDetailsView.vue +231 -231
- package/src/base-client/components/system/QueryParamsDetailsView/QueryParamsDetailsView.vue +247 -247
- package/src/base-client/components/ticket/EmployeeDetailsView/EmployeeDetailsView.vue +370 -370
- package/src/base-client/components/ticket/TicketDetailsView/part/TicketDetailsFlow.vue +260 -260
- package/src/base-client/components/ticket/TicketSubmitSuccessView/TicketSubmitSuccessView.vue +532 -532
- package/src/base-client/plugins/AppData.js +67 -67
- package/src/base-client/plugins/GetLoginInfoService.js +252 -252
- package/src/components/exception/ExceptionPage.vue +70 -70
- package/src/components/setting/Setting.vue +235 -235
- package/src/config/default/setting.config.js +35 -35
- package/src/config/index.js +3 -3
- package/src/layouts/header/HeaderNotice.vue +97 -97
- package/src/layouts/tabs/TabsView.vue +41 -40
- package/src/pages/login/Login.vue +201 -201
- package/src/pages/report/ReportTableHome.vue +28 -28
- package/src/pages/resourceManage/depListManage.vue +23 -23
- package/src/pages/resourceManage/funListManage.vue +23 -23
- package/src/pages/resourceManage/index.js +15 -15
- package/src/pages/resourceManage/orgListManage.vue +98 -98
- package/src/pages/resourceManage/roleListManage.vue +23 -23
- package/src/pages/resourceManage/staffListManage.vue +23 -23
- package/src/pages/system/ticket/submitTicketSuccess.vue +248 -248
- package/src/router/async/config.async.js +26 -26
- package/src/router/index.js +27 -27
- package/src/services/api/common.js +47 -47
- package/src/services/api/index.js +39 -39
- package/src/services/user.js +34 -34
- package/src/theme/default/style.less +47 -33
- package/src/utils/indexedDB.js +146 -146
- package/src/utils/routerUtil.js +359 -359
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
// 此配置为系统默认设置
|
|
2
|
-
module.exports = {
|
|
3
|
-
lang: 'CN', // 语言,可选 CN(简体)、HK(繁体)、US(英语),也可扩展其它语言
|
|
4
|
-
theme: { // 主题
|
|
5
|
-
color: '#1890ff', // 主题色
|
|
6
|
-
mode: 'dark', // 主题模式 可选 dark、 light 和 night
|
|
7
|
-
success: '#52c41a', // 成功色
|
|
8
|
-
warning: '#faad14', // 警告色
|
|
9
|
-
error: '#f5222f' // 错误色
|
|
10
|
-
},
|
|
11
|
-
layout: 'side', // 导航布局,可选 side 和 head,分别为侧边导航和顶部导航
|
|
12
|
-
fixedHeader: true, // 固定头部状态栏,true:固定,false:不固定
|
|
13
|
-
fixedSideBar: true, // 固定侧边栏,true:固定,false:不固定
|
|
14
|
-
fixedTabs: true, // 固定页签头,true:固定,false:不固定
|
|
15
|
-
pageWidth: 'fixed', // 内容区域宽度,fixed:固定宽度,fluid:流式宽度
|
|
16
|
-
weekMode: false, // 色弱模式,true:开启,false:不开启
|
|
17
|
-
multiPage: true, // 多页签模式,true:开启,false:不开启
|
|
18
|
-
cachePage: true, // 是否缓存页面数据,仅多页签模式下生效,true 缓存, false 不缓存
|
|
19
|
-
hideSetting: false, // 隐藏设置抽屉,true:隐藏,false:不隐藏
|
|
20
|
-
homePage: '/system/dictionaryManage', // 首页路由, 登陆后默认打开
|
|
21
|
-
ticketPage: '/submitTicket', // 提交工单路由
|
|
22
|
-
systemName: '基础组件平台', // 系统名称
|
|
23
|
-
systemDesc: '为PC端中、后台系统业务开发提供支持', // 系统描述
|
|
24
|
-
copyright: '2022 AoFengSoft', // copyright
|
|
25
|
-
asyncRoutes: true, // 异步加载路由,true:开启,false:不开启
|
|
26
|
-
showPageTitle: true, // 是否显示页面标题(PageLayout 布局中的页面标题),true:显示,false:不显示
|
|
27
|
-
filterMenu: true, // 根据权限过滤菜单,true:过滤,false:不过滤
|
|
28
|
-
animate: { // 动画设置
|
|
29
|
-
disabled: true, // 禁用动画,true:禁用,false:启用
|
|
30
|
-
name: 'lightSpeed', // 动画效果,支持的动画效果可参考 ./animate.config.js
|
|
31
|
-
direction: 'left' // 动画方向,切换页面时动画的方向,参考 ./animate.config.js
|
|
32
|
-
},
|
|
33
|
-
footerLinks: [ // 页面底部链接,{link: '链接地址', name: '名称/显示文字', icon: '图标,支持 ant design vue 图标库'}
|
|
34
|
-
]
|
|
35
|
-
}
|
|
1
|
+
// 此配置为系统默认设置
|
|
2
|
+
module.exports = {
|
|
3
|
+
lang: 'CN', // 语言,可选 CN(简体)、HK(繁体)、US(英语),也可扩展其它语言
|
|
4
|
+
theme: { // 主题
|
|
5
|
+
color: '#1890ff', // 主题色
|
|
6
|
+
mode: 'dark', // 主题模式 可选 dark、 light 和 night
|
|
7
|
+
success: '#52c41a', // 成功色
|
|
8
|
+
warning: '#faad14', // 警告色
|
|
9
|
+
error: '#f5222f' // 错误色
|
|
10
|
+
},
|
|
11
|
+
layout: 'side', // 导航布局,可选 side 和 head,分别为侧边导航和顶部导航
|
|
12
|
+
fixedHeader: true, // 固定头部状态栏,true:固定,false:不固定
|
|
13
|
+
fixedSideBar: true, // 固定侧边栏,true:固定,false:不固定
|
|
14
|
+
fixedTabs: true, // 固定页签头,true:固定,false:不固定
|
|
15
|
+
pageWidth: 'fixed', // 内容区域宽度,fixed:固定宽度,fluid:流式宽度
|
|
16
|
+
weekMode: false, // 色弱模式,true:开启,false:不开启
|
|
17
|
+
multiPage: true, // 多页签模式,true:开启,false:不开启
|
|
18
|
+
cachePage: true, // 是否缓存页面数据,仅多页签模式下生效,true 缓存, false 不缓存
|
|
19
|
+
hideSetting: false, // 隐藏设置抽屉,true:隐藏,false:不隐藏
|
|
20
|
+
homePage: '/system/dictionaryManage', // 首页路由, 登陆后默认打开
|
|
21
|
+
ticketPage: '/submitTicket', // 提交工单路由
|
|
22
|
+
systemName: '基础组件平台', // 系统名称
|
|
23
|
+
systemDesc: '为PC端中、后台系统业务开发提供支持', // 系统描述
|
|
24
|
+
copyright: '2022 AoFengSoft', // copyright
|
|
25
|
+
asyncRoutes: true, // 异步加载路由,true:开启,false:不开启
|
|
26
|
+
showPageTitle: true, // 是否显示页面标题(PageLayout 布局中的页面标题),true:显示,false:不显示
|
|
27
|
+
filterMenu: true, // 根据权限过滤菜单,true:过滤,false:不过滤
|
|
28
|
+
animate: { // 动画设置
|
|
29
|
+
disabled: true, // 禁用动画,true:禁用,false:启用
|
|
30
|
+
name: 'lightSpeed', // 动画效果,支持的动画效果可参考 ./animate.config.js
|
|
31
|
+
direction: 'left' // 动画方向,切换页面时动画的方向,参考 ./animate.config.js
|
|
32
|
+
},
|
|
33
|
+
footerLinks: [ // 页面底部链接,{link: '链接地址', name: '名称/显示文字', icon: '图标,支持 ant design vue 图标库'}
|
|
34
|
+
]
|
|
35
|
+
}
|
package/src/config/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
const { setting } = require('./default')
|
|
2
|
-
|
|
3
|
-
module.exports = setting
|
|
1
|
+
const { setting } = require('./default')
|
|
2
|
+
|
|
3
|
+
module.exports = setting
|
|
@@ -1,97 +1,97 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<a-dropdown :trigger="['click']" v-model="show">
|
|
3
|
-
<div slot="overlay">
|
|
4
|
-
<a-spin :spinning="loading">
|
|
5
|
-
<a-tabs class="dropdown-tabs" :tabBarStyle="{textAlign: 'center'}" :style="{width: '297px'}">
|
|
6
|
-
<a-tab-pane tab="通知" key="1">
|
|
7
|
-
<a-list>
|
|
8
|
-
<a-list-item :key="item.id" class="tab-pane" v-for=" item in exception">
|
|
9
|
-
<a-list-item-meta :title="'设备号'+ item.e_f_device_id" :description="item.e_f_error_msg" @click="read(item)">
|
|
10
|
-
<a-avatar style="background-color: white" slot="avatar" src="https://gw.alipayobjects.com/zos/rmsportal/ThXAXghbEsBCCSDihZxY.png"/>
|
|
11
|
-
</a-list-item-meta>
|
|
12
|
-
</a-list-item>
|
|
13
|
-
</a-list>
|
|
14
|
-
</a-tab-pane>
|
|
15
|
-
<a-tab-pane tab="消息" key="2">
|
|
16
|
-
<a-list class="tab-pane"></a-list>
|
|
17
|
-
</a-tab-pane>
|
|
18
|
-
<a-tab-pane tab="待办" key="3">
|
|
19
|
-
<a-list class="tab-pane"></a-list>
|
|
20
|
-
</a-tab-pane>
|
|
21
|
-
</a-tabs>
|
|
22
|
-
</a-spin>
|
|
23
|
-
</div>
|
|
24
|
-
<span @click="fetchNotice" class="header-notice">
|
|
25
|
-
<a-badge class="notice-badge" :count=" exception.length">
|
|
26
|
-
<a-icon :class="['header-notice-icon']" type="bell" />
|
|
27
|
-
</a-badge>
|
|
28
|
-
</span>
|
|
29
|
-
</a-dropdown>
|
|
30
|
-
</template>
|
|
31
|
-
|
|
32
|
-
<script>
|
|
33
|
-
import { post } from '@vue2-client/services/api'
|
|
34
|
-
export default {
|
|
35
|
-
name: 'HeaderNotice',
|
|
36
|
-
data () {
|
|
37
|
-
return {
|
|
38
|
-
loading: false,
|
|
39
|
-
show: false,
|
|
40
|
-
exception: []
|
|
41
|
-
}
|
|
42
|
-
},
|
|
43
|
-
computed: {
|
|
44
|
-
},
|
|
45
|
-
created () {
|
|
46
|
-
this.refresh()
|
|
47
|
-
},
|
|
48
|
-
methods: {
|
|
49
|
-
read (item) {
|
|
50
|
-
post('/webmeterapi/saveSingleTable', { data: { tablename: 't_iot_device_exception', param: { id: item.e_id, f_is_read: 1 } } }).then(res => {
|
|
51
|
-
this.refresh()
|
|
52
|
-
})
|
|
53
|
-
},
|
|
54
|
-
refresh () {
|
|
55
|
-
post('/webmeterapi/commonQuery', { queryParamsName: 'deviceExceptionQueryParams', conditionParams: { e_f_is_read: 0 }, pageNo: 1, pageSize: 999999 }).then(res => {
|
|
56
|
-
this.exception = res.data
|
|
57
|
-
})
|
|
58
|
-
},
|
|
59
|
-
fetchNotice () {
|
|
60
|
-
if (this.loading) {
|
|
61
|
-
this.loading = false
|
|
62
|
-
return
|
|
63
|
-
}
|
|
64
|
-
this.loadding = true
|
|
65
|
-
setTimeout(() => {
|
|
66
|
-
this.loadding = false
|
|
67
|
-
}, 1000)
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
</script>
|
|
72
|
-
|
|
73
|
-
<style lang="less">
|
|
74
|
-
.header-notice{
|
|
75
|
-
display: inline-block;
|
|
76
|
-
transition: all 0.3s;
|
|
77
|
-
span {
|
|
78
|
-
vertical-align: initial;
|
|
79
|
-
}
|
|
80
|
-
.notice-badge{
|
|
81
|
-
color: inherit;
|
|
82
|
-
.header-notice-icon{
|
|
83
|
-
font-size: 16px;
|
|
84
|
-
padding: 4px;
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
.dropdown-tabs{
|
|
89
|
-
background-color: @base-bg-color;
|
|
90
|
-
box-shadow: 0 2px 8px @shadow-color;
|
|
91
|
-
border-radius: 4px;
|
|
92
|
-
.tab-pane{
|
|
93
|
-
padding: 0 24px 12px;
|
|
94
|
-
min-height: 250px;
|
|
95
|
-
}
|
|
96
|
-
}
|
|
97
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<a-dropdown :trigger="['click']" v-model="show">
|
|
3
|
+
<div slot="overlay">
|
|
4
|
+
<a-spin :spinning="loading">
|
|
5
|
+
<a-tabs class="dropdown-tabs" :tabBarStyle="{textAlign: 'center'}" :style="{width: '297px'}">
|
|
6
|
+
<a-tab-pane tab="通知" key="1">
|
|
7
|
+
<a-list>
|
|
8
|
+
<a-list-item :key="item.id" class="tab-pane" v-for=" item in exception">
|
|
9
|
+
<a-list-item-meta :title="'设备号'+ item.e_f_device_id" :description="item.e_f_error_msg" @click="read(item)">
|
|
10
|
+
<a-avatar style="background-color: white" slot="avatar" src="https://gw.alipayobjects.com/zos/rmsportal/ThXAXghbEsBCCSDihZxY.png"/>
|
|
11
|
+
</a-list-item-meta>
|
|
12
|
+
</a-list-item>
|
|
13
|
+
</a-list>
|
|
14
|
+
</a-tab-pane>
|
|
15
|
+
<a-tab-pane tab="消息" key="2">
|
|
16
|
+
<a-list class="tab-pane"></a-list>
|
|
17
|
+
</a-tab-pane>
|
|
18
|
+
<a-tab-pane tab="待办" key="3">
|
|
19
|
+
<a-list class="tab-pane"></a-list>
|
|
20
|
+
</a-tab-pane>
|
|
21
|
+
</a-tabs>
|
|
22
|
+
</a-spin>
|
|
23
|
+
</div>
|
|
24
|
+
<span @click="fetchNotice" class="header-notice">
|
|
25
|
+
<a-badge class="notice-badge" :count=" exception.length">
|
|
26
|
+
<a-icon :class="['header-notice-icon']" type="bell" />
|
|
27
|
+
</a-badge>
|
|
28
|
+
</span>
|
|
29
|
+
</a-dropdown>
|
|
30
|
+
</template>
|
|
31
|
+
|
|
32
|
+
<script>
|
|
33
|
+
import { post } from '@vue2-client/services/api'
|
|
34
|
+
export default {
|
|
35
|
+
name: 'HeaderNotice',
|
|
36
|
+
data () {
|
|
37
|
+
return {
|
|
38
|
+
loading: false,
|
|
39
|
+
show: false,
|
|
40
|
+
exception: []
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
computed: {
|
|
44
|
+
},
|
|
45
|
+
created () {
|
|
46
|
+
this.refresh()
|
|
47
|
+
},
|
|
48
|
+
methods: {
|
|
49
|
+
read (item) {
|
|
50
|
+
post('/webmeterapi/saveSingleTable', { data: { tablename: 't_iot_device_exception', param: { id: item.e_id, f_is_read: 1 } } }).then(res => {
|
|
51
|
+
this.refresh()
|
|
52
|
+
})
|
|
53
|
+
},
|
|
54
|
+
refresh () {
|
|
55
|
+
post('/webmeterapi/commonQuery', { queryParamsName: 'deviceExceptionQueryParams', conditionParams: { e_f_is_read: 0 }, pageNo: 1, pageSize: 999999 }).then(res => {
|
|
56
|
+
this.exception = res.data
|
|
57
|
+
})
|
|
58
|
+
},
|
|
59
|
+
fetchNotice () {
|
|
60
|
+
if (this.loading) {
|
|
61
|
+
this.loading = false
|
|
62
|
+
return
|
|
63
|
+
}
|
|
64
|
+
this.loadding = true
|
|
65
|
+
setTimeout(() => {
|
|
66
|
+
this.loadding = false
|
|
67
|
+
}, 1000)
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
</script>
|
|
72
|
+
|
|
73
|
+
<style lang="less">
|
|
74
|
+
.header-notice{
|
|
75
|
+
display: inline-block;
|
|
76
|
+
transition: all 0.3s;
|
|
77
|
+
span {
|
|
78
|
+
vertical-align: initial;
|
|
79
|
+
}
|
|
80
|
+
.notice-badge{
|
|
81
|
+
color: inherit;
|
|
82
|
+
.header-notice-icon{
|
|
83
|
+
font-size: 16px;
|
|
84
|
+
padding: 4px;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
.dropdown-tabs{
|
|
89
|
+
background-color: @base-bg-color;
|
|
90
|
+
box-shadow: 0 2px 8px @shadow-color;
|
|
91
|
+
border-radius: 4px;
|
|
92
|
+
.tab-pane{
|
|
93
|
+
padding: 0 24px 12px;
|
|
94
|
+
min-height: 250px;
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
</style>
|
|
@@ -1,27 +1,29 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<
|
|
3
|
-
<
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
<
|
|
15
|
-
<
|
|
16
|
-
<
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
<
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
2
|
+
<div id="TabsView">
|
|
3
|
+
<admin-layout>
|
|
4
|
+
<contextmenu :itemList="menuItemList" :visible.sync="menuVisible" @select="onMenuSelect" />
|
|
5
|
+
<tabs-head
|
|
6
|
+
v-if="multiPage"
|
|
7
|
+
:active="activePage"
|
|
8
|
+
:page-list="pageList"
|
|
9
|
+
@change="changePage"
|
|
10
|
+
@close="remove"
|
|
11
|
+
@refresh="refresh"
|
|
12
|
+
@contextmenu="onContextmenu"
|
|
13
|
+
/>
|
|
14
|
+
<div :class="['tabs-view-content', layout, pageWidth]" :style="`margin-top: ${multiPage ? -24 : 0}px`">
|
|
15
|
+
<page-toggle-transition v-show="!$route.meta.singlePage" :disabled="animate.disabled" :animate="animate.name" :direction="animate.direction">
|
|
16
|
+
<a-keep-alive :exclude-keys="excludeKeys" v-if="multiPage && cachePage" v-model="clearCaches">
|
|
17
|
+
<router-view v-if="!refreshing" ref="tabContent" :key="$route.path" />
|
|
18
|
+
</a-keep-alive>
|
|
19
|
+
<router-view ref="tabContent" v-else-if="!refreshing" />
|
|
20
|
+
</page-toggle-transition>
|
|
21
|
+
<template v-for="page in single">
|
|
22
|
+
<single-page-view v-show="page.meta.singlePage === $route.meta.singlePage" :single-page-url="page.meta.singlePage" :key="page.meta.singlePage" />
|
|
23
|
+
</template>
|
|
24
|
+
</div>
|
|
25
|
+
</admin-layout>
|
|
26
|
+
</div>
|
|
25
27
|
</template>
|
|
26
28
|
|
|
27
29
|
<script>
|
|
@@ -336,24 +338,23 @@ export default {
|
|
|
336
338
|
}
|
|
337
339
|
</script>
|
|
338
340
|
|
|
339
|
-
<style
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
341
|
+
<style lang="less">
|
|
342
|
+
#TabsView {
|
|
343
|
+
.tabs-view {
|
|
344
|
+
margin: -16px auto 8px;
|
|
345
|
+
&.head.fixed {
|
|
346
|
+
max-width: 1400px;
|
|
347
|
+
}
|
|
344
348
|
}
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
349
|
+
.tabs-view-content {
|
|
350
|
+
position: relative;
|
|
351
|
+
&.head.fixed {
|
|
352
|
+
width: 1400px;
|
|
353
|
+
margin: 0 auto;
|
|
354
|
+
}
|
|
355
|
+
.ant-card:only-of-type {
|
|
356
|
+
min-height: calc(100vh - 64px - 56px - 16px);
|
|
357
|
+
}
|
|
351
358
|
}
|
|
352
359
|
}
|
|
353
360
|
</style>
|
|
354
|
-
|
|
355
|
-
<style scoped>
|
|
356
|
-
.tabs-view-content >>> .ant-card:only-of-type {
|
|
357
|
-
min-height: calc(100vh - 64px - 56px - 16px);
|
|
358
|
-
}
|
|
359
|
-
</style>
|