| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8" />
- <script src="../Script/Common/huayi.load.js"></script>
- <script src="../Script/Common/huayi.config.js"></script>
- <link href="../css/layer/need/layer.css" rel="stylesheet" />
- <link href="../css/init.css" rel="stylesheet" />
- <title>录音</title>
- </head>
- <body>
- <div class="Common">
- <table>
- <tr>
- <th style="width: 85px;text-align: left;" class="titleText">密码:</th>
- <td>
- <span class="phoneNumber" style="display: none;"></span>
- <div style="display: inline-block;" class="passwordSearch">
- <input type="number" id="password" value="" autocomplete="off" />
- <button onclick="getPhone()">查询</button>
- </div>
- </td>
- </tr>
- </table>
- </div>
- <script src="../css/laydate/laydate.js"></script>
- <script src="../js/adjustHeight.js"></script>
- <script>
- var phoneNumber = decodeURIComponent(helper.request.queryString("phoneNumber"));
- var callid = helper.request.queryString("callid")
-
- function getPhone() {
- if (!$("#password").val()) {
- layer.msg('请输入密码')
- return
- }
- $.ajax({
- type: "get",
- url: huayi.config.callcenter_url + "Callrecords/GetCallFilePath", //获取数据的Servlet地址,
- async: true,
- dataType: "json",
- data: {
- CallRecordsId: callid,
- password: $("#password").val(),
- token: $.cookie("token")
- },
- success: function(res) {
- if (res.state.toLowerCase() === "success") {
- // $(".passwordSearch").hide()
- // $(".phoneNumber").show()
- console.log(res.data)
-
- helper.luyin.view(null, res.data)
- }
- }
- });
- }
- </script>
- </body>
- </html>
|