Commit dd0a8f87 by 任晓松

update

parent 6e20699c
...@@ -1357,10 +1357,10 @@ class OrderInfoService extends ServiceBase { ...@@ -1357,10 +1357,10 @@ class OrderInfoService extends ServiceBase {
let result = await this.customQuery(listSql,whereParams); let result = await this.customQuery(listSql,whereParams);
let total = await this.customQuery(totalSql,whereParams); let total = await this.customQuery(totalSql,whereParams);
result = result.map(t =>{ result = result.map(t =>{
if(t.itemName.endsWith('市')){ if(t.itemName.indexOf('市')>0){
t.itemName = '公司注册'; t.itemName = '公司注册';
} }
if(t.itemName.endsWith('区')){ if(t.itemName.endsWith('区')>0){
t.itemName = '云上园区注册'; t.itemName = '云上园区注册';
} }
return t; return t;
......
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