|
@@ -52,7 +52,7 @@
|
52
|
52
|
<div class="row" style="padding-right: 0px !important;">
|
53
|
53
|
<form class="col-xs-12 col-sm-12 form-inline schesearchsize">
|
54
|
54
|
<div class="col-xs-12 col-sm-12">
|
55
|
|
- <span class="panel-title text-dark">日期选择:</span>
|
|
55
|
+ <span class="panel-title text-dark">日期选择:</span>
|
56
|
56
|
<div class="form-group">
|
57
|
57
|
<input type="text" class="form-control" datepicker-popuptime="yyyy-MM-dd" ng-model="parameters.paramDateFrom" max-date="parameters.paramDateTo" is-open="startOpened" hour-time=true ng-init="startOpened = false" show-button-bar="false" ng-click="startOpen($event)"
|
58
|
58
|
/>
|
|
@@ -104,12 +104,24 @@
|
104
|
104
|
</div>
|
105
|
105
|
</div>
|
106
|
106
|
<div class="form-group">
|
107
|
|
- <span class="panel-title text-dark pull-left">计费:</span>
|
|
107
|
+ <span class="panel-title text-dark pull-left">发放金额:</span>
|
108
|
108
|
<div class="pull-right" style="width:158px">
|
109
|
109
|
<input class="form-control" style="border-radius: 4px 0px 0px 4px !important" type="number" min="0" max="1000000000" ng-minlength="1" ng-maxlength="1000" ng-model="allMoney">
|
110
|
110
|
</div>
|
111
|
111
|
</div>
|
112
|
|
-
|
|
112
|
+ <div class="form-group">
|
|
113
|
+ <div class="panel-title text-dark pull-left">排除人员:</div>
|
|
114
|
+ <ui-select class="pull-right" ng-model="parameters.userIds" theme="bootstrap" multiple style="width: 500px;">
|
|
115
|
+ <ui-select-match placeholder="请选择排除人员">
|
|
116
|
+ {{$item.name}}
|
|
117
|
+ </ui-select-match>
|
|
118
|
+ <ui-select-choices repeat="item in userList"
|
|
119
|
+ refresh="onChangehandling($select.search)">
|
|
120
|
+ <div ng-bind-html="item.name | highlight: $select.search"></div>
|
|
121
|
+ </ui-select-choices>
|
|
122
|
+ </ui-select>
|
|
123
|
+ </div>
|
|
124
|
+
|
113
|
125
|
<div class="form-group pull-right">
|
114
|
126
|
<div class="input-group">
|
115
|
127
|
<div class="form-group margin-right-5">
|
|
@@ -136,10 +148,10 @@
|
136
|
148
|
<thread>
|
137
|
149
|
<tr class="grayground incidentsearchsize">
|
138
|
150
|
<th ng-class="header.thclass" style="text-align: center;">处理人</th>
|
139
|
|
- <th ng-class="header.thclass" style="text-align: center;">事件数(条)</th>
|
140
|
|
- <th ng-class="header.thclass" style="text-align: center;">工时</th>
|
141
|
|
- <th ng-class="header.thclass" style="text-align: center;">工时占比</th>
|
142
|
|
- <th ng-class="header.thclass" style="text-align: center;">计费(元)</th>
|
|
151
|
+ <th ng-class="header.thclass" style="text-align: center;">工单数</th>
|
|
152
|
+ <th ng-class="header.thclass" style="text-align: center;">工价</th>
|
|
153
|
+ <th ng-class="header.thclass" style="text-align: center;">占比</th>
|
|
154
|
+ <th ng-class="header.thclass" style="text-align: center;">获得金额</th>
|
143
|
155
|
</tr>
|
144
|
156
|
</thread>
|
145
|
157
|
<tbody class="tbody-hover">
|