mirror of
https://github.com/steedos/steedos-platform
synced 2024-11-22 17:06:42 +00:00
fix bug: standard_delete_many 函数中参数作用域异常
This commit is contained in:
parent
683112c091
commit
3e31a125d8
@ -168,9 +168,9 @@ module.exports = {
|
||||
},
|
||||
on: "list",
|
||||
todo: function () {
|
||||
object_name = this.object_name;
|
||||
list_view_id = Session.get("list_view_id") || "all";
|
||||
listViewName = "listview_" + object_name + "_" + list_view_id;
|
||||
var object_name = this.object_name;
|
||||
var list_view_id = Session.get("list_view_id") || "all";
|
||||
var listViewName = "listview_" + object_name + "_" + list_view_id;
|
||||
Creator.executeAction(object_name, {todo: 'standard_delete'}, null, null, listViewName);
|
||||
}
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user