Browse Source

修改字段翻译发送给前端的字段拼接逻辑

pull/55/head
zhangxin 3 years ago
parent
commit
937be3af4e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      web/controllers/tabcolname_controller.go

+ 1
- 1
web/controllers/tabcolname_controller.go View File

@ -123,7 +123,7 @@ func TabDataList(ctx iris.Context) {
result, err := data.DataList()
res := map[string]string{}
for _,v:= range result{
key := v.Tabname +"."+v.Colname
key := v.Tabname +"-"+v.Colname
val := v.Textlabel
res[key] = val
}


Loading…
Cancel
Save