用户申请入驻

This commit is contained in:
苏尹岚
2020-09-16 13:45:24 +08:00
parent 3d4b13eb98
commit f4796bb9cd
4 changed files with 51 additions and 1 deletions

View File

@@ -852,7 +852,7 @@ func (c *StoreController) CreateStoreAudit() {
c.callCreateStoreAudit(func(params *tStoreCreateStoreAuditParams) (retVal interface{}, errCode string, err error) {
store := &model.StoreAudit{}
if err = utils.UnmarshalUseNumber([]byte(params.Payload), store); err == nil {
// retVal, err = cms.CreateStore(params.Ctx, store, params.Ctx.GetUserName())
err = cms.CreateStoreAudit(params.Ctx, store)
}
return retVal, "", err
})