refactor and add i18n, to be continue

This commit is contained in:
Ben Stone 2021-03-30 19:08:50 +08:00
parent 6cf68605bf
commit ec2888940e
4 changed files with 12 additions and 8 deletions

View File

@ -63,4 +63,8 @@ account_existed = Username already existed
failed_register = Registration failed, please contact the system administrator failed_register = Registration failed, please contact the system administrator
failed_obtain_user_info = Failed to obtain identity information failed_obtain_user_info = Failed to obtain identity information
dingtalk_auto_login_not_enable = DingTalk automatic login function is not enabled dingtalk_auto_login_not_enable = DingTalk automatic login function is not enabled
failed_auto_login = Automatic login failed failed_auto_login = Automatic login failed
no_project = No Project
[blog]
author = author

View File

@ -63,4 +63,8 @@ account_existed = 账号已存在
failed_register = 注册失败,请联系管理员 failed_register = 注册失败,请联系管理员
failed_obtain_user_info = 获取身份信息失败 failed_obtain_user_info = 获取身份信息失败
dingtalk_auto_login_not_enable = 未开启钉钉自动登录功能 dingtalk_auto_login_not_enable = 未开启钉钉自动登录功能
failed_auto_login = 自动登录失败 failed_auto_login = 自动登录失败
no_project = 暂无项目
[blog]
author = 作者

View File

@ -28,14 +28,11 @@ func (c *HomeController) Index() {
pageIndex, _ := c.GetInt("page", 1) pageIndex, _ := c.GetInt("page", 1)
pageSize := 18 pageSize := 18
memberId := 0 memberId := 0
if c.Member != nil { if c.Member != nil {
memberId = c.Member.MemberId memberId = c.Member.MemberId
} }
books, totalCount, err := models.NewBook().FindForHomeToPager(pageIndex, pageSize, memberId) books, totalCount, err := models.NewBook().FindForHomeToPager(pageIndex, pageSize, memberId)
if err != nil { if err != nil {
logs.Error(err) logs.Error(err)
c.Abort("500") c.Abort("500")
@ -47,6 +44,5 @@ func (c *HomeController) Index() {
c.Data["PageHtml"] = "" c.Data["PageHtml"] = ""
} }
c.Data["TotalPages"] = int(math.Ceil(float64(totalCount) / float64(pageSize))) c.Data["TotalPages"] = int(math.Ceil(float64(totalCount) / float64(pageSize)))
c.Data["Lists"] = books c.Data["Lists"] = books
} }

View File

@ -35,7 +35,7 @@
</dd> </dd>
<dd> <dd>
<span class="author"> <span class="author">
<b class="text">作者</b> <b class="text">{{i18n $.Lang "blog.author"}}</b>
<b class="text">-</b> <b class="text">-</b>
<b class="text">{{if eq $item.RealName "" }}{{$item.CreateName}}{{else}}{{$item.RealName}}{{end}}</b> <b class="text">{{if eq $item.RealName "" }}{{$item.CreateName}}{{else}}{{$item.RealName}}{{end}}</b>
</span> </span>
@ -43,7 +43,7 @@
</dl> </dl>
</div> </div>
{{else}} {{else}}
<div class="text-center" style="height: 200px;margin: 100px;font-size: 28px;">暂无项目</div> <div class="text-center" style="height: 200px;margin: 100px;font-size: 28px;">{{i18n $.Lang "message.no_project"}}</div>
{{end}} {{end}}
<div class="clearfix"></div> <div class="clearfix"></div>
</div> </div>