...
|
...
|
@@ -220,10 +220,7 @@ func (c *CommonController) SelectCompanyUserList() { |
|
|
}
|
|
|
companyid := c.GetCompanyId()
|
|
|
listData := servecommon.SelectCompanyUserList(param.PageIndex, param.PageSize, companyid, param.UserName)
|
|
|
rspData := map[string]interface{}{
|
|
|
"gridResult": listData,
|
|
|
}
|
|
|
msg = protocol.NewReturnResponse(rspData, nil)
|
|
|
msg = protocol.NewPageDataResponse(listData, nil)
|
|
|
return
|
|
|
}
|
|
|
|
...
|
...
|
@@ -245,9 +242,6 @@ func (c *CommonController) SelectChanceList() { |
|
|
}
|
|
|
companyid := c.GetCompanyId()
|
|
|
listData := servecommon.SelectChanceList(param.PageIndex, param.PageSize, companyid, param.ChanceCode)
|
|
|
rspData := map[string]interface{}{
|
|
|
"gridResult": listData,
|
|
|
}
|
|
|
msg = protocol.NewReturnResponse(rspData, nil)
|
|
|
msg = protocol.NewPageDataResponse(listData, nil)
|
|
|
return
|
|
|
} |
...
|
...
|
|