地铁二期项目正式开始

WorkFlowList.cshtml 4.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>通话记录</title>
  6. <link href="/Content/layui/css/layui.css" rel="stylesheet" />
  7. <link href="/Content/css/public.css" rel="stylesheet" />
  8. <link href="/Content/layui/css/modules/layui-icon-extend/iconfont.css" type="text/css" rel=" stylesheet" />
  9. <link href="/Content/css/font-awesome/css/font-awesome.min.css" type="text/css" rel=" stylesheet" />
  10. <script src="/Content/js/jquery-1.8.3.min.js"></script>
  11. <script type="text/javascript" src="/Content/layui/layui.js"></script>
  12. <link href="/Content/css/callrecord/iconfont.css" rel="stylesheet" />
  13. <link href="/Content/css/callrecord/callrecord.css" rel="stylesheet" />
  14. </head>
  15. <body class="childrenBody">
  16. <blockquote class="layui-elem-quote layui-text" style="font-size: larger; display: none;">
  17. 通话记录
  18. </blockquote>
  19. <div class="layui-fluid">
  20. <div class="layui-row layui-col-space15">
  21. <div class="layui-card">
  22. <div class="layui-card-body">
  23. <div class="layui-row layui-col-space15 searchfilter">
  24. <div class="layui-col-md4">
  25. <label class="layui-form-label">
  26. 电话号码:
  27. </label>
  28. <div class="layui-input-block">
  29. <input type="text" placeholder="" autocomplete="off" class="layui-input" id="callnumber">
  30. </div>
  31. </div>
  32. <div class="layui-col-md4">
  33. <label class="layui-form-label">
  34. 坐席:
  35. </label>
  36. <div class="layui-input-block">
  37. <input type="text" placeholder="" autocomplete="off" class="layui-input" id="usercode">
  38. </div>
  39. </div>
  40. <div class="layui-col-md4">
  41. <button class="layui-btn layui-btn-normal layui-btn-normal" data-type="reload">
  42. <i class="layui-icon">&#xe615; 查 询</i>
  43. </button>
  44. </div>
  45. </div>
  46. </div>
  47. </div>
  48. <div class="layui-card layui-form">
  49. <div class="layui-card-body layui-row layui-col-space10">
  50. <table class="layui-table" lay-data="{height: 'full-120' ,page: true,limit:20, url:'/CallRecord/CallRecordData', page:true, id:'recordtable'}" lay-size="sm" lay-filter="demo">
  51. <thead>
  52. <tr>
  53. <th lay-data="{type:'checkbox', fixed: 'left'}"></th>
  54. <th lay-data="{field:'CallNumber', width:120}">电话号码</th>
  55. <th lay-data="{field:'CallId', width:80}">录音</th>
  56. <th lay-data="{field:'CallType', align: 'center',width:100, templet: '#callType'}">呼叫方向</th>
  57. <th lay-data="{field:'CallState', width:100, templet: '#callStatus'}">呼叫状态</th>
  58. <th lay-data="{field:'UserCode', align: 'center',width:120}">坐席工号</th>
  59. <th lay-data="{field:'UserName', width:120}">坐席姓名</th>
  60. <th lay-data="{field:'BeginTime',align: 'center',width:160,templet:'<div>{{ layui.laytpl.toDateString(d.BeginTime) }}</div>'}">开始时间</th>
  61. <th lay-data="{field:'TalkStartTime',align: 'center', width:160,templet:'<div>{{ layui.laytpl.toDateString(d.TalkStartTime) }}</div>'}">通话开始时间</th>
  62. <th lay-data="{field:'TalkEndTime',align: 'center', width:160,templet:'<div>{{ layui.laytpl.toDateString(d.TalkEndTime) }}</div>'}">通话结束时间</th>
  63. <th lay-data="{field:'LongTime', align: 'right', width:120}">通话时长(S)</th>
  64. <th lay-data="{field:'ywtype', width:100}">导航按键</th>
  65. </tr>
  66. </thead>
  67. </table>
  68. </div>
  69. </div>
  70. </div>
  71. </div>
  72. </body>
  73. <script src="/Content/js/CallRecord/callRecord.js" charset="utf-8"></script>
  74. <script src="/Content/layui/formatdate.js"></script>
  75. <script type="text/html" id="callType">
  76. {{# if(d.CallType === 1){ }}
  77. 呼出
  78. {{# } else { }}
  79. 呼入
  80. {{# } }}
  81. </script>
  82. <script type="text/html" id="callStatus">
  83. {{# if(d.CallState === 1){ }}
  84. 接通
  85. {{# } else { }}
  86. 未接通
  87. {{# } }}
  88. </script>
  89. <!--下拉输入选择框工具栏-->
  90. </html>