|
|
@@ -116,6 +116,10 @@
|
|
116
|
116
|
.jbDiv tr {
|
|
117
|
117
|
height: 50px;
|
|
118
|
118
|
}
|
|
|
119
|
+
|
|
|
120
|
+ .phoneTitle {
|
|
|
121
|
+ cursor: pointer;
|
|
|
122
|
+ }
|
|
119
|
123
|
</style>
|
|
120
|
124
|
</head>
|
|
121
|
125
|
|
|
|
@@ -159,8 +163,10 @@
|
|
159
|
163
|
<td><span class="F_CusName"></span></td>
|
|
160
|
164
|
<th>来源:</th>
|
|
161
|
165
|
<td><span class="LY"></span></td>
|
|
162
|
|
- <th>来电号码:</th>
|
|
163
|
|
- <td><span class="F_ConPhone"></span></td>
|
|
|
166
|
+ <th class="phoneTitle">来电号码:</th>
|
|
|
167
|
+ <td><span></span></td>
|
|
|
168
|
+ <!-- <td class="phoneIcon"><img src="../img/Phones.png" alt="查看来电号码"></td> -->
|
|
|
169
|
+ <!-- <td><span class="F_ConPhone"></span></td> -->
|
|
164
|
170
|
<th></th>
|
|
165
|
171
|
<td><span></span></td>
|
|
166
|
172
|
<!-- <th>联系号码:</th>
|
|
|
@@ -324,9 +330,12 @@
|
|
324
|
330
|
<input type="button" value="转公开" class="release mediaTransfer" />
|
|
325
|
331
|
<input type="button" class="change release authority" value="修改" />
|
|
326
|
332
|
<input type="button" class="jbDiv pdBtn release authority" value="派单" />
|
|
327
|
|
- <input type="button" class="return release authority" style="display: none;" value="退回申请" />
|
|
328
|
|
- <input type="button" class="applicationDelay release authority" style="display: none;" value="申请延时" />
|
|
329
|
|
- <input type="button" class="handle release authority" style="display: none;" value="办理" />
|
|
|
333
|
+ <input type="button" class="return release authority" style="display: none;"
|
|
|
334
|
+ value="退回申请" />
|
|
|
335
|
+ <input type="button" class="applicationDelay release authority" style="display: none;"
|
|
|
336
|
+ value="申请延时" />
|
|
|
337
|
+ <input type="button" class="handle release authority" style="display: none;"
|
|
|
338
|
+ value="办理" />
|
|
330
|
339
|
<input type="button" value="打印预览" class="print" />
|
|
331
|
340
|
<input type="button" value="关闭" class="closexq" />
|
|
332
|
341
|
</div>
|
|
|
@@ -346,8 +355,8 @@
|
|
346
|
355
|
<td colspan="7">
|
|
347
|
356
|
<div style="width:710px;border: 1px solid #000000;">
|
|
348
|
357
|
<div id="myMap" style="width:100%;height:400px;"></div>
|
|
349
|
|
- <input type="hidden" class="store_Lng" value="114.398996"/>
|
|
350
|
|
- <input type="hidden" class="store_Lat" value="36.104678" />
|
|
|
358
|
+ <input type="hidden" class="store_Lng" value="114.398996" />
|
|
|
359
|
+ <input type="hidden" class="store_Lat" value="36.104678" />
|
|
351
|
360
|
</div>
|
|
352
|
361
|
</td>
|
|
353
|
362
|
</tr>
|
|
|
@@ -652,7 +661,8 @@
|
|
652
|
661
|
var wid = helper.request.queryString("wid");
|
|
653
|
662
|
var check = helper.request.queryString("check");
|
|
654
|
663
|
var workOrderType = helper.request.queryString("workOrderType");
|
|
655
|
|
- var isProtect = ""
|
|
|
664
|
+ var isProtect = "";
|
|
|
665
|
+ var phoneNumber = "";
|
|
656
|
666
|
$(document).ready(function () {
|
|
657
|
667
|
jbSelect($("#jbSelect"));
|
|
658
|
668
|
xbSelect($("#xbSelect"));
|
|
|
@@ -746,6 +756,16 @@
|
|
746
|
756
|
$(".Result").text(Data[0].F_Result);
|
|
747
|
757
|
$(".AreaName").text(Data[0].AreaName);
|
|
748
|
758
|
isProtect = result.data.data[0].F_IsProtect
|
|
|
759
|
+ if (Data[0].F_CusPhone) {
|
|
|
760
|
+ var roleCode = $.cookie("code")
|
|
|
761
|
+ if (roleCode === "GLY" || roleCode === "ZXHWY" || roleCode ===
|
|
|
762
|
+ "ZXLD") {
|
|
|
763
|
+ $(".phoneTitle").show()
|
|
|
764
|
+ phoneNumber = Data[0].F_CusPhone
|
|
|
765
|
+ }
|
|
|
766
|
+ } else {
|
|
|
767
|
+ $(".phoneTitle").hide()
|
|
|
768
|
+ }
|
|
749
|
769
|
//附件
|
|
750
|
770
|
var HTML;
|
|
751
|
771
|
$(Data[0].File).each(function (i, v) {
|
|
|
@@ -1630,7 +1650,8 @@
|
|
1630
|
1650
|
$(".handle").click(function () {
|
|
1631
|
1651
|
layer.open({
|
|
1632
|
1652
|
type: 2,
|
|
1633
|
|
- content: "../CommonHtml/banli.html?wid=" + wid + "&isProtect=" + isProtect, //iframe的url,no代表不显示滚动条
|
|
|
1653
|
+ content: "../CommonHtml/banli.html?wid=" + wid + "&isProtect=" +
|
|
|
1654
|
+ isProtect, //iframe的url,no代表不显示滚动条
|
|
1634
|
1655
|
title: "办理工单",
|
|
1635
|
1656
|
area: ["60%", "80%"], //宽高
|
|
1636
|
1657
|
});
|
|
|
@@ -1686,6 +1707,15 @@
|
|
1686
|
1707
|
}
|
|
1687
|
1708
|
})
|
|
1688
|
1709
|
}
|
|
|
1710
|
+
|
|
|
1711
|
+ $(".phoneTitle").click(function () {
|
|
|
1712
|
+ layer.open({
|
|
|
1713
|
+ type: 2,
|
|
|
1714
|
+ content: "./callerNumber.html?phoneNumber=" + phoneNumber, //iframe的url,no代表不显示滚动条
|
|
|
1715
|
+ title: "来电号码",
|
|
|
1716
|
+ area: ["40%", "40%"], //宽高
|
|
|
1717
|
+ });
|
|
|
1718
|
+ })
|
|
1689
|
1719
|
</script>
|
|
1690
|
1720
|
</body>
|
|
1691
|
1721
|
|