|
|
@@ -262,10 +262,8 @@
|
|
262
|
262
|
color: #000000;
|
|
263
|
263
|
}
|
|
264
|
264
|
.tool_downs{
|
|
265
|
|
- display: block;
|
|
266
|
|
- width: 100%;
|
|
267
|
|
- height: 100%;
|
|
268
|
|
- text-align: center;
|
|
|
265
|
+ display: flex;
|
|
|
266
|
+ justify-content: center;
|
|
269
|
267
|
}
|
|
270
|
268
|
.tool_downs a{
|
|
271
|
269
|
list-style: none;
|
|
|
@@ -469,15 +467,15 @@
|
|
469
|
467
|
function Dispose(val, row) {
|
|
470
|
468
|
if(row.F_RepositoryId&&row.F_RepositoryId!=0){
|
|
471
|
469
|
return '<div class="tool_downs">' +
|
|
472
|
|
- '<span><a href="javascript:;" class="aBtn" authorize="yes" id="HY_details_' + row.F_DemandsId + '" onclick="see_knowledge(' + row.F_RepositoryId +')" title="查看知识库">查看知识库</a></span>' +
|
|
|
470
|
+ '<a href="javascript:;" class="aBtn" authorize="yes" id="HY_details_' + row.F_DemandsId + '" onclick="see_knowledge(' + row.F_RepositoryId +')" title="查看知识库">查看知识库</a>' +
|
|
473
|
471
|
// '<li><a href="javascript:;" class="aBtn" authorize="yes" id="HY_details_' + row.F_DemandsId + '" onclick="add_knowledge(' + row.F_DemandsId +','+row.F_Deptid+')" title="添加知识库">添加知识库</a></li>' +
|
|
474
|
|
- '<span><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></span>' +
|
|
|
472
|
+ '<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>' +
|
|
475
|
473
|
'</div>';
|
|
476
|
474
|
}else{
|
|
477
|
475
|
return '<div class="tool_downs">' +
|
|
478
|
476
|
// '<li><a href="javascript:;" class="aBtn" authorize="yes" id="HY_details_' + row.F_DemandsId + '" onclick="see_knowledge(' + row.F_RepositoryId +')" title="查看知识库">查看知识库</a></li>' +
|
|
479
|
|
- '<span><a href="javascript:;" class="aBtn" authorize="yes" id="HY_details_' + row.F_DemandsId + '" onclick="add_knowledge(' + row.F_DemandsId +','+row.F_Deptid+')" title="添加知识库">添加知识库</a></span>' +
|
|
480
|
|
- '<span><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></span>' +
|
|
|
477
|
+ '<a href="javascript:;" class="aBtn" authorize="yes" id="HY_details_' + row.F_DemandsId + '" onclick="add_knowledge(' + row.F_DemandsId +','+row.F_Deptid+')" title="添加知识库">添加知识库</a>' +
|
|
|
478
|
+ '<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>' +
|
|
481
|
479
|
'</div>';
|
|
482
|
480
|
}
|
|
483
|
481
|
|