Ver Código Fonte

知识库代码整理,以及之前代码备份

zhengbingbing 6 anos atrás
pai
commit
5f1edff6d1

+ 278 - 0
WebUI/CallCenterWeb.UI/zhiShiKu/newRepositoryAdd_20191225.html

@@ -0,0 +1,278 @@
1
+<!DOCTYPE html>
2
+<html>
3
+	<head>
4
+		<meta charset="UTF-8">
5
+		<script src="../Script/Common/huayi.load.js"></script>
6
+		<script src="../Script/Common/huayi.config.js"></script>
7
+		<link rel="stylesheet" href="../css/init.css" />
8
+		<title>新版知识库添加</title>
9
+		<style type="text/css">
10
+			ul,li{
11
+				padding: 0;
12
+				margin: 0;
13
+				list-style: none;
14
+			}
15
+			.tab_list{
16
+				border-bottom: 1px solid #d5d5d5;
17
+			}
18
+			.tab_list li{
19
+				padding: 10px 15px;
20
+				float: left;
21
+				color: #333333;
22
+				font-size: 14px;
23
+				position: relative;
24
+			}
25
+			.tab_list li.active{
26
+				color: #19aad0;
27
+			}
28
+			.tab_list li.active:after{
29
+				content: "";
30
+				width: 100%;
31
+				height: 2px;
32
+				background: #19aad0;
33
+				position: absolute;
34
+				bottom: -1px;
35
+				left: 0;
36
+			}
37
+			.tab_content{
38
+				font-size: 14px;
39
+				color: #4c4c4c;
40
+				padding: 15px 0;
41
+				/*text-indent: 28px;*/
42
+			}
43
+			.tab_content>div{
44
+				display: none;
45
+			}
46
+			.table tr td input[type="text"]{
47
+			    width: 100%;
48
+			    height: 34px;
49
+			    background: #f3f3f4;
50
+			    outline: none;
51
+		        border: 1px solid #e7e7e7;
52
+		        padding-left: 10px;
53
+			}
54
+			.radio-inline input[type=radio]{
55
+				margin-top: 2px;
56
+			}
57
+			.table tr td textarea{
58
+			    width: 100%;
59
+			    height: 100%;
60
+			    background: #f3f3f4;
61
+			    border: 1px solid #e7e7e7;
62
+			    resize: none;
63
+			}
64
+			#scwj{
65
+				    background-color: #FFF;
66
+			    background-image: none;
67
+			    border: 1px solid #ccc;
68
+			    border-radius: 1px;
69
+			    color: inherit;
70
+			    padding: 6px 12px!important;
71
+			}
72
+			.files{
73
+				    padding: 5px!important;
74
+			}
75
+			.time-box{
76
+			    position: relative;
77
+			    width: 197px!important;
78
+			    height: 34px;
79
+			    margin: 0;
80
+			}
81
+			.tub + input {
82
+			    padding-right: 30px;
83
+			    border: 1px solid #e5e6e7!important;
84
+			}
85
+			i.tub {
86
+			    position: absolute;
87
+			    right: 8px;
88
+			    top: 8px;
89
+			    font-size: 18px;
90
+			    color: #00a0ca;
91
+			}
92
+			
93
+		</style>
94
+	</head>
95
+		<body class="gray-bg">
96
+			<div class="container-fluid wrapper-content animated fadeInRight">
97
+				<table class="table table-bordered table-condensed">
98
+					<tr>
99
+						<td width="100">关键词</td>
100
+						<td colspan="3"><input type="text" id="key"/></td>
101
+					</tr>
102
+					<tr>
103
+						<td width="100">事件名称</td>
104
+						<td colspan="3"> <input type="text" id="title" /></td>
105
+					</tr>
106
+					<tr>
107
+						<td width="100">主办单位</td>
108
+						<td colspan="3"> <input type="text" id="maindept" /></td>
109
+					</tr>
110
+					<tr >
111
+						<td rowspan="2" width="100">公开电话</td>
112
+						<td> <input type="text" id="publicphone1" /></td>
113
+						<td rowspan="2" width="100">内部电话</td>
114
+						<td> <input type="text" id="privatephone1" /></td>
115
+						
116
+					</tr>
117
+					<tr>
118
+						<td>  <input type="text" id="publicphone2" /></td>
119
+						<td> <input type="text" id="privatephone2" /></td>
120
+					</tr>
121
+					<tr>
122
+						<td width="100" height="100"> 咨询要点</td>
123
+						<td colspan="3" height="100"> <textarea name="" rows="" cols="" id="points"></textarea></td>
124
+					</tr>
125
+					<tr>
126
+						<td width="100" height="100"> 标准话术</td>
127
+						<td colspan="3" height="100"> <textarea name="" rows="" cols="" id="baseanswer"></textarea></td>
128
+					</tr>
129
+					<tr>
130
+						<td width="100" height="100"> 结案参考</td>
131
+						<td colspan="3" height="100"> <textarea name="" rows="" cols="" id="endanswer"></textarea></td>
132
+					</tr>
133
+					<tr>
134
+						<td width="100"> 办理方式</td>
135
+						<td><input type="text" id="dealtype"/></td>
136
+						<td width="100"> 法定办结时限</td>
137
+						<td><input type="text" id="legallimittime" /></td>
138
+					</tr>
139
+					<tr>
140
+						<!--<td width="100"> 是否收费</td>
141
+						<td> 
142
+						<label class="radio-inline">
143
+						  <input type="radio" name="ispay" id="ispay1" value="1"> 是
144
+						</label>
145
+						<label class="radio-inline">
146
+						  <input type="radio" name="ispay" checked="checked" id="ispay2" value="0"> 否
147
+						</label>
148
+						</td>-->
149
+						<td width="100"> 承诺办结时限</td>
150
+						<td><input type="text" id="promiselimittime" /></td>
151
+					<!--</tr>
152
+					<tr>
153
+						<td width="100"> 是否审核</td>
154
+						<td> 
155
+							<label class="radio-inline">
156
+							  <input type="radio" name="isAudit" id="isAudit" value="1"> 是
157
+							</label>
158
+							<label class="radio-inline">
159
+							  <input type="radio" name="isAudit" checked="checked" id="isAudit" value="0"> 否
160
+							</label>
161
+						</td>-->
162
+						<!--<td width="100"> 紧急事项</td>
163
+						<td> 
164
+							<label class="radio-inline">
165
+							  <input type="radio" name="isUrgency" id="isUrgency" value="1"> 是
166
+							</label>
167
+							<label class="radio-inline">
168
+							  <input type="radio" name="isUrgency" checked="checked" id="isUrgency" value="0"> 否
169
+							</label>
170
+						</td>-->
171
+					</tr>
172
+					<tr>
173
+						<td width="100"> 收费标准</td>
174
+						<td> <input type="text" id="paymoney" /></td>
175
+						<td width="100"> 办公地点</td>
176
+						<td><textarea name="" rows="" cols="" id="officeaddress"></textarea></td>
177
+					</tr>
178
+					<tr>
179
+						<td width="100"> 办理对象</td>
180
+						<td><input type="text" id="serobject" /></td>
181
+						<td width="100"> 乘车路线</td>
182
+						<td><textarea name="" rows="" cols=""id="busline"></textarea></td>
183
+					</tr>
184
+					<tr>
185
+						<td width="100"> 办公时间</td>
186
+						<td colspan="3">
187
+							<input type="text" id="officetime"/>
188
+							<!--<div class="form-group time-box">
189
+								<i class="tub fa fa-calendar"></i>
190
+								<input class="form-control" type="text"  placeholder="请选择开始时间">
191
+							</div>
192
+						-->
193
+						</td>
194
+					</tr>
195
+					<tr>
196
+						<td width="100" rowspan="2"> 协办单位</td>
197
+						<td rowspan="2"><input type="text" name="otherdept" id="otherdept" style="border: 0;" /></td>
198
+						<td width="100"> 公开电话</td>
199
+						<td><input type="text" id="otherpublicphone" /></td>
200
+					</tr>
201
+					<tr>
202
+						<td width="100"> 内部电话</td>
203
+						<td><input type="text" id="otherprivatephone" /></td>
204
+					</tr>
205
+					<tr>
206
+						<td width="100" height="100"> 备注</td>
207
+						<td colspan="3" height="100">
208
+							<!--<input type="text" />-->
209
+							<textarea name="" rows="" cols="" id="remark"></textarea>
210
+						</td>
211
+					</tr>
212
+					<!--<tr>
213
+						<td width="100" > 修改人</td>
214
+						<td></td>
215
+						<td width="100" > 修改日期</td>
216
+						<td></td>
217
+					</tr>-->
218
+				</table>
219
+			
220
+					<ul class="tab_list clearfix">
221
+						<li class="active">设定依据</li>
222
+						<li>办理流程</li>
223
+						<li>办理材料</li>
224
+						<li>办理结果样本</li>
225
+						<li>收费标准及依据</li>
226
+						<li>附件</li>
227
+					</ul>
228
+					<div class="tab_content">
229
+						<div class="cons" style="display: block;">
230
+							<textarea name="" data-adaptheight id="baseon"  style="width: 100%;height: 300px;"></textarea> 
231
+						</div>
232
+						<div class="cons">
233
+							<textarea name="" data-adaptheight  id="process" style="width: 100%;height: 300px;"></textarea> 
234
+						</div>
235
+						<div class="cons">
236
+								<textarea name="" data-adaptheight id="material" style="width: 100%;height: 300px;"></textarea> 
237
+						</div>
238
+						<div class="cons">
239
+								<textarea name="" data-adaptheight id="template" style="width: 100%;height: 300px;"></textarea> 
240
+						</div>
241
+						<div class="cons">
242
+								<textarea name="" data-adaptheight id="payinfo" style="width: 100%;height: 300px;"></textarea> 
243
+						</div>
244
+						
245
+						<div class="cons">
246
+							<div class="fileBox">
247
+									<!--<span class="files">文件1<i class="fa fa-remove"></i></span>-->
248
+								</div>
249
+								<!--<input type="text" placeholder="输入附件详情" style="width:66%" />-->
250
+								<!--<span class="fjnr"></span>-->
251
+								<input class="input" type="file" name="upFile" id="upFile" multiple="multiple" style="display: none;">
252
+								<input class="input" type="button" value="上传" id="scwj" />
253
+								<input class="input" type="button" value="删除附件" id="scfj" style="display:none;" />
254
+								<input type="hidden" id="file" />
255
+								<span style="color:#FF0000; border: none;">
256
+	                            	(文件格式为png,jpg,mp4,mp3,pdf,doc,docx,xls,xlsx)
257
+	                            </span>
258
+						</div>
259
+					</div>
260
+			
261
+			
262
+			   <p style="text-align: center;">
263
+			   	<button class="btns save">保存</button>
264
+			   	<button class="btns savetj">提交</button>
265
+			   </p>  
266
+			
267
+			
268
+			</div>
269
+			
270
+			
271
+			<script src="../js/kindeditor/kindeditor-all-min.js"></script>
272
+			<script src="../js/kindeditor/lang/zh-CN.js"></script>
273
+			<script src="../js/adjustHeight.js"></script>
274
+			<script src="../js/laydate/laydate.js"></script>
275
+			<script src="js/newRepositoryAdd.js"></script>
276
+			
277
+</body>
278
+</html>

+ 0 - 88
WebUI/CallCenterWeb.UI/zhiShiKu/newRepositoryDetail.html

@@ -120,10 +120,6 @@
120 120
 		<body class="gray-bg">
121 121
 			<div class="container-fluid wrapper-content animated fadeInRight">
122 122
 				<table class="table table-bordered table-condensed">
123
-					<!--<tr>
124
-						<td width="100">关键词</td>
125
-						<td colspan="3"><input type="text" id="key" readonly="readonly"/></td>
126
-					</tr>-->
127 123
 					<tr>
128 124
 						<td width="100">标题</td>
129 125
 						<td colspan="3"> <input type="text" id="title" readonly="readonly" /></td>
@@ -147,51 +143,9 @@
147 143
 						<td>  <input type="text" id="publicphone2" readonly="readonly" /></td>
148 144
 						<td> <input type="text" id="privatephone2" readonly="readonly" /></td>
149 145
 					</tr>
150
-					<!--<tr>
151
-						<td width="100" height="100"> 咨询要点</td>
152
-						<td colspan="3" height="100"> <textarea name="" rows="" cols="" id="points" readonly="readonly"></textarea></td>
153
-					</tr>
154
-					<tr>
155
-						<td width="100" height="100"> 标准话术</td>
156
-						<td colspan="3" height="100"> <textarea name="" rows="" cols="" id="baseanswer"  readonly="readonly"></textarea></td>
157
-					</tr>
158
-					<tr>
159
-						<td width="100" height="100"> 结案参考</td>
160
-						<td colspan="3" height="100"> <textarea name="" rows="" cols="" id="endanswer" readonly="readonly"></textarea></td>
161
-					</tr>-->
162 146
 					<tr>
163 147
 						<td width="100"> 办理方式</td>
164 148
 						<td><input type="text" id="dealtype" readonly="readonly"/></td>
165
-						<!--<td width="100"> 法定办结时限</td>
166
-						<td><input type="text" id="legallimittime" readonly="readonly" /></td>
167
-					</tr>
168
-					<tr>-->
169
-						<!--<td width="100"> 是否收费</td>
170
-						<td> 
171
-						<label class="radio-inline">
172
-						  <input type="radio" name="ispay" disabled="disabled" id="ispay1" value="1" readonly="readonly"> 是
173
-						</label>
174
-						<label class="radio-inline">
175
-						  <input type="radio" name="ispay" disabled="disabled" id="ispay2" value="0" readonly="readonly"> 否
176
-						</label>
177
-						
178
-						
179
-						</td>-->
180
-						<!--<td width="100"> 承诺办结时限</td>
181
-						<td><input type="text" id="promiselimittime" readonly="readonly" /></td>-->
182
-					<!--</tr>
183
-					<tr>-->
184
-						<!--<td width="100"> 紧急事项</td>
185
-						<td> 
186
-							<label class="radio-inline">
187
-							  <input type="radio" name="isUrgency" disabled="disabled" id="isUrgency" value="1"> 是
188
-							</label>
189
-							<label class="radio-inline">
190
-							  <input type="radio" name="isUrgency" disabled="disabled" id="isUrgency" value="0"> 否
191
-							</label>
192
-						</td>
193
-					</tr>
194
-					<tr>-->
195 149
 						<td width="100"> 收费标准</td>
196 150
 						<td> <input type="text" id="paymoney" readonly="readonly" /></td>
197 151
 					</tr>
@@ -201,53 +155,11 @@
201 155
 						<td width="100"> 乘车路线</td>
202 156
 						<td><textarea name="" rows="" cols=""id="busline" readonly="readonly"></textarea></td>
203 157
 					</tr>
204
-					<!--<tr>-->
205
-						<!--<td width="100"> 办公时间</td>
206
-						<td colspan="3">
207
-							<input type="text" id="officetime"  readonly="readonly" />-->
208
-							<!--<div class="form-group time-box">
209
-								<i class="tub fa fa-calendar"></i>
210
-								<input class="form-control" type="text" id="officetime" placeholder="请选择开始时间" readonly="readonly">
211
-							</div>-->
212
-						
213
-						<!--</td>
214
-					</tr>
215
-					<tr>
216
-						<td width="100" rowspan="2"> 协办单位</td>
217
-						<td rowspan="2"><input type="text" name="otherdept" id="otherdept" readonly="readonly" /></td>
218
-						<td width="100"> 公开电话</td>
219
-						<td><input type="text" id="otherpublicphone" readonly="readonly" /></td>
220
-					</tr>
221
-					<tr>
222
-						<td width="100"> 内部电话</td>
223
-						<td><input type="text" id="otherprivatephone" readonly="readonly" /></td>
224
-					</tr>-->
225 158
 					<tr>
226 159
 						<td width="100" height="100"> 备注</td>
227 160
 						<td colspan="3" height="100"><textarea name="" rows="" cols=""  id="remark" readonly="readonly"></textarea> </td>
228 161
 					</tr>
229
-					<!--<tr>
230
-						<td width="100" > 修改人</td>
231
-						<td></td>
232
-						<td width="100" > 修改日期</td>
233
-						<td></td>
234
-					</tr>-->
235 162
 				</table>
236
-				<!--<div style="width: 100%;padding: 10px;" class="shdetail">
237
-					<table class="Table" border="" cellspacing="0" cellpadding="0">
238
-						<theard>
239
-							<tr>
240
-								<td class="text-center" style="min-width:50px;">次数</td>
241
-								<td class="text-center" style="min-width:100px;">审核人</td>
242
-								<td class="text-center" style="min-width:100px;">审核内容</td>
243
-								<td class="text-center" style="min-width:100px;">审核时间</td>
244
-								<td class="text-center authority" style="min-width:100px;">是否通过</td>
245
-							</tr>
246
-						</theard>
247
-						<tbody class="SHXX">
248
-						</tbody>
249
-					</table>
250
-				</div>-->
251 163
 				<ul class="tab_list clearfix">
252 164
 					<li class="active">设定依据</li>
253 165
 					<li>办理流程</li>

+ 435 - 0
WebUI/CallCenterWeb.UI/zhiShiKu/newRepositoryDetail_20191225.html

@@ -0,0 +1,435 @@
1
+<!DOCTYPE html>
2
+<html>
3
+	<head>
4
+		<meta charset="UTF-8">
5
+		<script src="../Script/Common/huayi.load.js"></script>
6
+		<script src="../Script/Common/huayi.config.js"></script>
7
+		<link rel="stylesheet" href="../css/init.css" />
8
+		<title>新版知识库添加</title>
9
+		<style type="text/css">
10
+			ul,li{
11
+				padding: 0;
12
+				margin: 0;
13
+				list-style: none;
14
+			}
15
+			.tab_list{
16
+				border-bottom: 1px solid #d5d5d5;
17
+			}
18
+			.tab_list li{
19
+				padding: 10px 15px;
20
+				float: left;
21
+				color: #333333;
22
+				font-size: 14px;
23
+				position: relative;
24
+			}
25
+			.tab_list li.active{
26
+				color: #19aad0;
27
+			}
28
+			.tab_list li.active:after{
29
+				content: "";
30
+				width: 100%;
31
+				height: 2px;
32
+				background: #19aad0;
33
+				position: absolute;
34
+				bottom: -1px;
35
+				left: 0;
36
+			}
37
+			.tab_content{
38
+				font-size: 14px;
39
+				color: #4c4c4c;
40
+				padding: 15px 0;
41
+				/*text-indent: 28px;*/
42
+			}
43
+			.tab_content>div{
44
+				display: none;
45
+			}
46
+			.table tr td input[type="text"]{
47
+			    width: 100%;
48
+			    height: 30px;
49
+			    background: #f3f3f4;
50
+			    border: 0;
51
+			    outline: none;
52
+			}
53
+			.radio-inline input[type=radio]{
54
+				margin-top: 2px;
55
+			}
56
+			.table tr td textarea{
57
+			    width: 100%;
58
+			    height: 100%;
59
+			    background: #f3f3f4;
60
+			    border: 0;
61
+			    resize: none;
62
+			}
63
+			#scwj{
64
+				    background-color: #FFF;
65
+			    background-image: none;
66
+			    border: 1px solid #ccc;
67
+			    border-radius: 1px;
68
+			    color: inherit;
69
+			    padding: 6px 12px!important;
70
+			}
71
+			.files{
72
+				    padding: 5px!important;
73
+			}
74
+			.time-box{
75
+			    position: relative;
76
+			    width: 197px!important;
77
+			    height: 34px;
78
+			    margin: 0;
79
+			}
80
+			.tub + input {
81
+			    padding-right: 30px;
82
+			    border: 1px solid #e5e6e7!important;
83
+			}
84
+			i.tub {
85
+			    position: absolute;
86
+			    right: 8px;
87
+			    top: 8px;
88
+			    font-size: 18px;
89
+			    color: #00a0ca;
90
+			}
91
+			.tab_content textarea{
92
+				display: block;
93
+			     background: #f3f3f4;
94
+			     width: 100%;
95
+			    height: 298px;
96
+			    box-sizing: border-box;
97
+			    text-indent: 28px;
98
+			}
99
+			.tab_content .cons >div{
100
+			     background: #f3f3f4;
101
+			     width: 100%;
102
+			    min-height: 298px;
103
+			    box-sizing: border-box;
104
+			    text-indent: 28px;
105
+			    word-break:break-all;
106
+			    word-wrap:break-word;
107
+			}
108
+			.tab_content .cons >div img{
109
+				    max-width: 100%;
110
+				    /*width: 95%;
111
+				    margin: 0 auto;*/
112
+			}
113
+			.shdetail table{
114
+				width: 100%;
115
+				line-height: 30px;
116
+				text-align: center;
117
+			}
118
+		</style>
119
+	</head>
120
+		<body class="gray-bg">
121
+			<div class="container-fluid wrapper-content animated fadeInRight">
122
+				<table class="table table-bordered table-condensed">
123
+					<tr>
124
+						<td width="100">关键词</td>
125
+						<td colspan="3"><input type="text" id="key" readonly="readonly"/></td>
126
+					</tr>
127
+					<tr>
128
+						<td width="100">事件名称</td>
129
+						<td colspan="3"> <input type="text" id="title" readonly="readonly" /></td>
130
+					</tr>
131
+					<tr>
132
+						<td width="100">主办单位</td>
133
+						<td colspan="3"> <input type="text" id="maindept" readonly="readonly" /></td>
134
+					</tr>
135
+					<tr >
136
+						<td rowspan="2" width="100">公开电话</td>
137
+						<td> <input type="text" id="publicphone1" readonly="readonly"/></td>
138
+						<td rowspan="2" width="100">内部电话</td>
139
+						<td> <input type="text" id="privatephone1" readonly="readonly" /></td>
140
+						
141
+					</tr>
142
+					<tr>
143
+						<td>  <input type="text" id="publicphone2" readonly="readonly" /></td>
144
+						<td> <input type="text" id="privatephone2" readonly="readonly" /></td>
145
+					</tr>
146
+					<tr>
147
+						<td width="100" height="100"> 咨询要点</td>
148
+						<td colspan="3" height="100"> <textarea name="" rows="" cols="" id="points" readonly="readonly"></textarea></td>
149
+					</tr>
150
+					<tr>
151
+						<td width="100" height="100"> 标准话术</td>
152
+						<td colspan="3" height="100"> <textarea name="" rows="" cols="" id="baseanswer"  readonly="readonly"></textarea></td>
153
+					</tr>
154
+					<tr>
155
+						<td width="100" height="100"> 结案参考</td>
156
+						<td colspan="3" height="100"> <textarea name="" rows="" cols="" id="endanswer" readonly="readonly"></textarea></td>
157
+					</tr>
158
+					<tr>
159
+						<td width="100"> 办理方式</td>
160
+						<td><input type="text" id="dealtype" readonly="readonly"/></td>
161
+						<td width="100"> 法定办结时限</td>
162
+						<td><input type="text" id="legallimittime" readonly="readonly" /></td>
163
+					</tr>
164
+					<tr>
165
+						<!--<td width="100"> 是否收费</td>
166
+						<td> 
167
+						<label class="radio-inline">
168
+						  <input type="radio" name="ispay" disabled="disabled" id="ispay1" value="1" readonly="readonly"> 是
169
+						</label>
170
+						<label class="radio-inline">
171
+						  <input type="radio" name="ispay" disabled="disabled" id="ispay2" value="0" readonly="readonly"> 否
172
+						</label>
173
+						
174
+						
175
+						</td>-->
176
+						<td width="100"> 承诺办结时限</td>
177
+						<td><input type="text" id="promiselimittime" readonly="readonly" /></td>
178
+					<!--</tr>
179
+					<tr>-->
180
+						<td width="100"> 紧急事项</td>
181
+						<td> 
182
+							<label class="radio-inline">
183
+							  <input type="radio" name="isUrgency" disabled="disabled" id="isUrgency" value="1"> 是
184
+							</label>
185
+							<label class="radio-inline">
186
+							  <input type="radio" name="isUrgency" disabled="disabled" id="isUrgency" value="0"> 否
187
+							</label>
188
+						</td>
189
+					</tr>
190
+					<tr>
191
+						<td width="100"> 收费标准</td>
192
+						<td> <input type="text" id="paymoney" readonly="readonly" /></td>
193
+						<td width="100"> 办公地点</td>
194
+						<td><textarea name="" rows="" cols="" id="officeaddress" readonly="readonly"></textarea></td>
195
+					</tr>
196
+					<tr>
197
+						<td width="100"> 办理对象</td>
198
+						<td><input type="text" id="serobject" readonly="readonly" /></td>
199
+						<td width="100"> 乘车路线</td>
200
+						<td><textarea name="" rows="" cols=""id="busline" readonly="readonly"></textarea></td>
201
+					</tr>
202
+					<tr>
203
+						<td width="100"> 办公时间</td>
204
+						<td colspan="3">
205
+							<input type="text" id="officetime"  readonly="readonly" />
206
+							<!--<div class="form-group time-box">
207
+								<i class="tub fa fa-calendar"></i>
208
+								<input class="form-control" type="text" id="officetime" placeholder="请选择开始时间" readonly="readonly">
209
+							</div>-->
210
+						
211
+						</td>
212
+					</tr>
213
+					<tr>
214
+						<td width="100" rowspan="2"> 协办单位</td>
215
+						<td rowspan="2"><input type="text" name="otherdept" id="otherdept" readonly="readonly" /></td>
216
+						<td width="100"> 公开电话</td>
217
+						<td><input type="text" id="otherpublicphone" readonly="readonly" /></td>
218
+					</tr>
219
+					<tr>
220
+						<td width="100"> 内部电话</td>
221
+						<td><input type="text" id="otherprivatephone" readonly="readonly" /></td>
222
+					</tr>
223
+					<tr>
224
+						<td width="100" height="100"> 备注</td>
225
+						<td colspan="3" height="100"><textarea name="" rows="" cols=""  id="remark" readonly="readonly"></textarea> </td>
226
+					</tr>
227
+					<!--<tr>
228
+						<td width="100" > 修改人</td>
229
+						<td></td>
230
+						<td width="100" > 修改日期</td>
231
+						<td></td>
232
+					</tr>-->
233
+				</table>
234
+				<div style="width: 100%;padding: 10px;" class="shdetail">
235
+					<table class="Table" border="" cellspacing="0" cellpadding="0">
236
+						<theard>
237
+							<tr>
238
+								<td class="text-center" style="min-width:50px;">次数</td>
239
+								<td class="text-center" style="min-width:100px;">审核人</td>
240
+								<td class="text-center" style="min-width:100px;">审核内容</td>
241
+								<td class="text-center" style="min-width:100px;">审核时间</td>
242
+								<td class="text-center authority" style="min-width:100px;">是否通过</td>
243
+							</tr>
244
+						</theard>
245
+						<tbody class="SHXX">
246
+						</tbody>
247
+					</table>
248
+				</div>
249
+				<ul class="tab_list clearfix">
250
+					<li class="active">设定依据</li>
251
+					<li>办理流程</li>
252
+					<li>办理材料</li>
253
+					<li>办理结果样本</li>
254
+					<li>收费标准及依据</li>
255
+					<li>附件</li>
256
+				</ul>
257
+				<div class="tab_content">
258
+					<div class="cons" style="display: block;">
259
+						<div  id="baseon" >
260
+							
261
+						</div>
262
+						<!--<textarea name=""  readonly="readonly"></textarea>--> 
263
+					</div>
264
+					<div class="cons">
265
+						<div  id="process" >
266
+							
267
+						</div>
268
+						<!--<textarea name=""   id="process"  readonly="readonly"></textarea>--> 
269
+					</div>
270
+					<div class="cons">
271
+						<div  id="material" >
272
+							
273
+						</div>
274
+							<!--<textarea name=""  id="material"  readonly="readonly"></textarea>--> 
275
+					</div>
276
+					<div class="cons">
277
+						<div  id="template" >
278
+							
279
+						</div>
280
+							<!--<textarea name="" id="template" readonly="readonly"></textarea>--> 
281
+					</div>
282
+					<div class="cons">
283
+						<div  id="payinfo" >
284
+							
285
+						</div>
286
+							<!--<textarea name="" id="payinfo" readonly="readonly"></textarea>--> 
287
+					</div>
288
+					
289
+					<div class="cons">
290
+						<div>
291
+							
292
+						
293
+						<table class="table-bordered table-condensed feilTable" style="width: 100%;">
294
+							<thead>
295
+								<tr>
296
+									<th>文件名称</th>
297
+									<th>添加时间</th>
298
+									<th>文件大小</th>
299
+								</tr>
300
+							</thead>
301
+							<tbody>
302
+								
303
+							</tbody>
304
+							
305
+						</table>
306
+						</div>
307
+					</div>
308
+				</div>
309
+			
310
+			<script src="../js/kindeditor/kindeditor-all-min.js"></script>
311
+			<script src="../js/kindeditor/lang/zh-CN.js"></script>
312
+			<script src="../js/adjustHeight.js"></script>
313
+			<script src="../js/laydate/laydate.js"></script>
314
+			<script>
315
+				
316
+				var ids=helper.request.queryString("ids");
317
+				$(document).ready(function(){
318
+					$('.tab_list li').click(function(){
319
+					   var index=$(this).index();
320
+					   $(this).addClass('active').siblings().removeClass('active');
321
+					   $('.tab_content>div').eq(index).show().siblings().hide();
322
+					   
323
+					})
324
+					//按钮【按钮一】的回调
325
+					$.ajax({
326
+						type: "post",
327
+						url: huayi.config.callcenter_url + "Repository/OptRep",
328
+						async: true,
329
+						dataType: 'json',
330
+						data: {
331
+						    token: $.cookie("token"),
332
+							repid: ids,
333
+							type:0
334
+						},
335
+						success: function(data) {
336
+							if(data.state.toLowerCase() == 'success') {
337
+//								debugger
338
+								
339
+							}
340
+						}
341
+					});
342
+					$.ajax({
343
+						type:"get",
344
+						url:huayi.config.callcenter_url +"Repository/GetRepository",
345
+						async:true,
346
+						dataType:'json',
347
+						data:{
348
+							token: $.cookie("token"),
349
+							id:ids
350
+						},
351
+						success:function(res){
352
+							if(res.state.toLowerCase()=='success'){
353
+								var con=res.data.data;
354
+								$('#key').val(con.F_Key);//关键字
355
+								$('#title').val(con.F_Title);//事件名称
356
+								$('#maindept').val(con.F_MainDept);//主办单位
357
+								$('#publicphone1').val(con.F_PublicPhone1);//公开电话1
358
+								$('#publicphone2').val(con.F_PublicPhone2);//公开电话2
359
+								$('#privatephone1').val(con.F_PrivatePhone1);//内部电话1
360
+								$('#privatephone2').val(con.F_PrivatePhone2);//内部电话2
361
+								$('#points').val(con.F_Points);//询问要点
362
+								$('#baseanswer').val(con.F_BaseAnswer);//标准话术
363
+								$('#endanswer').val(con.F_EndAnswer);//结案参考
364
+								$('#dealtype').val(con.F_DealType);//办理方式
365
+								$('#legallimittime').val(con.F_LegalLimitTime);//法定办结时限
366
+								$('#promiselimittime').val(con.F_PromiseLimitTime);//承诺办结时限
367
+//								$('input[name="ispay"]:checked ').val(F_PayMoney);//是否收费
368
+								$('input[name="ispay"][value="'+con.F_IsPay+'"]').prop("checked","checked");//是否收费
369
+								$('input[name="isUrgency"][value="'+con.F_IsUrgent+'"]').prop("checked","checked"),//是否紧急事项
370
+								$('#paymoney').val(con.F_PayMoney);//收费标准
371
+								$('#officeaddress').val(con.F_OfficeAddress);//办公地点
372
+								$('#serobject').val(con.F_Object);//办理对象
373
+								$('#busline').val(con.F_BusLine);//乘车路线
374
+								$('#officetime').val(con.F_OfficeTime);//办公时间
375
+								$('#otherdept').val(con.F_OtherDept);//	协办单位
376
+								$('#otherpublicphone').val(con.F_OtherPublicPhone);//	协办单位公开电话
377
+								$('#otherprivatephone').val(con.F_OtherPrivatePhone);//协办单位内部电话
378
+								$('#remark').val(con.F_Remark);//备注
379
+								$('#baseon').html(con.F_BaseOn);//设定依据
380
+								$('#process').html(con.F_Process);//办理流程
381
+								$('#material').html(con.F_Material);//办理材料
382
+								$('#template').html(con.F_Template);//办理结果样本
383
+								$('#payinfo').html(con.F_PayInfo);//收费标准及依据
384
+			//					$('#files').val() //收费标准及依据
385
+								console.log()
386
+								$(res.data.file).each(function(k,q){
387
+//										var strs='<span class="files" fiel-num="'+ q.F_FileId +'">'+ q.F_FileName.substring(19) +'</span>'
388
+										var size= (q.F_Size/1024).toFixed(2)
389
+										var strs='<tr>'+
390
+										          '<td><a href="'+ q.F_FileUrl+'" download="test.pdf">'+ q.F_FileName.substring(19) +'</a></td>'+
391
+										          '<td>'+ q.F_AddTime +'</td>'+
392
+										          '<td>'+ size +'kb</td>'+
393
+												'</tr>'
394
+										$(strs).appendTo($('.feilTable tbody'))
395
+									})
396
+								var shaudit;
397
+								$(res.data.shData).each(function(k,q){
398
+									if (q.F_ISPass==2) {
399
+										shaudit="未通过"
400
+									}else if(q.F_ISPass==1){
401
+										shaudit="通过"
402
+									}
403
+									var num=k+1;
404
+									var strs='<tr>'+
405
+									         '<td>'+ num +'</td>'+
406
+									         '<td>'+ q.F_AuditBy +'</td>'+
407
+									         '<td>'+ q.F_AuditRemark +'</td>'+
408
+									         '<td>'+ q.F_CreateOn +'</td>'+
409
+									         '<td>'+ shaudit +'</td>'+
410
+											'</tr>'
411
+									$(strs).appendTo($('.SHXX'))
412
+								})
413
+			
414
+			
415
+			
416
+			
417
+								
418
+							}
419
+							
420
+						}
421
+					});
422
+				
423
+				
424
+				
425
+				
426
+				
427
+				})
428
+
429
+				
430
+				
431
+				
432
+				
433
+			</script>
434
+</body>
435
+</html>