Parcourir la Source

修改新版知识库

zhangshuangnan il y a 8 ans
Parent
commit
db22627c19

+ 8 - 5
WebUI/CallCenterWeb.UI/zhiShiKu/newRepository.html

@@ -524,8 +524,8 @@
524 524
 							<p class="secl"><input type="text" placeholder="请输入关键字" class="searCon rightSearchKey" /></p><button href="javaScript:;" class="stb" id="rightSearch"></button></div>
525 525
 					        <button class="btns addTo" style="float: right;">添加</button>
526 526
 					</div>
527
-					<ul class="keyList clearfix" style="height: 38px;">
528
-						<!--<li>市民反馈问题 </li>
527
+					<!--<ul class="keyList clearfix" style="height: 38px;">
528
+						<li>市民反馈问题 </li>
529 529
 						<li>车辆管理条例 </li>
530 530
 						<li>市长重要讲话   </li>
531 531
 						<li>社保资料 </li>
@@ -535,8 +535,9 @@
535 535
 						<li>鹤壁政府 </li>
536 536
 						<li>公积金 </li>
537 537
 						<li>市长热线  </li>
538
-						<li>鹤壁政府  </li>-->
539
-					</ul>
538
+						<li>鹤壁政府  </li>
539
+					</ul>-->
540
+					<p style="color: #4c4c4c;font-size: 14px; margin: 10px 0;" class="rightTabKey">市教育体育局</p>
540 541
 					<div class="line"></div>
541 542
 					
542 543
 					<div class="tableBox">
@@ -637,8 +638,10 @@
637 638
         			$('.unitList li').removeClass('active')
638 639
         			$(this).addClass('active');
639 640
         			var depId=$(this).attr('data-id');
641
+        			var keyWord=$(this).find('div').html();
642
+        			$('.rightTabKey').html(keyWord);
640 643
         			$('#depID').val(depId);
641
-        			initTable(depId)
644
+        			initTable(depId);
642 645
         		})
643 646
         		
644 647
         		//左侧单位鼠标移入效果

+ 4 - 3
WebUI/CallCenterWeb.UI/zhiShiKu/newRepositoryAdd.html

@@ -45,10 +45,11 @@
45 45
 			}
46 46
 			.table tr td input[type="text"]{
47 47
 			    width: 100%;
48
-			    height: 30px;
48
+			    height: 34px;
49 49
 			    background: #f3f3f4;
50
-			    border: 0;
51 50
 			    outline: none;
51
+		        border: 1px solid #e7e7e7;
52
+		        padding-left: 10px;
52 53
 			}
53 54
 			.radio-inline input[type=radio]{
54 55
 				margin-top: 2px;
@@ -57,7 +58,7 @@
57 58
 			    width: 100%;
58 59
 			    height: 100%;
59 60
 			    background: #f3f3f4;
60
-			    border: 1px solid #ebebeb;
61
+			    border: 1px solid #e7e7e7;
61 62
 			    resize: none;
62 63
 			}
63 64
 			#scwj{

+ 22 - 10
WebUI/CallCenterWeb.UI/zhiShiKu/newRepositoryDetail.html

@@ -225,6 +225,19 @@
225 225
 						</div>
226 226
 						
227 227
 						<div class="cons">
228
+							<table class="table-bordered table-condensed feilTable" style="width: 100%;">
229
+								<thead>
230
+									<tr>
231
+										<th>文件名称</th>
232
+										<th>添加时间</th>
233
+										<th>文件大小</th>
234
+									</tr>
235
+								</thead>
236
+								<tbody>
237
+									
238
+								</tbody>
239
+								
240
+							</table>
228 241
 							<div class="fileBox">
229 242
 									<!--<span class="files">文件1<i class="fa fa-remove"></i></span>-->
230 243
 								</div>
@@ -235,10 +248,10 @@
235 248
 								<input class="input" type="button" value="删除附件" id="scfj" style="display:none;" />
236 249
 								<input type="hidden" id="file" />
237 250
 						</div>
251
+					
238 252
 					</div>
239 253
 			</div>
240 254
 			
241
-			
242 255
 			<script src="../js/kindeditor/kindeditor-all-min.js"></script>
243 256
 			<script src="../js/kindeditor/lang/zh-CN.js"></script>
244 257
 			<script src="../js/adjustHeight.js"></script>
@@ -294,16 +307,15 @@
294 307
 								$('#template').val(con.F_Template);//办理结果样本
295 308
 								$('#payinfo').val(con.F_PayInfo);//收费标准及依据
296 309
 			//					$('#files').val() //收费标准及依据
297
-			console.log()
310
+								console.log()
298 311
 								$(res.data.file).each(function(k,q){
299
-										var strs='<span class="files" fiel-num="'+ q.F_FileId +'">'+ q.F_FileName +'</span>'
300
-										$(strs).appendTo($('.fileBox'))
301
-//								.find('.del_file').click(function(event){
302
-//											event.stopPropagation();
303
-//											$(this).parent().remove();
304
-////												file_num()
305
-//										})
306
-//										file_num()
312
+//										var strs='<span class="files" fiel-num="'+ q.F_FileId +'">'+ q.F_FileName +'</span>'
313
+										var strs='<tr>'+
314
+										          '<td><a href="'+ q.F_FileUrl+'">'+ q.F_FileName +'</a></td>'+
315
+										          '<td>'+ q.F_AddTime +'</td>'+
316
+										          '<td>'+ q.F_Size +'</td>'+
317
+												'</tr>'
318
+										$(strs).appendTo($('.feilTable tbody'))
307 319
 									})
308 320
 			
309 321