|
|
@@ -420,6 +420,7 @@
|
|
420
|
420
|
etime: $('#starttime').val() && $('#starttime').val().split(' ~ ')[1], //=结束时间
|
|
421
|
421
|
deptid: $("#PID").val(),//承办单位id
|
|
422
|
422
|
level: $("#dealtype").val(),//级别
|
|
|
423
|
+ key:$('#key').val(),//关键字
|
|
423
|
424
|
token: $.cookie("token")
|
|
424
|
425
|
};
|
|
425
|
426
|
return param;
|
|
|
@@ -451,9 +452,9 @@
|
|
451
|
452
|
function GetCont(val) {
|
|
452
|
453
|
if (val) {
|
|
453
|
454
|
var str = '<div '
|
|
454
|
|
- if (val.length > 20) {
|
|
|
455
|
+ if (val.length > 30) {
|
|
455
|
456
|
str = str + ' title="' + val + '" ';
|
|
456
|
|
- val = val.substr(0, 20) + "...";
|
|
|
457
|
+ val = val.substr(0, 30) + "...";
|
|
457
|
458
|
}
|
|
458
|
459
|
return str + '>' + val + '</div>';
|
|
459
|
460
|
} else {
|
|
|
@@ -464,9 +465,9 @@
|
|
464
|
465
|
function Dispose(val, row) {
|
|
465
|
466
|
return '<ul class="tool_downs">' +
|
|
466
|
467
|
'<li><a href="javascript:;" class="aBtn" authorize="yes" id="HY_details_' + row.F_DemandsId + '" onclick="add_knowledge(\'' + row.F_DemandsId + '\')" title="添加知识库">添加知识库</a></li>' +
|
|
467
|
|
- '<li><a href="javascript:;" class="aBtn" style="margin-left:20px;" authorize="yes" id="HY_details_' + row.F_DemandsId + '" onclick="btn_details(\'' + row.F_DemandsId + '\')" title="详情">详情</a></li>' +
|
|
468
|
|
- '<li class="edit"><a href="javascript:;" class="aBtn" style="margin-left:20px;" authorize="yes" id="HY_details_' + row.F_DemandsId + '" onclick="btn_edit(\'' + row.F_DemandsId + '\')" title="编辑">编辑</a></li>' +
|
|
469
|
|
- '<li class="delete_list"><a href="javascript:;" class="aBtn hide_btn" style="margin-left:20px;" authorize="yes" id="HY_delete_' + row.F_DemandsId + '" onclick="btn_delete(' + row.F_DemandsId + ')" title="删除">删除</a></li>' +
|
|
|
468
|
+ '<li><a href="javascript:;" class="aBtn" style="margin-left:0px;" authorize="yes" id="HY_details_' + row.F_DemandsId + '" onclick="btn_details(\'' + row.F_DemandsId + '\')" title="详情">详情</a></li>' +
|
|
|
469
|
+ '<li class="edit"><a href="javascript:;" class="aBtn" style="margin-left:0px;" authorize="yes" id="HY_details_' + row.F_DemandsId + '" onclick="btn_edit(\'' + row.F_DemandsId + '\')" title="编辑">编辑</a></li>' +
|
|
|
470
|
+ '<li class="delete_list"><a href="javascript:;" class="aBtn hide_btn" style="margin-left:0px;" authorize="yes" id="HY_delete_' + row.F_DemandsId + '" onclick="btn_delete(' + row.F_DemandsId + ')" title="删除">删除</a></li>' +
|
|
470
|
471
|
'</ul>';
|
|
471
|
472
|
}
|
|
472
|
473
|
//添加到知识库
|