Skip to content

Commit

Permalink
更新index图片
Browse files Browse the repository at this point in the history
  • Loading branch information
lf05 committed Jan 6, 2021
1 parent 834fbb0 commit 045c5ac
Show file tree
Hide file tree
Showing 18 changed files with 158 additions and 32 deletions.
Empty file added .idea/.gitignore
Empty file.
9 changes: 9 additions & 0 deletions .idea/TJSPACE_V2.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

37 changes: 37 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

77 changes: 77 additions & 0 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added dist.rar
Binary file not shown.
5 changes: 3 additions & 2 deletions node_modules/axios/package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"dependencies": {
"@quasar/extras": "^1.0.0",
"axios": ">=0.21.1",
"axios": "^0.21.1",
"core-js": "^3.6.5",
"echarts": "^5.0.0",
"element-ui": "^2.14.1",
Expand Down
Binary file modified src/assets/index_img/BBS_index.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/index_img/comment_index.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/index_img/courseInfo_index.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/index_img/courses_index.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/index_img/makeComment_index.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/index_img/searchCourse_index.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
36 changes: 9 additions & 27 deletions src/pages/Forum.vue
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,9 @@
</div>
<!--返回顶部按钮-->
<q-btn
@click="toTop"
@click="toTop('smooth')"
class="q-py-sm"
style="width: 230px"
style="width: 230px; position: fixed; bottom: 0"
color="black"
icon="keyboard_arrow_up"
flat
Expand Down Expand Up @@ -307,7 +307,7 @@ export default {
//帖子标题和推荐栏随页面滚动
follow(position) {
var title = document.getElementById("title");
var toTop = document.getElementById("toTop");
//var toTop = document.getElementById("toTop");
if (
!this.jump &&
document
Expand All @@ -316,33 +316,15 @@ export default {
.indexOf("q-header--hidden") != -1
) {
title.style.top = position - 50 + "px";
toTop.style.top = position - 50 + "px";
//toTop.style.top = position - 50 + "px";
} else {
title.style.top = position + "px";
toTop.style.top = position + "px";
//toTop.style.top = position + "px";
}
/*
if (
document
.getElementsByTagName("footer")[0]
.getAttribute("class")
.indexOf("q-footer--hidden") != -1
) {
toTop.style.top =
position +
document.documentElement.clientHeight -
toTop.offsetHeight -
50 +
"px";
} else {
toTop.style.top =
position +
document.documentElement.clientHeight -
toTop.offsetHeight -
100 +
"px";
}
*/
/*toTop.style.top =
position + document.documentElement.clientHeight - toTop.offsetHeight - 50 + "px";*/
this.jump = false;
},
},
Expand Down

0 comments on commit 045c5ac

Please sign in to comment.