|
|
@@ -102,7 +102,6 @@
|
|
102
|
102
|
<th data-field="F_Title" data-align="left" data-formatter="formatterTitle">标题</th>
|
|
103
|
103
|
<th data-field="F_Content" data-align="left" data-formatter="oper">内容</th>
|
|
104
|
104
|
<th data-field="F_KeyWords" data-align="center" data-formatter="formatterKey">关键字</th>
|
|
105
|
|
- <th data-field="F_CreateOn" data-align="center">创建时间</th>
|
|
106
|
105
|
</tr>
|
|
107
|
106
|
</thead>
|
|
108
|
107
|
<tbody id="tbody">
|
|
|
@@ -266,7 +265,6 @@
|
|
266
|
265
|
return param;
|
|
267
|
266
|
},
|
|
268
|
267
|
onLoadSuccess: function(data) { //加载成功时执行
|
|
269
|
|
- debugger
|
|
270
|
268
|
//layer.msg("加载成功");
|
|
271
|
269
|
},
|
|
272
|
270
|
onLoadError: function() { //加载失败时执行
|
|
|
@@ -295,9 +293,9 @@
|
|
295
|
293
|
return '<div onclick="btn_detail('+ row.F_RepositoryId +')" class="content">' + val + '</div>'
|
|
296
|
294
|
}
|
|
297
|
295
|
function oper(val, row) {
|
|
298
|
|
- if(val.length > 20){
|
|
299
|
|
- val = val.substring(0,20) + "...";
|
|
300
|
|
- }
|
|
|
296
|
+// if(val.length > 20){
|
|
|
297
|
+// val = val.substring(0,20) + "...";
|
|
|
298
|
+// }
|
|
301
|
299
|
return '<div onclick="btn_detail('+ row.F_RepositoryId +')" class="content">' + val + '</div>'
|
|
302
|
300
|
}
|
|
303
|
301
|
|