Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
Y
YX_IDENT_beijing_auxiliary_YD
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zhangyusheng
YX_IDENT_beijing_auxiliary_YD
Commits
c202c31a
Commit
c202c31a
authored
Mar 15, 2019
by
liboyang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
任务单排序
parent
cb5b0269
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
40 additions
and
28 deletions
+40
-28
createTaskList.html
...resources/static/views/createTaskList/createTaskList.html
+3
-3
createTaskList.js
...n/resources/static/views/createTaskList/createTaskList.js
+4
-0
dispatchTask.html
...ain/resources/static/views/dispatchTask/dispatchTask.html
+4
-4
dispatchTask.js
src/main/resources/static/views/dispatchTask/dispatchTask.js
+2
-0
task.js
src/main/resources/static/views/task/task.js
+8
-2
taskListEwriting.html
src/main/resources/static/views/task/taskListEwriting.html
+4
-4
taskListPreLocating.html
...main/resources/static/views/task/taskListPreLocating.html
+3
-3
taskListPrint.html
src/main/resources/static/views/task/taskListPrint.html
+4
-4
taskListPushing.html
src/main/resources/static/views/task/taskListPushing.html
+4
-4
taskListSorting.html
src/main/resources/static/views/task/taskListSorting.html
+4
-4
No files found.
src/main/resources/static/views/createTaskList/createTaskList.html
View file @
c202c31a
...
...
@@ -61,15 +61,15 @@
<tr>
<th><input
type=
"checkbox"
ng-click=
"selectAll(type.countyList,$event)"
ng-checked=
"isSelectedAll($index)"
></th>
<th>
保存日期
</th>
<th>
地区
</th>
<th>
<a
ng-click=
"countyCode='countyCode';desc=!desc"
>
地区
</a>
</th>
<th>
组数
</th>
<th>
受理组号
</th>
<th>
<a
ng-click=
"countyCode='groupNum';desc=!desc"
>
受理组号
</a>
</th>
<th>
合格数量
</th>
<th>
不合格数量
</th>
<th></th>
</tr>
</thead>
<tbody
ng-repeat=
"task in type.countyList"
>
<tbody
ng-repeat=
"task in type.countyList
| orderBy:countyCode:desc
"
>
<tr>
<td><input
type=
"checkbox"
class=
"checkOneBox"
ng-checked=
"isSelected(task)"
value=
"{{task.valid}}"
ng-click=
"updateSelection($event,task)"
></td>
<td
class=
"mailbox-star"
><b>
{{task.saveDate | date:'yyyy-MM-dd'}}
</b></td>
...
...
src/main/resources/static/views/createTaskList/createTaskList.js
View file @
c202c31a
...
...
@@ -11,6 +11,10 @@ angular.module('AvatarCheck.createTaskList', ['ngRoute', 'AvatarCheck.http', 'tm
.
controller
(
'createTaskListCtrl'
,
function
(
$scope
,
$rootScope
,
HttpService
,
$interval
,
MessageService
,
$timeout
,
$filter
,
ngDialog
)
{
$scope
.
desc
=
0
;
$scope
.
countyCode
=
"countyCode"
;
//Date picker
$
(
'#datepicker'
).
datetimepicker
({
minView
:
"month"
,
//选择日期后,不会再跳转去选择时分秒
...
...
src/main/resources/static/views/dispatchTask/dispatchTask.html
View file @
c202c31a
...
...
@@ -34,10 +34,10 @@
<thead>
<tr>
<th><input
type=
"checkbox"
ng-click=
"selectAll(type.countyList,$event)"
ng-checked=
"isSelectedAll($index)"
></th>
<th>
任务单编号
</th>
<th>
地区
</th>
<th>
<a
ng-click=
"countyCode='taskId';desc=!desc"
>
任务单编号
</a>
</th>
<th>
<a
ng-click=
"countyCode='countyCode';desc=!desc"
>
地区
</a>
</th>
<th>
组数
</th>
<th>
受理组号
</th>
<th>
<a
ng-click=
"countyCode='groupNum';desc=!desc"
>
受理组号
</a>
</th>
<th>
合格数量
</th>
<th>
不合格数量
</th>
<th>
废证数量
</th>
...
...
@@ -45,7 +45,7 @@
<th></th>
</tr>
</thead>
<tbody
ng-repeat=
"task in type.countyList"
>
<tbody
ng-repeat=
"task in type.countyList
| orderBy:countyCode:desc
"
>
<tr>
<td><input
type=
"checkbox"
class=
"checkOneBox"
ng-checked=
"isSelected(task)"
value=
"{{task.taskId}}"
ng-click=
"updateSelection($event,task)"
></td>
<td
class=
"mailbox-star"
><b>
{{task.taskId}}
</b></td>
...
...
src/main/resources/static/views/dispatchTask/dispatchTask.js
View file @
c202c31a
...
...
@@ -11,6 +11,8 @@ angular.module('AvatarCheck.dispatchTask', ['ngRoute', 'AvatarCheck.http', 'tm.p
.
controller
(
'dispatchTaskCtrl'
,
function
(
$scope
,
$rootScope
,
HttpService
,
$interval
,
MessageService
,
$timeout
,
$filter
,
ngDialog
)
{
$scope
.
desc
=
0
;
$scope
.
countyCode
=
"countyCode"
;
//Date picker
$
(
'#datepicker'
).
datetimepicker
({
minView
:
"month"
,
//选择日期后,不会再跳转去选择时分秒
...
...
src/main/resources/static/views/task/task.js
View file @
c202c31a
...
...
@@ -31,7 +31,8 @@ angular.module('AvatarCheck.task', ['ngRoute', 'AvatarCheck.http'])
.
controller
(
'taskListPrintCtrl'
,
function
(
$scope
,
$rootScope
,
$timeout
,
HttpService
,
ngDialog
,
MessageService
,
$filter
)
{
$scope
.
desc
=
0
;
$scope
.
countyCode
=
"countyCode"
;
//Date picker
$
(
'#datepicker'
).
datetimepicker
({
minView
:
"month"
,
//选择日期后,不会再跳转去选择时分秒
...
...
@@ -213,7 +214,8 @@ angular.module('AvatarCheck.task', ['ngRoute', 'AvatarCheck.http'])
})
.
controller
(
'taskListPreLocatingCtrl'
,
function
(
$scope
,
$rootScope
,
$timeout
,
HttpService
,
ngDialog
,
MessageService
,
$filter
)
{
$scope
.
desc
=
0
;
$scope
.
countyCode
=
"countyCode"
;
//Date picker
$
(
'#datepicker'
).
datetimepicker
({
...
...
@@ -367,6 +369,8 @@ angular.module('AvatarCheck.task', ['ngRoute', 'AvatarCheck.http'])
})
.
controller
(
'taskListEwritingCtrl'
,
function
(
$scope
,
$rootScope
,
$timeout
,
HttpService
,
ngDialog
,
MessageService
,
$filter
)
{
$scope
.
desc
=
0
;
$scope
.
countyCode
=
"countyCode"
;
//Date picker
$
(
'#datepicker'
).
datetimepicker
({
minView
:
"month"
,
//选择日期后,不会再跳转去选择时分秒
...
...
@@ -512,6 +516,8 @@ angular.module('AvatarCheck.task', ['ngRoute', 'AvatarCheck.http'])
})
.
controller
(
'taskListSortingCtrl'
,
function
(
$scope
,
$rootScope
,
$timeout
,
HttpService
,
ngDialog
,
MessageService
,
$filter
)
{
$scope
.
desc
=
0
;
$scope
.
countyCode
=
"countyCode"
;
//Date picker
$
(
'#datepicker'
).
datetimepicker
({
minView
:
"month"
,
//选择日期后,不会再跳转去选择时分秒
...
...
src/main/resources/static/views/task/taskListEwriting.html
View file @
c202c31a
...
...
@@ -34,11 +34,11 @@
<thead>
<tr>
<th><input
type=
"checkbox"
ng-click=
"selectAll(type.countyList,$event)"
ng-checked=
"isSelectedAll($index)"
></th>
<th>
任务单编号
</th>
<th>
<a
ng-click=
"countyCode='taskId';desc=!desc"
>
任务单编号
</a>
</th>
<th>
核验日期
</th>
<th>
地区
</th>
<th>
<a
ng-click=
"countyCode='countyCode';desc=!desc"
>
地区
</a>
</th>
<th>
组数
</th>
<th>
组号
</th>
<th>
<a
ng-click=
"countyCode='groupNum';desc=!desc"
>
受理组号
</a>
</th>
<th>
核验数量
</th>
<th>
证件数量
</th>
<th>
电写入数量
</th>
...
...
@@ -47,7 +47,7 @@
<th></th>
</tr>
</thead>
<tbody
ng-repeat=
"task in type.countyList"
>
<tbody
ng-repeat=
"task in type.countyList
| orderBy:countyCode:desc
"
>
<tr>
<td
ng-if=
"task.faileCount==0"
><input
type=
"checkbox"
class=
"checkOneBox"
ng-checked=
"isSelected(task)"
value=
"{{task.taskId}}"
ng-click=
"updateSelection($event,task)"
></td>
<td
ng-if=
"task.faileCount>0"
></td>
...
...
src/main/resources/static/views/task/taskListPreLocating.html
View file @
c202c31a
...
...
@@ -37,11 +37,11 @@
<thead>
<tr>
<th><input
type=
"checkbox"
ng-click=
"selectAll(type.countyList,$event)"
ng-checked=
"isSelectedAll($index)"
></th>
<th>
任务单编号
</th>
<th>
<a
ng-click=
"countyCode='taskId';desc=!desc"
>
任务单编号
</a>
</th>
<th>
核验日期
</th>
<th>
地区
</th>
<th>
<a
ng-click=
"countyCode='countyCode';desc=!desc"
>
地区
</a>
</th>
<th>
组数
</th>
<th>
组号
</th>
<th>
<a
ng-click=
"countyCode='groupNum';desc=!desc"
>
受理组号
</a>
</th>
<th>
核验数量
</th>
<th>
证件数量
</th>
<th>
特殊证件数量
</th>
...
...
src/main/resources/static/views/task/taskListPrint.html
View file @
c202c31a
...
...
@@ -38,11 +38,11 @@
<thead>
<tr>
<th><input
type=
"checkbox"
ng-click=
"selectAll(type.countyList,$event)"
ng-checked=
"isSelectedAll($index)"
></th>
<th>
任务单编号
</th>
<th>
<a
ng-click=
"countyCode='taskId';desc=!desc"
>
任务单编号
</a>
</th>
<th>
核验日期
</th>
<th>
地区
</th>
<th>
<a
ng-click=
"countyCode='countyCode';desc=!desc"
>
地区
</a>
</th>
<th>
组数
</th>
<th>
组号
</th>
<th>
<a
ng-click=
"countyCode='groupNum';desc=!desc"
>
受理组号
</a>
</th>
<th>
核验数量
</th>
<th>
证件数量
</th>
<th>
特殊证件数量
</th>
...
...
@@ -50,7 +50,7 @@
<th></th>
</tr>
</thead>
<tbody
ng-repeat=
"task in type.countyList"
>
<tbody
ng-repeat=
"task in type.countyList
| orderBy:countyCode:desc
"
>
<tr>
<td
ng-if=
"task.faileCount==0"
><input
type=
"checkbox"
id=
"checkOneBox"
class=
"checkOneBox"
ng-checked=
"isSelected(task)"
value=
"{{task.taskId}}"
name=
"{{task.countyValidCount-task.specialCount}}"
ng-click=
"updateSelection($event,task)"
></td>
<td
ng-if=
"task.faileCount>0"
></td>
...
...
src/main/resources/static/views/task/taskListPushing.html
View file @
c202c31a
...
...
@@ -37,11 +37,11 @@
<thead>
<tr>
<th><input
type=
"checkbox"
ng-click=
"selectAll(type.countyList,$event)"
ng-checked=
"isSelectedAll($index)"
></th>
<th>
任务单编号
</th>
<th>
<a
ng-click=
"countyCode='taskId';desc=!desc"
>
任务单编号
</a>
</th>
<th>
核验日期
</th>
<th>
地区
</th>
<th>
<a
ng-click=
"countyCode='countyCode';desc=!desc"
>
地区
</a>
</th>
<th>
组数
</th>
<th>
组号
</th>
<th>
<a
ng-click=
"countyCode='groupNum';desc=!desc"
>
受理组号
</a>
</th>
<th>
核验数量
</th>
<th>
证件数量
</th>
<th>
特殊证件数量
</th>
...
...
@@ -49,7 +49,7 @@
<th></th>
</tr>
</thead>
<tbody
ng-repeat=
"task in type.countyList"
>
<tbody
ng-repeat=
"task in type.countyList
| orderBy:countyCode:desc
"
>
<tr>
<td
ng-if=
"task.faileCount==0"
><input
type=
"checkbox"
class=
"checkOneBox"
ng-checked=
"isSelected(task)"
value=
"{{task.taskId}}"
ng-click=
"updateSelection($event,task)"
></td>
<td
ng-if=
"task.faileCount>0"
></td>
...
...
src/main/resources/static/views/task/taskListSorting.html
View file @
c202c31a
...
...
@@ -32,11 +32,11 @@
<thead>
<tr>
<th><input
type=
"checkbox"
ng-click=
"selectAll(type.countyList,$event)"
ng-checked=
"isSelectedAll($index)"
></th>
<th>
任务单编号
</th>
<th>
<a
ng-click=
"countyCode='taskId';desc=!desc"
>
任务单编号
</a>
</th>
<th>
核验日期
</th>
<th>
地区
</th>
<th>
<a
ng-click=
"countyCode='countyCode';desc=!desc"
>
地区
</a>
</th>
<th>
组数
</th>
<th>
组号
</th>
<th>
<a
ng-click=
"countyCode='groupNum';desc=!desc"
>
受理组号
</a>
</th>
<th>
核验数量
</th>
<th>
证件数量
</th>
<th>
电写入数量
</th>
...
...
@@ -47,7 +47,7 @@
<th></th>
</tr>
</thead>
<tbody
ng-repeat=
"task in type.countyList"
>
<tbody
ng-repeat=
"task in type.countyList
| orderBy:countyCode:desc
"
>
<tr>
<td
ng-if=
"task.faileCount==0"
><input
type=
"checkbox"
class=
"checkOneBox"
ng-checked=
"isSelected(task)"
value=
"{{task.taskId}}"
ng-click=
"updateSelection($event,task)"
></td>
<td
ng-if=
"task.faileCount>0"
></td>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment