|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+<!DOCTYPE html>
|
|
|
2
|
+<html>
|
|
|
3
|
+
|
|
|
4
|
+<head>
|
|
|
5
|
+ <meta charset="UTF-8" />
|
|
|
6
|
+ <script src="../Script/Common/huayi.load.js"></script>
|
|
|
7
|
+ <script src="../Script/Common/huayi.config.js"></script>
|
|
|
8
|
+ <link href="../css/layer/need/layer.css" rel="stylesheet" />
|
|
|
9
|
+ <link href="../css/init.css" rel="stylesheet" />
|
|
|
10
|
+ <title>录音</title>
|
|
|
11
|
+</head>
|
|
|
12
|
+
|
|
|
13
|
+<body>
|
|
|
14
|
+ <div class="Common">
|
|
|
15
|
+ <table>
|
|
|
16
|
+ <tr>
|
|
|
17
|
+ <th style="width: 85px;text-align: left;" class="titleText">密码:</th>
|
|
|
18
|
+ <td>
|
|
|
19
|
+ <span class="phoneNumber" style="display: none;"></span>
|
|
|
20
|
+ <div style="display: inline-block;" class="passwordSearch">
|
|
|
21
|
+ <input type="number" id="password" value="" autocomplete="off" />
|
|
|
22
|
+ <button onclick="getPhone()">查询</button>
|
|
|
23
|
+ </div>
|
|
|
24
|
+ </td>
|
|
|
25
|
+ </tr>
|
|
|
26
|
+ </table>
|
|
|
27
|
+ </div>
|
|
|
28
|
+ <script src="../css/laydate/laydate.js"></script>
|
|
|
29
|
+ <script src="../js/adjustHeight.js"></script>
|
|
|
30
|
+ <script>
|
|
|
31
|
+ var phoneNumber = decodeURIComponent(helper.request.queryString("phoneNumber"));
|
|
|
32
|
+ var callid = helper.request.queryString("callid")
|
|
|
33
|
+
|
|
|
34
|
+ function getPhone() {
|
|
|
35
|
+ if (!$("#password").val()) {
|
|
|
36
|
+ layer.msg('请输入密码')
|
|
|
37
|
+ return
|
|
|
38
|
+ }
|
|
|
39
|
+ $.ajax({
|
|
|
40
|
+ type: "get",
|
|
|
41
|
+ url: huayi.config.callcenter_url + "Callrecords/GetCallFilePath", //获取数据的Servlet地址,
|
|
|
42
|
+ async: true,
|
|
|
43
|
+ dataType: "json",
|
|
|
44
|
+ data: {
|
|
|
45
|
+ CallRecordsId: callid,
|
|
|
46
|
+ password: $("#password").val(),
|
|
|
47
|
+ token: $.cookie("token")
|
|
|
48
|
+ },
|
|
|
49
|
+ success: function(res) {
|
|
|
50
|
+ if (res.state.toLowerCase() === "success") {
|
|
|
51
|
+// $(".passwordSearch").hide()
|
|
|
52
|
+// $(".phoneNumber").show()
|
|
|
53
|
+ console.log(res.data)
|
|
|
54
|
+
|
|
|
55
|
+ helper.luyin.view(null, res.data)
|
|
|
56
|
+ }
|
|
|
57
|
+ }
|
|
|
58
|
+ });
|
|
|
59
|
+ }
|
|
|
60
|
+ </script>
|
|
|
61
|
+</body>
|
|
|
62
|
+
|
|
|
63
|
+</html>
|