Compare commits

...

2 Commits

Author SHA1 Message Date
f6a3510c1a Update README.md
update
2020-10-31 11:34:29 +08:00
ee2a0f514f 排行榜页面显示问题修复 2020-10-25 20:27:24 +08:00
6 changed files with 27 additions and 8 deletions

View File

@ -191,13 +191,13 @@ docker安装教程[点击前往](https://my.oschina.net/java2nb/blog/4271989)
#### QQ交流群
![mini-code](./assets/小说精品屋开源项目交流群群聊二维码.png)
![mini-code](https://s1.ax1x.com/2020/10/31/BUQVeI.png)
#### 捐赠支持
开源项目不易若此项目能得到你的青睐可以捐赠支持作者持续开发与维护
![mini-code](./assets/jk.png)
![mini-code](https://s1.ax1x.com/2020/10/31/BUQJwq.png)
#### 备注

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>novel</artifactId>
<groupId>com.java2nb</groupId>
<version>2.6.2</version>
<version>2.6.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>novel</artifactId>
<groupId>com.java2nb</groupId>
<version>2.6.2</version>
<version>2.6.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>novel</artifactId>
<groupId>com.java2nb</groupId>
<version>2.6.2</version>
<version>2.6.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -22,7 +22,7 @@
<div class="book_tit">
<div class="fl">
<h3 class="font26 mt5 mb5">点击榜</h3>
<h3 class="font26 mt5 mb5" id="rankName">点击榜</h3>
</div>
<a class="fr"></a>
</div>
@ -123,6 +123,25 @@
layer.alert('网络异常');
}
})
switch (rankType) {
case 0 : {
$("#rankName").html("点击榜");
break;
}
case 1 : {
$("#rankName").html("新书榜");
break;
}
case 2 : {
$("#rankName").html("更新榜");
break;
}
case 3 : {
$("#rankName").html("评论榜");
break;
}
}
}
</script>

View File

@ -5,7 +5,7 @@
<groupId>com.java2nb</groupId>
<artifactId>novel</artifactId>
<version>2.6.2</version>
<version>2.6.4</version>
<modules>
<module>novel-common</module>
<module>novel-front</module>