Commit b591f4a9 authored by lvtz's avatar lvtz

fix

parent ca309eaf
...@@ -96,6 +96,7 @@ const apis = { ...@@ -96,6 +96,7 @@ const apis = {
likeWeekList: `${api}consumer/clock/rank/like_week_index`, likeWeekList: `${api}consumer/clock/rank/like_week_index`,
likeDailyList: `${api}consumer/clock/rank/like_daily_index`, likeDailyList: `${api}consumer/clock/rank/like_daily_index`,
classhonors: `${api}student/class/honors`, classhonors: `${api}student/class/honors`,
randrank: `${api}student/rand_rank`,//成长记录页弹幕
}, },
circleMember: { circleMember: {
listGet: `${api}student/class/students` listGet: `${api}student/class/students`
......
...@@ -59,6 +59,14 @@ function getClasshonors(data) { ...@@ -59,6 +59,14 @@ function getClasshonors(data) {
errorresolve: 1, errorresolve: 1,
}) })
} }
function getRandrank(data) {
return wxRequest({
url: apis.customer.rankingList.randrank,
data,
method: 'GET',
errorresolve: 1,
})
}
export { export {
getTotalList, getTotalList,
getWeekList, getWeekList,
...@@ -66,5 +74,6 @@ export { ...@@ -66,5 +74,6 @@ export {
getLikeTotalList, getLikeTotalList,
getLikeWeekList, getLikeWeekList,
getLikeDailyList, getLikeDailyList,
getClasshonors getClasshonors,
getRandrank
} }
\ No newline at end of file
This diff is collapsed.
...@@ -2,6 +2,9 @@ ...@@ -2,6 +2,9 @@
"navigationBarTitleText": "成长记录", "navigationBarTitleText": "成长记录",
"onReachBottomDistance": 100, "onReachBottomDistance": 100,
"enablePullDownRefresh": true, "enablePullDownRefresh": true,
"navigationBarBackgroundColor": "#494949",
"navigationBarTextStyle": "white",
"backgroundColorTop": "#494949",
"usingComponents": { "usingComponents": {
"clock-item": "../../components/clockitemv2", "clock-item": "../../components/clockitemv2",
"empty-content": "../../../components/emptycontent", "empty-content": "../../../components/emptycontent",
......
This diff is collapsed.
This diff is collapsed.
...@@ -380,7 +380,7 @@ page{ ...@@ -380,7 +380,7 @@ page{
left: 50%; left: 50%;
transform: translateX(-50%); transform: translateX(-50%);
opacity: .9; opacity: .9;
z-index: 999; z-index: 9;
padding-bottom: env(safe-area-inset-bottom); padding-bottom: env(safe-area-inset-bottom);
animation: modalmoveup 0.2s linear forwards; animation: modalmoveup 0.2s linear forwards;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment