nil
This commit is contained in:
parent
ce3256c390
commit
e00f16a847
|
@ -12,10 +12,6 @@
|
||||||
{
|
{
|
||||||
"name": "公积金扣除",
|
"name": "公积金扣除",
|
||||||
"key": "house_deduct"
|
"key": "house_deduct"
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "绩效目标",
|
|
||||||
"key": "perft_target"
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -172,6 +172,9 @@ func (s *StaffUser) Update(sess *session.AdminSession, req *api.StaffUpdateReq)
|
||||||
if len(req.Config) != 0 {
|
if len(req.Config) != 0 {
|
||||||
var cfg map[string]interface{}
|
var cfg map[string]interface{}
|
||||||
json.Unmarshal([]byte(staffUser.Config), &cfg)
|
json.Unmarshal([]byte(staffUser.Config), &cfg)
|
||||||
|
if cfg == nil {
|
||||||
|
cfg = make(map[string]interface{})
|
||||||
|
}
|
||||||
for k, v := range req.Config {
|
for k, v := range req.Config {
|
||||||
cfg[k] = v
|
cfg[k] = v
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue