liujie
2025-08-11 98346956b542835eb8d59e94bfbf5d47f799f2dd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
@layout("/common/_container.html"){
<div class="row">
  <div class="col-sm-12">
    <div class="ibox float-e-margins">
      <div class="ibox-title">
        <h5>比赛详情</h5>
      </div>
      <div class="ibox-content">
        <div class="row row-lg">
          <div class="col-sm-12">
            <input type="hidden" id="id" value="${item.id}"></input>
            <div class="row">
              <div class="form-group">
                <label class="col-sm-3 control-label">*比赛名称:${item.name}</label>
              </div>
 
              <div class="form-group">
                <label class="col-sm-3 control-label">*参赛人:</label>
                <div class="col-sm-12">
                  <label class="col-sm-3 control-label">红方: </label>
                  <button onclick="userList()"
                          style="height: 22px;width: 82px;background-color: #4a8ff1;color: white;z-index: 15;position:relative;border: none;margin-top: 1%">
                    选择人员
                  </button>
                </div>
                <div class="col-sm-12" style="margin-left: -57px;margin-top: 20px">
                  <table class="table table-bordered" style="width: 70%;margin-left: 228px;" id="userTableOne">
                    <thead>
                    <tr>
                      <td>id</td>
                      <td>人员</td>
                      <td>联系电话</td>
                      <td>性别</td>
                      <td>年龄</td>
                      <td>操作</td>
                    </tr>
                    </thead>
                    <tbody id="coun"></tbody>
                  </table>
                </div>
              </div>
 
            </div>
 
 
 
 
 
          </div>
        </div>
      </div>
    </div>
  </div>
</div>
<script src="${ctxPath}/modular/system/worldCupRecords/worldCupGameStatisticsListInfo.js"></script>
<script>
  laydate.render({
    elem: '#startTime'
  });
  laydate.render({
    elem: '#endTime'
  });
 
 
  function userList() {
    var index = layer.open({
      type: 2,
      title: '人员列表',
      area: ['100%', '100%'], //宽高
      fix: false, //不固定
      maxmin: true,
      content: Feng.ctxPath + '/worldCupRecords/userList?id='+$("#id").val()
    });
    this.layerIndex = index;
  }
</script>
@}