Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcjg-web
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
83ce103a
authored
2023-03-15 10:47:39 +0800
by
任超
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:table高度
1 parent
83795135
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
31 additions
and
12 deletions
src/components/LbTable/index.vue
src/styles/index.scss
src/views/statistics/dataReceiveQuality/index.vue
src/views/statistics/nullTermRatio/index.vue
src/views/statistics/registerBookQuality/index.vue
src/views/system/menus/index.vue
src/views/system/roles/index.vue
src/components/LbTable/index.vue
View file @
83ce103
...
...
@@ -97,6 +97,10 @@ export default {
type
:
String
,
default
:
'left'
,
},
calcHeight
:
{
type
:
Number
,
default
:
230
},
merge
:
Array
,
},
components
:
{
...
...
@@ -137,9 +141,9 @@ export default {
_this
.
$nextTick
(()
=>
{
window
.
addEventListener
(
'resize'
,
()
=>
{
_this
.
tableHeight
=
_this
.
calcHeightx
(
230
)
_this
.
tableHeight
=
_this
.
calcHeightx
(
_this
.
calcHeight
)
});
_this
.
tableHeight
=
_this
.
calcHeightx
(
230
)
_this
.
tableHeight
=
_this
.
calcHeightx
(
_this
.
calcHeight
)
})
}
else
{
_this
.
tableHeight
=
window
.
innerHeight
-
_this
.
heightNum
...
...
src/styles/index.scss
View file @
83ce103
...
...
@@ -358,7 +358,7 @@ aside {
height
:
28px
;
background
:
rgba
(
255
,
255
,
255
,
0
.1
);
border-radius
:
16px
;
color
:
#
B06974
;
color
:
#
0097FF
;
}
.successColor
:hover
{
...
...
@@ -366,6 +366,22 @@ aside {
height
:
28px
;
background
:
rgba
(
255
,
255
,
255
,
0
.1
);
border-radius
:
16px
;
color
:
#0097FF
;
}
.delColor
{
width
:
64px
;
height
:
28px
;
background
:
rgba
(
255
,
255
,
255
,
0
.1
);
border-radius
:
16px
;
color
:
#B06974
;
}
.delColor
:hover
{
width
:
64px
;
height
:
28px
;
background
:
rgba
(
255
,
255
,
255
,
0
.1
);
border-radius
:
16px
;
color
:
#B06974
;
}
...
...
src/views/statistics/dataReceiveQuality/index.vue
View file @
83ce103
...
...
@@ -33,8 +33,8 @@
</div>
<!-- 列表区域 -->
<div
class=
"from-clues-content"
>
<lb-table
ref=
"table"
:header-cell-style=
"headerStyle1"
:
pagination=
"false"
:column=
"tableData.columns
"
:data=
"tableData.data"
>
<lb-table
ref=
"table"
:header-cell-style=
"headerStyle1"
:
calcHeight=
"200"
:pagination=
"false
"
:
column=
"tableData.columns"
:
data=
"tableData.data"
>
</lb-table>
<down-lb-table
ref=
"table"
v-show=
"false"
:id=
"'mytable'"
:downExcel=
"true"
:header-cell-style=
"headerStyle"
...
...
src/views/statistics/nullTermRatio/index.vue
View file @
83ce103
...
...
@@ -34,7 +34,7 @@
</div>
<!-- 列表区域 -->
<div
class=
"from-clues-content"
>
<lb-table
ref=
"table"
:pagination=
"false"
:column=
"tableData.columns"
:data=
"tableData.data"
>
<lb-table
ref=
"table"
:pagination=
"false"
:c
alcHeight=
"200"
:c
olumn=
"tableData.columns"
:data=
"tableData.data"
>
</lb-table>
<down-lb-table
ref=
"table"
v-show=
"false"
:id=
"'mytable'"
:downExcel=
"true"
:pagination=
"false"
...
...
src/views/statistics/registerBookQuality/index.vue
View file @
83ce103
...
...
@@ -2,7 +2,7 @@
* @Author: yangwei
* @Date: 2023-02-17 16:32:50
* @LastEditors: Please set LastEditors
* @LastEditTime: 2023-03-1
4 13:19:18
* @LastEditTime: 2023-03-1
5 10:42:21
* @FilePath: \bdcjg-web\src\views\statistics\registerBookQuality\index.vue
* @Description:
*
...
...
@@ -43,7 +43,7 @@
</div>
<!-- 列表区域 -->
<div
class=
"from-clues-content"
>
<lb-table
ref=
"table"
:pagination=
"false"
:border=
"true"
:header-cell-style=
"headerStyle"
<lb-table
ref=
"table"
:pagination=
"false"
:border=
"true"
:
calcHeight=
"200"
:
header-cell-style=
"headerStyle"
:column=
"tableData.columns"
:data=
"tableData.data"
>
</lb-table>
<down-lb-table
ref=
"table"
v-show=
"false"
:id=
"'mytable'"
:header-cell-style=
"headerStyle1"
:downExcel=
"true"
...
...
src/views/system/menus/index.vue
View file @
83ce103
...
...
@@ -36,12 +36,10 @@ import {
findParents
,
removeTreeListItem
,
}
from
"@/utils/operation"
;
// import authorizationdiglog from "./authorizationdiglog.vue";
export
default
{
name
:
"menus"
,
components
:
{
EditDialog
,
// authorizationdiglog,
},
data
()
{
return
{
...
...
@@ -74,6 +72,7 @@ export default {
<
div
>
<
el
-
button
type
=
"text"
class
=
'successColor'
onClick
=
{()
=>
{
this
.
handleEdit
(
scope
.
row
);
}}
...
...
@@ -83,7 +82,7 @@ export default {
<
el
-
button
type
=
"text"
size
=
"mini"
class
=
'delColor'
onClick
=
{()
=>
{
this
.
handleDelete
(
scope
.
row
.
id
,
scope
.
row
.
name
);
}}
...
...
src/views/system/roles/index.vue
View file @
83ce103
...
...
@@ -13,7 +13,7 @@
</el-form>
</div>
<div
class=
"from-clues-content"
>
<lb-table
:pagination=
"false"
@
size-change=
"handleSizeChange"
@
p-current-change=
"handleCurrentChange"
<lb-table
:pagination=
"false"
@
size-change=
"handleSizeChange"
:calcHeight=
"200"
@
p-current-change=
"handleCurrentChange"
:column=
"tableData.columns"
:data=
"listdata"
:expand-row-keys=
"keyList"
row-key=
"dictid"
>
</lb-table>
</div>
...
...
Please
register
or
sign in
to post a comment