gaoluyang
2 天以前 cb78cb10939dc95b55e26b68cd805f2717ea48f0
src/store/modules/user.js
@@ -31,6 +31,16 @@
          })
        })
      },
      getCurrentTime() {
        const now = new Date();
        const year = now.getFullYear();       // 获取年份
        const month = String(now.getMonth() + 1).padStart(2, '0');  // 月份从0开始,要+1,并补零
        const day = String(now.getDate()).padStart(2, '0');         // 日期补零
        const hours = String(now.getHours()).padStart(2, '0');      // 小时补零
        const minutes = String(now.getMinutes()).padStart(2, '0');  // 分钟补零
        const seconds = String(now.getSeconds()).padStart(2, '0');  // 秒数补零
        return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
      },
      // 获取用户信息
      getInfo() {
        return new Promise((resolve, reject) => {
@@ -49,7 +59,9 @@
            this.avatar = avatar
            this.currentFactoryName = user.currentFactoryName
            this.nickName = user.nickName
            this.roleName = user.roles[0].roleName
            this.currentDeptId = user.tenantId
            this.currentLoginTime = this.getCurrentTime()
            resolve(res)
          }).catch(error => {
            reject(error)