浏览代码

增加系统配置接口

kobe6258 4 月之前
父节点
当前提交
578816284a
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      controllers/user.go

+ 1 - 1
controllers/user.go

@@ -593,7 +593,7 @@ func (this *UserController) ExportOfficialUsers() {
 	}
 	year, month, day := time.Now().Date()
 	yearStr := strconv.Itoa(year)[2:]
-	fileName := fmt.Sprintf("用户表%s.%d.%d.xlsx", yearStr, month, day)
+	fileName := fmt.Sprintf("用户表%s.%d.%d.xlsx", yearStr, month, day)
 	file, err := utils.ExportExcel("用户列表", userCols, userList)
 	_ = this.downloadExcelFile(file, fileName)
 	br.Ret = 200