初始化(包含登录模块)

This commit is contained in:
2024-03-29 17:37:48 +08:00
commit 1bcb13ce7a
1306 changed files with 152772 additions and 0 deletions

19
utils/getHours.js Normal file
View File

@@ -0,0 +1,19 @@
import store from '@/store/index.js'
import $http from '@/config/requestConfig.js';
// #ifdef APP-PLUS
const nowHour = new Date;
// #endif
// #ifdef H5
const nowHour = new Date;
// #endif
nowHour.hourNumber = nowHour.getHours() // 当前的小时数
nowHour.minuteNumber = nowHour.getMinutes()
var myHour = {
playBgm({mute=false}){
},
}
module.exports = {nowHour}