@@ -232,7 +232,10 @@ namespace Learun.Application.Web.Areas.EducationalAdministration.Controllers | |||||
{ | { | ||||
for (int i = 0; i < array.Length; i++) | for (int i = 0; i < array.Length; i++) | ||||
{ | { | ||||
str += array[i].Substring(0, array[i].IndexOf(".")) + ","; | |||||
if (array[i].Trim()!="") | |||||
{ | |||||
str += array[i].Substring(0, array[i].IndexOf(".")) + ","; | |||||
} | |||||
} | } | ||||
str.TrimEnd(','); | str.TrimEnd(','); | ||||
} | } | ||||
@@ -196,13 +196,16 @@ var bootstrap = function ($, learun) { | |||||
success: function (res) { | success: function (res) { | ||||
console.log(res); | console.log(res); | ||||
var bb = ''; | var bb = ''; | ||||
$.each(res.data, function(i, item) { | |||||
bb += '<span onclick="downLoad(\'' + | |||||
item.F_Id + | |||||
'\')" style="color:blue">' + | |||||
item.F_FileName.substring(0,item.F_FileName.indexOf(".")) + | |||||
'</span>, '; | |||||
$.each(res.data, function (i, item) { | |||||
bb += item.F_FileName.substring(0, item.F_FileName.indexOf(".")) | |||||
}) | }) | ||||
//$.each(res.data, function(i, item) { | |||||
// bb += '<span onclick="downLoad(\'' + | |||||
// item.F_Id + | |||||
// '\')" style="color:blue">' + | |||||
// item.F_FileName.substring(0,item.F_FileName.indexOf(".")) + | |||||
// '</span>, '; | |||||
//}) | |||||
callback(bb); | callback(bb); | ||||
} | } | ||||
}); | }); | ||||
@@ -235,8 +238,8 @@ var bootstrap = function ($, learun) { | |||||
if (res.code == 200) { | if (res.code == 200) { | ||||
// 发起流程 | // 发起流程 | ||||
var postData = { | var postData = { | ||||
//schemeCode: 'Dispatch',// 本地 | |||||
schemeCode: 'DBSW',//线上 | |||||
schemeCode: 'Dispatch',// 本地 | |||||
//schemeCode: 'DBSW',//线上 | |||||
processId: processId, | processId: processId, | ||||
level: '1', | level: '1', | ||||
}; | }; | ||||
@@ -197,18 +197,14 @@ var bootstrap = function ($, learun) { | |||||
success: function (res) { | success: function (res) { | ||||
console.log(res); | console.log(res); | ||||
var bb = ''; | var bb = ''; | ||||
$.each(res.data, function(i, item) { | |||||
bb += '<span onclick="downLoad(\'' + | |||||
item.F_Id + | |||||
'\')" style="color:blue">' + | |||||
item.F_FileName.substring(0,item.F_FileName.indexOf(".")) + | |||||
'</span>, '; | |||||
$.each(res.data, function (i, item) { | |||||
bb += item.F_FileName.substring(0, item.F_FileName.indexOf(".")) | |||||
}) | }) | ||||
callback(bb); | callback(bb); | ||||
} | } | ||||
}); | }); | ||||
}}, | |||||
} | |||||
}, | |||||
{ | { | ||||
label: "审批状态", name: "FlowNo", width: 100, align: "center", | label: "审批状态", name: "FlowNo", width: 100, align: "center", | ||||
formatter: function (cellvalue, row) { | formatter: function (cellvalue, row) { | ||||
@@ -241,8 +237,8 @@ var bootstrap = function ($, learun) { | |||||
if (res.code == 200) { | if (res.code == 200) { | ||||
// 发起流程 | // 发起流程 | ||||
var postData = { | var postData = { | ||||
//schemeCode: 'Dispatch',// 本地 | |||||
schemeCode: 'XBSW',// 线上 | |||||
schemeCode: 'Dispatch',// 本地 | |||||
//schemeCode: 'XBSW',// 线上 | |||||
processId: processId, | processId: processId, | ||||
level: '1', | level: '1', | ||||
}; | }; | ||||
@@ -84,13 +84,8 @@ var bootstrap = function ($, learun) { | |||||
success: function (res) { | success: function (res) { | ||||
console.log(res); | console.log(res); | ||||
var bb = ''; | var bb = ''; | ||||
$.each(res.data, function(i, item) { | |||||
bb += '<span onclick="downLoad(\'' + | |||||
item.F_Id + | |||||
'\')" style="color:blue">' + | |||||
item.F_FileName.substring(0,item.F_FileName.indexOf(".")) + | |||||
'</span>, '; | |||||
$.each(res.data, function (i, item) { | |||||
bb += item.F_FileName.substring(0, item.F_FileName.indexOf(".")) | |||||
}) | }) | ||||
callback(bb); | callback(bb); | ||||
} | } | ||||