Commit 1dd9e8a6 by linboxuan

update opNeedList

parent bd8c7389
......@@ -62,8 +62,13 @@ class NeedinfoService extends ServiceBase {
pageSize: Number(actionBody.pageSize) || 10
}
}
// if (actionBody.consultType) {
// sobj.search.consult_type = actionBody.consultType;
// }
// 2020 0924 lin 修改之前查询条件consultType 为 channelTypeCode
// 注意这里 对应数据库的是typeCode 但传来的参数是consultType
if (actionBody.consultType) {
sobj.search.consult_type = actionBody.consultType;
sobj.search.typeCode = actionBody.consultType;
}
// liang 追加筛选条件
if (actionBody.status && statusDic.indexOf(actionBody.status) != -1) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment