This commit is contained in:
jiangyong27 2025-03-17 11:44:14 +08:00
parent ce3256c390
commit e00f16a847
2 changed files with 3 additions and 4 deletions

View File

@ -12,10 +12,6 @@
{
"name": "公积金扣除",
"key": "house_deduct"
},
{
"name": "绩效目标",
"key": "perft_target"
}
]
}

View File

@ -172,6 +172,9 @@ func (s *StaffUser) Update(sess *session.AdminSession, req *api.StaffUpdateReq)
if len(req.Config) != 0 {
var cfg map[string]interface{}
json.Unmarshal([]byte(staffUser.Config), &cfg)
if cfg == nil {
cfg = make(map[string]interface{})
}
for k, v := range req.Config {
cfg[k] = v
}