zhuguifei
2025-04-28 442928123f63ee497d766f9a7a14f0a6ee067e25
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
<div class="modal" ng-controller="KisBpmChoseCandidateGroupsCtrl">
    <div class="modal-dialog">
        <div class="modal-content">
            <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal" aria-hidden="true" ng-click="close()">&times;
                </button>
                <h2 translate>PROPERTY.ASSIGNMENT.TITLE</h2>
            </div>
            <div class="modal-body" style="min-height: 350px;overflow: auto;">
                <div class="row row-no-gutter" style="padding: 0 20px">
                    <table class="table table-bordered table-condensed table-hover table-striped">
                        <thead>
                        <tr class="active">
                            <th style="text-align: center">序号</th>
                            <th style="text-align: center">组名</th>
                            <th style="text-align: center">描述</th>
                        </tr>
                        </thead>
                        <tbody>
                        <tr style="text-align: center" ng-repeat="candidateGroup in candidateGroups"
                            ng-class="candidateGroup.selected==true?'info':''" ng-click="rowClick(candidateGroup.id)">
                            <td>{{$index+1}}</td>
                            <td>{{candidateGroup.name}}</td>
                            <td>{{candidateGroup.description}}</td>
                        </tr>
                        </tbody>
                    </table>
                </div>
            </div>
            <div class="modal-footer">
               <!-- <button type="button" class="btn btn-default"ng-click="selectAll()">全选</button> -->
                <button ng-click="close()" class="btn btn-primary" translate>ACTION.CANCEL</button>
                <button ng-click="save()" class="btn btn-primary" translate>ACTION.SAVE</button>
            </div>
        </div>
    </div>
</div>