Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
hrs_app_h5
/
bill
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
cc2923d4
authored
Aug 03, 2020
by
张辉
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
123
parent
bc7bed1b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
8 deletions
src/views/Bill/record.vue
src/views/Bill/record.vue
View file @
cc2923d4
...
...
@@ -6,7 +6,7 @@
<div
class=
"data-table"
id=
"dataTable"
>
<mescroll-vue
ref=
"mescroll"
:up=
"mescrollUp"
@
init=
"mescrollInit"
>
<div
class=
"container-wrap"
id=
"container-wrap"
>
<div
class=
"container-wrap"
id=
"container-wrap"
v-if=
"dataList.length > 0"
>
<div
class=
"list"
v-for=
"(item, index) in dataList"
:key=
"index"
>
<div
class=
"title"
>
<div
class=
"title_info"
>
{{
item
.
feeType
}}
</div>
...
...
@@ -19,6 +19,9 @@
</p>
</div>
</div>
<div
class=
"empty_data"
v-else
>
暂无
{{
title
}}
数据
</div>
</mescroll-vue>
</div>
</div>
...
...
@@ -56,12 +59,6 @@ export default {
toTop
:
{
src
:
"./static/mescroll/mescroll-totop.png"
,
// 回到顶部按钮的图片路径,支持网络图
},
empty
:
{
// 列表第一页无任何数据时,显示的空提示布局; 需配置warpId才生效;
warpId
:
"dataTable"
,
// 父布局的id;
//icon: "../../assets/images/data-empty.png", // 图标,支持网络图
tip
:
"暂无相关数据"
,
// 提示
},
lazyLoad
:
{
use
:
true
,
// 是否开启懒加载,默认false
},
...
...
@@ -100,7 +97,7 @@ export default {
setBarHeightLowBee
()
{
setTimeout
(()
=>
{
const
barHeight
=
localStorage
.
getItem
(
"barHeight"
);
let
conHeight
=
46
+
parseInt
(
barHeight
);
let
conHeight
=
parseInt
(
barHeight
);
conHeight
=
conHeight
?
conHeight
:
0
;
console
.
log
(
'conHeight='
,
conHeight
);
const
dom
=
document
.
getElementsByClassName
(
"iosStyle"
)[
0
];
...
...
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