Explorar el Código

更新

master
huangjiajun hace 1 mes
padre
commit
e3629d8abc
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  1. +5
    -0
      app/hdl/hdl_index.go

+ 5
- 0
app/hdl/hdl_index.go Ver fichero

@@ -33,9 +33,14 @@ func Base(c *gin.Context) {
if data.CompanyAbbreviation != "" {
name = data.CompanyAbbreviation
}
state := "0"
if data.State == 2 {
state = "1"
}
res := map[string]string{
"account_id": utils.IntToStr(user.AgentId),
"name": name,
"state": state,
"account": user.Username,
"settle_type": utils.IntToStr(data.SettlementType),
"settle_type_str": settleType[data.SettlementType],


Cargando…
Cancelar
Guardar