소스 검색

更新

master
huangjiajun 1 일 전
부모
커밋
8658c99e24
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. +5
    -0
      app/hdl/hdl_index.go

+ 5
- 0
app/hdl/hdl_index.go 파일 보기

@@ -33,10 +33,15 @@ 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.MediumId),
"name": name,
"account": user.Username,
"state": state,
"settle_type": utils.IntToStr(data.SettlementType),
"settle_type_str": settleType[data.SettlementType],
}


불러오는 중...
취소
저장