mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2026-01-08 09:24:32 +08:00
fix issue #I6J136 选字段时报错
This commit is contained in:
@@ -243,9 +243,9 @@ layui.config({
|
||||
console.log(obj.type); //如果触发的是全选,则为:all,如果触发的是单选,则为:one
|
||||
var ids=[];
|
||||
if(obj.type=="all"){
|
||||
ids = layui.table.checkStatus('propList').data.map(function (m) { return m.Key; });
|
||||
ids = layui.table.checkStatus('propList').data.map(function (m) { return m.ColumnName; });
|
||||
}else{
|
||||
ids =[obj.data.Key]
|
||||
ids =[obj.data.ColumnName]
|
||||
}
|
||||
|
||||
var url = "/AccessObjs/AssignDataProperty";
|
||||
|
||||
Reference in New Issue
Block a user