提交 299dc061 编写于 作者: KK's avatar KK

导航参数配置为null时删除该参数

上级 4c41cedb
...@@ -252,7 +252,7 @@ export class ViewTool { ...@@ -252,7 +252,7 @@ export class ViewTool {
if (!name || !this.isString(value)) { if (!name || !this.isString(value)) {
return; return;
} }
if (itemParam[tag].hasOwnProperty(name) && (this.isNull(value) || this.isUndefined(value))) { if (itemParam[tag].hasOwnProperty(name) && (this.isNull(value) || this.isUndefined(value)) || value =='null') {
delete itemParam[tag][name]; delete itemParam[tag][name];
return; return;
} }
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册