|
|
|
@ -4733,7 +4733,7 @@ layui.config({ base: './ayq/modules/' }).define(["layer", 'flow', "laytpl", "ele
|
|
|
|
|
window.location = "../org/task_list_bdw.html";
|
|
|
|
|
} else {
|
|
|
|
|
window.location = "../org/task_list.html";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$("#formSave").on('click', function () {
|
|
|
|
@ -5173,7 +5173,7 @@ layui.config({ base: './ayq/modules/' }).define(["layer", 'flow', "laytpl", "ele
|
|
|
|
|
Class.prototype.findJsonItem = function (json, id) {
|
|
|
|
|
var that = this,
|
|
|
|
|
options = that.config;
|
|
|
|
|
for (var i = 0; i < json.length; i++) {
|
|
|
|
|
for (var i = 0; i < json.length; i++) {
|
|
|
|
|
if (json[i].id === id) {
|
|
|
|
|
return json[i];
|
|
|
|
|
} else {
|
|
|
|
@ -5202,6 +5202,14 @@ layui.config({ base: './ayq/modules/' }).define(["layer", 'flow', "laytpl", "ele
|
|
|
|
|
if (json[i].id === id) {
|
|
|
|
|
var _newjson = JSON.parse(JSON.stringify(json[i]));
|
|
|
|
|
_newjson.id = that.autoId(_newjson.tag);
|
|
|
|
|
if (json[i].tag === 'grid') {
|
|
|
|
|
for (var j = 0; j < json[i].columns.length; j++) {
|
|
|
|
|
for (var k = 0; k < json[i].columns[j].list.length; k++) {
|
|
|
|
|
var _childjson = json[i].columns[j].list[k];
|
|
|
|
|
_childjson.id = that.autoId(_childjson.tag);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
json.splice(i + 1, 0, _newjson);
|
|
|
|
|
return json[i];
|
|
|
|
|
} else {
|
|
|
|
|