123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <%var cssParam = {%>
- <%};%>
- <%var jsParam = {%>
- <script type="text/javascript">
- function openWindowOpt(optType, optId){
- var url = "${contextPath}/VideoConference/";
- var param = "scrollbars=yes,status=no,resizable=no,location=no,toolbar=no,top=0,left=0,width=1024,height=768";
- if(optType == 1){
- url = url + "beginConference?id=" + optId;
- }else if(optType == 2){
- url = url + "beginConference?id=" + optId;
- }else{
- url = url + "joinConference?opttype=other&id=" + optId;
- }
- window.open(url, "_blank", param);
- }
- function freeOpenWindow(url, optParam){
- var param = "scrollbars=yes,status=no,resizable=no,location=no,toolbar=no,top=0,left=0,width=1024,height=768";
- if(optParam != ""){
- param = optParam;
- }
- window.open(url, "_blank", param);
- }
-
- function openDialog(url,msg){
- url = "${contextPath}/VideoConference/" + url;
- bootbox.dialog({
- title: "系统提示",
- message: msg,
- locale:"zh_CN",
- buttons: {
- cancel: {label: "取消",className: "btn-cancel",callback: function() {}},
- ok: {label: "确定",className: "btn-success",
- callback: function() {
- window.location.href = url;
- }
- }
- }
- });
- }
-
- function openDialogToAjax(url,msg){
- url = "${contextPath}/VideoConference/" + url;
- bootbox.dialog({
- title: "系统提示",
- message: msg,
- locale:"zh_CN",
- buttons: {
- cancel: {label: "取消",className: "btn-cancel",callback: function() {}},
- ok: {label: "确定",className: "btn-success",
- callback: function() {
- // Ajax操作
- }
- }
- }
- });
- }
-
- function setUser(name, vcUserId){
- $("#name", window.opener.document).val(name);
- $("#vcUserid", window.opener.document).val(vcUserId);
- window.close();
- }
- <%if(""!=msg!""){%>
- alert('${msg}');
- <%}%>
- </script>
- <%};%>
- <%layout("/VideoConference/commonPage/_layout_2.html", {nav: "视频会议中心用户列表",meunsel:"orderListPage",jsParam:jsParam,cssParam:cssParam}) {%>
- <div class="row">
- <div class="table-responsive">
- <table id="sample-table-1" class="table table-striped table-bordered table-hover">
- <thead>
- <tr>
- <th>序号</th>
- <th>姓名</th>
- <th>身份证号码</th>
- <th>联系电话</th>
- <th>操作</th>
- </tr>
- </thead>
- <tbody>
- <%for(tempDate in userList!){%>
- <tr>
- <td>${tempDateLP.index}</td>
- <td>${tempDate.name}</td>
- <td>${tempDate.cardnumber}</td>
- <td>${tempDate.phone}</td>
- <td>
- <%if(optCode=="sel"){%>
- <a class="btn btn-xs btn-info" href="javascript:setUser('${tempDate.name}', ${tempDate.id})" data-toggle="tooltip" data-placement="auto" title="选择用户">
- <i class="icon-user bigger-120"></i>
- </a>
- <%}%>
- </td>
- </tr>
- <%}elsefor{%>
- <tr>
- <td colspan="10">没有记录!</td>
- </tr>
- <%}%>
- </tbody>
- </table>
- </div>
- <!-- /.table-responsive -->
- </div>
- <%}%>
|