|
|
@@ -327,6 +327,40 @@
|
|
327
|
327
|
</div>
|
|
328
|
328
|
</td>
|
|
329
|
329
|
</tr>
|
|
|
330
|
+ <tr>
|
|
|
331
|
+ <th>信息审核:</th>
|
|
|
332
|
+ <td>
|
|
|
333
|
+ <label style="font-weight: normal;">
|
|
|
334
|
+ <input type="radio" value="0" name="isAudit" checked="true" class="no-award" />无效
|
|
|
335
|
+ </label>
|
|
|
336
|
+
|
|
|
337
|
+ <label style="font-weight: normal;">
|
|
|
338
|
+ <input type="radio" value="1" name="isAudit" class="award" />有效
|
|
|
339
|
+
|
|
|
340
|
+ </label>
|
|
|
341
|
+ </td>
|
|
|
342
|
+ </tr>
|
|
|
343
|
+ <tr>
|
|
|
344
|
+ <th>信息分类:</th>
|
|
|
345
|
+ <td colspan="3">
|
|
|
346
|
+ <div class="Message_box">
|
|
|
347
|
+
|
|
|
348
|
+ </div>
|
|
|
349
|
+ </td>
|
|
|
350
|
+ </tr>
|
|
|
351
|
+ <tr>
|
|
|
352
|
+ <th>交办单位:</th>
|
|
|
353
|
+ <td colspan="3">
|
|
|
354
|
+ <div class="inpBox">
|
|
|
355
|
+ <input type="text" class="inps select" readonly="readonly" />
|
|
|
356
|
+ <input type="hidden" class="inps " id="ss_gdlx" />
|
|
|
357
|
+ <i class="xl xl_two"></i>
|
|
|
358
|
+ <div class="xl_common">
|
|
|
359
|
+ <ul class="xl_box" id="xl_box"></ul>
|
|
|
360
|
+ </div>
|
|
|
361
|
+ </div>
|
|
|
362
|
+ </td>
|
|
|
363
|
+ </tr>
|
|
330
|
364
|
</table>
|
|
331
|
365
|
</div>
|
|
332
|
366
|
<div class="clearfix wh_btn">
|
|
|
@@ -340,6 +374,31 @@
|
|
340
|
374
|
var zpid;
|
|
341
|
375
|
var stype = 1;
|
|
342
|
376
|
$(document).ready(function () {
|
|
|
377
|
+ //交办单位
|
|
|
378
|
+ $.getJSON(huayi.config.callcenter_url + 'Dictionary/GetDicValueListByFlag?flag=JBDW',
|
|
|
379
|
+ { "token": $.cookie("token") }, function (result) {
|
|
|
380
|
+ if (result.state.toLowerCase() == "success") {
|
|
|
381
|
+ var html = ""
|
|
|
382
|
+ for (var i = 0; i < result.data.length; i++) {
|
|
|
383
|
+ html += ' <li itemid="' + result.data[i].F_DictionaryValueId + '">' + result.data[i].F_Name + '</li>'
|
|
|
384
|
+ }
|
|
|
385
|
+ $(html).appendTo("#xl_box");
|
|
|
386
|
+ }
|
|
|
387
|
+ })
|
|
|
388
|
+ //信息分类
|
|
|
389
|
+ $.getJSON(huayi.config.callcenter_url + 'Dictionary/GetDicValueListByFlag?flag=XXFL',
|
|
|
390
|
+ { "token": $.cookie("token") }, function (result) {
|
|
|
391
|
+ console.log(result.data);
|
|
|
392
|
+ if (result.state.toLowerCase() == "success") {
|
|
|
393
|
+ var html = ""
|
|
|
394
|
+ for (var i = 0; i < result.data.length; i++) {
|
|
|
395
|
+ html += '<label style="font-weight: normal;">' +
|
|
|
396
|
+ '<input type="radio" value="' + result.data[i].F_DictionaryValueId + '" name="ltypes" checked="checked" /> ' + result.data[i].F_Name + '' +
|
|
|
397
|
+ '</label>'
|
|
|
398
|
+ }
|
|
|
399
|
+ $(html).appendTo(".Message_box");
|
|
|
400
|
+ }
|
|
|
401
|
+ })
|
|
343
|
402
|
//处理工单
|
|
344
|
403
|
$("#clgd").click(function () {
|
|
345
|
404
|
var val = $("input[name='ltype']:checked").val();
|
|
|
@@ -363,7 +422,18 @@
|
|
363
|
422
|
});
|
|
364
|
423
|
return;
|
|
365
|
424
|
}
|
|
366
|
|
- $.post(huayi.config.callcenter_url + 'WorkOrder/DealWorkOrder', { orderid: zpid, isend: val, clbm: $("#clbm").val(), clid: $("#clid").val(), cont: $("#cont").val(), "token": $.cookie("token") }, function (result) {
|
|
|
425
|
+ $.post(huayi.config.callcenter_url + 'WorkOrder/DealWorkOrder',
|
|
|
426
|
+ {
|
|
|
427
|
+ orderid: zpid,
|
|
|
428
|
+ isend: val,
|
|
|
429
|
+ clbm: $("#clbm").val(),
|
|
|
430
|
+ clid: $("#clid").val(),
|
|
|
431
|
+ cont: $("#cont").val(),
|
|
|
432
|
+ isaudit: $("input[name='isAudit']:checked").val(),
|
|
|
433
|
+ infotypeid: $("input[name='ltype']:checked").val(),
|
|
|
434
|
+ unitid: $(".xl_box").val(),
|
|
|
435
|
+ "token": $.cookie("token")
|
|
|
436
|
+ }, function (result) {
|
|
367
|
437
|
result = $.parseJSON(result);
|
|
368
|
438
|
if (result.state.toLowerCase() == "success") {
|
|
369
|
439
|
|