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
fb0267eb
authored
Aug 03, 2020
by
张辉
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
upddate
parent
35309dfc
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
56 additions
and
20 deletions
src/main.js
src/views/Bill/index.vue
src/views/Bill/record.vue
src/main.js
View file @
fb0267eb
...
...
@@ -37,7 +37,7 @@ Vue.prototype.setPageNavState = function () {
isCloseLeft
:
false
,
isShowTitle
:
false
,
isShowNav
:
false
,
isCloseWebView
:
tru
e
isCloseWebView
:
fals
e
});
bridge
.
getBarHeight
().
then
(
response
=>
{
...
...
src/views/Bill/index.vue
View file @
fb0267eb
...
...
@@ -574,7 +574,19 @@ export default {
// const callJsBridge=callJsBridgeGenerator();
// this.callJsBridge.next();
// this.callJsBridge.next();
this
.
setPageNavState
();
this
.
$bridge
.
setPageNavState
({
headerColor
:
"#fff"
,
isShowClose
:
true
,
isShowBack
:
true
,
isCloseLeft
:
true
,
isShowTitle
:
true
,
isShowNav
:
true
,
isCloseWebView
:
true
})
.
then
(
res
=>
{
console
.
log
(
"setPageNavState in bill index"
);
});
this
.
setBarHeightLowBee
();
this
.
globalNavLeftArrowClick
(
this
.
navLeftArrowClick
);
await
this
.
loadPeriodData
();
...
...
src/views/Bill/record.vue
View file @
fb0267eb
...
...
@@ -10,7 +10,9 @@
<div
class=
"list"
v-for=
"(item, index) in dataList"
:key=
"index"
>
<div
class=
"title"
>
<div
class=
"title_info"
>
{{
item
.
feeType
}}
</div>
<i
:class=
"item.amount>0?'orangeColor':''"
>
{{
item
.
amount
|
moneyNum
}}
</i>
<i
:class=
"item.amount > 0 ? 'orangeColor' : ''"
>
{{
item
.
amount
|
moneyNum
}}
</i>
</div>
<p>
<span>
{{
item
.
dateTime
|
MM
-
DD
HH
:
mm
}}
</span>
...
...
@@ -34,11 +36,11 @@ export default {
components
:
{
HeaderW
,
[
Icon
.
name
]:
Icon
,
MescrollVue
MescrollVue
,
},
mixins
:
[
MescrollMixins
],
computed
:
{
...
mapGetters
([
"getBeginDate"
])
...
mapGetters
([
"getBeginDate"
])
,
},
data
()
{
return
{
...
...
@@ -48,23 +50,23 @@ export default {
callback
:
this
.
upCallback
,
// 上拉回调,此处可简写; 相当于 callback: function (page, mescroll) { getListData(page); }
page
:
{
num
:
0
,
// 当前页码,默认0,回调之前会加1,即callback(page)会从1开始
size
:
10
// 每页数据的数量
size
:
10
,
// 每页数据的数量
},
noMoreSize
:
5
,
// 如果列表已无数据,可设置列表的总数量要大于等于5条才显示无更多数据;避免列表数据过少(比如只有一条数据),显示无更多数据会不好看
toTop
:
{
src
:
"./static/mescroll/mescroll-totop.png"
// 回到顶部按钮的图片路径,支持网络图
src
:
"./static/mescroll/mescroll-totop.png"
,
// 回到顶部按钮的图片路径,支持网络图
},
empty
:
{
// 列表第一页无任何数据时,显示的空提示布局; 需配置warpId才生效;
warpId
:
"dataTable"
,
// 父布局的id;
//icon: "../../assets/images/data-empty.png", // 图标,支持网络图
tip
:
"暂无相关数据~"
// 提示
tip
:
"暂无相关数据~"
,
// 提示
},
lazyLoad
:
{
use
:
true
// 是否开启懒加载,默认false
}
use
:
true
,
// 是否开启懒加载,默认false
}
,
},
dataList
:
[]
dataList
:
[]
,
};
},
methods
:
{
...
...
@@ -77,9 +79,9 @@ export default {
this
.
loadRecord
({
accountId
:
this
.
accountId
,
page
:
page
.
num
,
pageSize
:
"10"
pageSize
:
"10"
,
}).
then
(
resdata
=>
{
(
resdata
)
=>
{
let
arr
=
resdata
.
list
;
// 如果是第一页需手动制空列表
if
(
page
.
num
===
1
)
this
.
dataList
=
[];
...
...
@@ -90,18 +92,40 @@ export default {
mescroll
.
endSuccess
(
arr
.
length
);
});
},
err
=>
{
(
err
)
=>
{
mescroll
.
endErr
();
}
);
},
setBarHeightLowBee
()
{
setTimeout
(()
=>
{
const
barHeight
=
localStorage
.
getItem
(
"barHeight"
);
let
conHeight
=
46
+
parseInt
(
barHeight
);
conHeight
=
conHeight
?
conHeight
:
0
;
const
dom
=
document
.
getElementsByClassName
(
"iosStyle"
)[
0
];
if
(
dom
)
{
dom
.
setAttribute
(
"style"
,
"padding-top:"
+
barHeight
+
"px !important"
);
}
const
dom2
=
document
.
getElementsByClassName
(
"container"
)[
0
];
if
(
dom2
)
{
dom2
.
setAttribute
(
"style"
,
"padding-top:"
+
conHeight
+
"px !important"
);
}
},
100
);
},
navLeftArrowClick
()
{
this
.
$router
.
go
(
-
1
);
}
}
,
},
mounted
()
{
this
.
setPageNavState
();
//
this.setBarHeightLowBee();
this
.
setBarHeightLowBee
();
this
.
globalNavLeftArrowClick
(
this
.
navLeftArrowClick
);
this
.
accountId
=
this
.
$route
.
query
.
accountId
;
const
fromType
=
this
.
$route
.
query
.
fromType
;
...
...
@@ -112,11 +136,11 @@ export default {
}
}
},
created
(){
created
()
{
this
.
$bridge
.
setBarColor
({
barColor
:
"#ffffff"
})
}
barColor
:
"#ffffff"
,
})
;
}
,
};
</
script
>
...
...
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