We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75b58e6 commit 8d42ec4Copy full SHA for 8d42ec4
res/js/index.js
@@ -201,7 +201,10 @@ axios.get(window.prefix + "/api/comm/initData",{}).then((initData)=>{
201
this.roomId = parseInt(Math.random() * 100000);
202
this.addPopup("你刷新了房间号, 当前房间号为 "+this.roomId);
203
this.logs.push("你刷新了房间号, 当前房间号为 "+this.roomId);
204
- $("#refresh").removeClass("layui-anim-rotate").addClass("layui-anim-rotate")
+ $("#refresh").removeClass("layui-anim-rotate")
205
+ setTimeout(()=>{
206
+ $("#refresh").addClass("layui-anim-rotate")
207
+ },50)
208
}
209
},
210
genNickName : function () {
0 commit comments