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
180adf02
Commit
180adf02
authored
Mar 16, 2019
by
liboyang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
制证信息管理
parent
87f0b4c5
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
27 additions
and
26 deletions
+27
-26
service.js
src/main/resources/static/js/service.js
+6
-6
cardProdUpdate.html
...resources/static/views/cardProdUpdate/cardProdUpdate.html
+5
-5
cardProdUpdate.js
...n/resources/static/views/cardProdUpdate/cardProdUpdate.js
+15
-14
taskListSorting.html
src/main/resources/static/views/task/taskListSorting.html
+1
-1
No files found.
src/main/resources/static/js/service.js
View file @
180adf02
...
@@ -287,13 +287,13 @@ angular.module('AvatarCheck.http', ['ngDialog', 'LocalStorageModule'])
...
@@ -287,13 +287,13 @@ angular.module('AvatarCheck.http', ['ngDialog', 'LocalStorageModule'])
success
(
response
.
data
)
success
(
response
.
data
)
})
})
},
},
selectXmlDataCount
:
function
(
start
PackageNo
,
endPackageNo
,
pcs_name
,
startDate
,
endDate
,
success
)
{
selectXmlDataCount
:
function
(
start
Id
,
endId
,
pcs_name
,
startDate
,
endDate
,
success
)
{
$http
({
$http
({
method
:
'GET'
,
method
:
'GET'
,
url
:
"../InfoManagementApi/selectCount"
+
urlTimeStamp
(),
url
:
"../InfoManagementApi/selectCount"
+
urlTimeStamp
(),
params
:{
params
:{
beginFile
Name
:
startPackageNo
,
beginFile
Id
:
startId
,
endFile
Name
:
endPackageNo
,
endFile
Id
:
endId
,
gajgMc
:
pcs_name
,
gajgMc
:
pcs_name
,
beginDate
:
startDate
,
beginDate
:
startDate
,
endDate
:
endDate
endDate
:
endDate
...
@@ -313,13 +313,13 @@ angular.module('AvatarCheck.http', ['ngDialog', 'LocalStorageModule'])
...
@@ -313,13 +313,13 @@ angular.module('AvatarCheck.http', ['ngDialog', 'LocalStorageModule'])
success
(
response
.
data
)
success
(
response
.
data
)
})
})
},
},
deleteProdCards
:
function
(
start
PackageNo
,
endPackageNo
,
pcs_name
,
startDate
,
endDate
,
success
)
{
deleteProdCards
:
function
(
start
Id
,
endId
,
pcs_name
,
startDate
,
endDate
,
success
)
{
$http
({
$http
({
method
:
'GET'
,
method
:
'GET'
,
url
:
"../InfoManagementApi/deleteInfo"
+
urlTimeStamp
(),
url
:
"../InfoManagementApi/deleteInfo"
+
urlTimeStamp
(),
params
:{
params
:{
beginFileName
:
start
PackageNo
,
beginFileName
:
start
Id
,
endFileName
:
end
PackageNo
,
endFileName
:
end
Id
,
gajgMc
:
pcs_name
,
gajgMc
:
pcs_name
,
beginDate
:
startDate
,
beginDate
:
startDate
,
endDate
:
endDate
endDate
:
endDate
...
...
src/main/resources/static/views/cardProdUpdate/cardProdUpdate.html
View file @
180adf02
...
@@ -34,13 +34,13 @@
...
@@ -34,13 +34,13 @@
<div
class=
"box-info"
>
<div
class=
"box-info"
>
<table
class=
"table table-bordered"
style=
"margin-bottom: 0;"
>
<table
class=
"table table-bordered"
style=
"margin-bottom: 0;"
>
<tr>
<tr>
<td>
新包号
:
</td>
<td>
文件ID
:
</td>
<td>
<td>
<input
type=
"text"
class=
"form-control"
ng-model=
"start
PackageNo"
placeholder=
"起始包号
"
>
<input
type=
"text"
class=
"form-control"
ng-model=
"start
Id"
placeholder=
"起始ID
"
>
</td>
</td>
<td>
-
</td>
<td>
-
</td>
<td>
<td>
<input
type=
"text"
class=
"form-control"
ng-model=
"end
PackageNo"
placeholder=
"截至包号
"
>
<input
type=
"text"
class=
"form-control"
ng-model=
"end
Id"
placeholder=
"截至ID
"
>
</td>
</td>
<td>
派出所名称:
</td>
<td>
派出所名称:
</td>
...
@@ -95,8 +95,8 @@
...
@@ -95,8 +95,8 @@
</tr>
</tr>
</thead>
</thead>
<tbody>
<tbody>
<tr
ng-repeat=
"item in xmlDatas"
>
<tr
ng-repeat=
"item in xmlDatas
| orderBy:'id'
"
>
<td>
{{
$index+1
}}
</td>
<td>
{{
item.id
}}
</td>
<td>
{{item.dwdm}}
</td>
<td>
{{item.dwdm}}
</td>
<td>
{{item.dwmc}}
</td>
<td>
{{item.dwmc}}
</td>
<td>
{{item.recordNumber}}
</td>
<td>
{{item.recordNumber}}
</td>
...
...
src/main/resources/static/views/cardProdUpdate/cardProdUpdate.js
View file @
180adf02
...
@@ -13,6 +13,7 @@ angular.module('AvatarCheck.cardProdUpdate', ['ngRoute', 'AvatarCheck.http'])
...
@@ -13,6 +13,7 @@ angular.module('AvatarCheck.cardProdUpdate', ['ngRoute', 'AvatarCheck.http'])
$rootScope
.
hasOpen
=
false
;
$rootScope
.
hasOpen
=
false
;
$scope
.
id
=
'id'
;
$
(
'.select2'
).
select2
();
$
(
'.select2'
).
select2
();
//Initialize Select2 Elements
//Initialize Select2 Elements
...
@@ -54,11 +55,11 @@ angular.module('AvatarCheck.cardProdUpdate', ['ngRoute', 'AvatarCheck.http'])
...
@@ -54,11 +55,11 @@ angular.module('AvatarCheck.cardProdUpdate', ['ngRoute', 'AvatarCheck.http'])
$scope
.
doXmlQuery
=
function
()
{
$scope
.
doXmlQuery
=
function
()
{
var
startDate
=
$
(
"#datepicker1"
).
val
();
var
startDate
=
$
(
"#datepicker1"
).
val
();
var
endDate
=
$
(
"#datepicker2"
).
val
();
var
endDate
=
$
(
"#datepicker2"
).
val
();
if
(
angular
.
isUndefined
(
$scope
.
start
PackageNo
)){
if
(
angular
.
isUndefined
(
$scope
.
start
Id
)){
$scope
.
start
PackageNo
=
''
;
$scope
.
start
Id
=
''
;
}
}
if
(
angular
.
isUndefined
(
$scope
.
end
PackageNo
)){
if
(
angular
.
isUndefined
(
$scope
.
end
Id
)){
$scope
.
end
PackageNo
=
''
;
$scope
.
end
Id
=
''
;
}
}
if
(
angular
.
isUndefined
(
$scope
.
pcs_name
)){
if
(
angular
.
isUndefined
(
$scope
.
pcs_name
)){
$scope
.
pcs_name
=
''
;
$scope
.
pcs_name
=
''
;
...
@@ -66,13 +67,13 @@ angular.module('AvatarCheck.cardProdUpdate', ['ngRoute', 'AvatarCheck.http'])
...
@@ -66,13 +67,13 @@ angular.module('AvatarCheck.cardProdUpdate', ['ngRoute', 'AvatarCheck.http'])
if
((
startDate
!=
''
&&
endDate
==
''
)
||
(
endDate
!=
''
&&
startDate
==
''
)){
if
((
startDate
!=
''
&&
endDate
==
''
)
||
(
endDate
!=
''
&&
startDate
==
''
)){
MessageService
.
showAlert
(
"请选择起始日期和结束日期"
)
MessageService
.
showAlert
(
"请选择起始日期和结束日期"
)
}
else
{
}
else
{
console
.
log
(
$scope
.
start
PackageNo
,
$scope
.
endPackageNo
,
$scope
.
pcs_name
,
startDate
,
endDate
,
$scope
.
paginationConf
.
currentPage
,
$scope
.
paginationConf
.
itemsPerPage
)
console
.
log
(
$scope
.
start
Id
,
$scope
.
endId
,
$scope
.
pcs_name
,
startDate
,
endDate
,
$scope
.
paginationConf
.
currentPage
,
$scope
.
paginationConf
.
itemsPerPage
)
HttpService
.
selectXmlDataCount
(
$scope
.
startPackageNo
,
$scope
.
endPackageNo
,
$scope
.
pcs_name
,
startDate
,
endDate
,
function
(
data
){
HttpService
.
selectXmlDataCount
(
$scope
.
startPackageNo
,
$scope
.
endPackageNo
,
$scope
.
pcs_name
,
startDate
,
endDate
,
function
(
data
){
$scope
.
paginationConf
.
totalItems
=
data
;
$scope
.
paginationConf
.
totalItems
=
data
;
console
.
log
(
$scope
.
paginationConf
.
totalItems
,
"count"
)
console
.
log
(
$scope
.
paginationConf
.
totalItems
,
"count"
)
})
})
HttpService
.
selectXmlData
(
$scope
.
start
PackageNo
,
$scope
.
endPackageNo
,
$scope
.
pcs_name
,
startDate
,
endDate
,
$scope
.
paginationConf
.
currentPage
,
$scope
.
paginationConf
.
itemsPerPage
,
function
(
data
)
{
HttpService
.
selectXmlData
(
$scope
.
start
Id
,
$scope
.
endId
,
$scope
.
pcs_name
,
startDate
,
endDate
,
$scope
.
paginationConf
.
currentPage
,
$scope
.
paginationConf
.
itemsPerPage
,
function
(
data
)
{
$scope
.
xmlDatas
=
data
;
$scope
.
xmlDatas
=
data
;
console
.
log
(
$scope
.
xmlDatas
)
console
.
log
(
$scope
.
xmlDatas
)
})
})
...
@@ -87,14 +88,14 @@ angular.module('AvatarCheck.cardProdUpdate', ['ngRoute', 'AvatarCheck.http'])
...
@@ -87,14 +88,14 @@ angular.module('AvatarCheck.cardProdUpdate', ['ngRoute', 'AvatarCheck.http'])
$scope
.
deleteXml
=
function
()
{
$scope
.
deleteXml
=
function
()
{
var
startDate
=
$
(
"#datepicker1"
).
val
();
var
startDate
=
$
(
"#datepicker1"
).
val
();
var
endDate
=
$
(
"#datepicker2"
).
val
();
var
endDate
=
$
(
"#datepicker2"
).
val
();
var
start
PackageNo
=
$scope
.
startPackageNo
;
var
start
Id
=
$scope
.
startId
;
var
end
PackageNo
=
$scope
.
endPackageNo
;
var
end
Id
=
$scope
.
endId
;
var
pcs_name
=
$scope
.
pcs_name
;
var
pcs_name
=
$scope
.
pcs_name
;
if
(
angular
.
isUndefined
(
start
PackageNo
)){
if
(
angular
.
isUndefined
(
start
Id
)){
start
PackageNo
=
''
;
start
Id
=
''
;
}
}
if
(
angular
.
isUndefined
(
end
PackageNo
)){
if
(
angular
.
isUndefined
(
end
Id
)){
end
PackageNo
=
''
;
end
Id
=
''
;
}
}
if
(
angular
.
isUndefined
(
pcs_name
)){
if
(
angular
.
isUndefined
(
pcs_name
)){
pcs_name
=
''
;
pcs_name
=
''
;
...
@@ -110,12 +111,12 @@ angular.module('AvatarCheck.cardProdUpdate', ['ngRoute', 'AvatarCheck.http'])
...
@@ -110,12 +111,12 @@ angular.module('AvatarCheck.cardProdUpdate', ['ngRoute', 'AvatarCheck.http'])
controller
:
[
'$scope'
,
function
(
$scope
)
{
controller
:
[
'$scope'
,
function
(
$scope
)
{
$scope
.
startDate
=
startDate
;
$scope
.
startDate
=
startDate
;
$scope
.
endDate
=
endDate
;
$scope
.
endDate
=
endDate
;
HttpService
.
selectXmlDataCount
(
start
PackageNo
,
endPackageNo
,
pcs_name
,
startDate
,
endDate
,
function
(
data
){
HttpService
.
selectXmlDataCount
(
start
Id
,
endId
,
pcs_name
,
startDate
,
endDate
,
function
(
data
){
$scope
.
total
=
data
;
$scope
.
total
=
data
;
console
.
log
(
$scope
.
total
,
"count"
)
console
.
log
(
$scope
.
total
,
"count"
)
})
})
$scope
.
confirmDelete
=
function
()
{
$scope
.
confirmDelete
=
function
()
{
HttpService
.
deleteProdCards
(
start
PackageNo
,
endPackageNo
,
pcs_name
,
startDate
,
endDate
,
function
(
data
)
{
HttpService
.
deleteProdCards
(
start
Id
,
endId
,
pcs_name
,
startDate
,
endDate
,
function
(
data
)
{
if
(
data
){
if
(
data
){
MessageService
.
showAlert
(
"删除成功"
);
MessageService
.
showAlert
(
"删除成功"
);
$scope
.
closeThisDialog
();
$scope
.
closeThisDialog
();
...
...
src/main/resources/static/views/task/taskListSorting.html
View file @
180adf02
...
@@ -66,7 +66,7 @@
...
@@ -66,7 +66,7 @@
<td
ng-if=
"task.faileCount!=0"
class=
"mailbox-subject"
style=
"color: red;"
>
{{task.faileCount}}
</td>
<td
ng-if=
"task.faileCount!=0"
class=
"mailbox-subject"
style=
"color: red;"
>
{{task.faileCount}}
</td>
<td
ng-if=
"task.faileCount==0"
class=
"mailbox-subject"
>
{{task.faileCount}}
</td>
<td
ng-if=
"task.faileCount==0"
class=
"mailbox-subject"
>
{{task.faileCount}}
</td>
<td
class=
"mailbox-subject"
>
{{task.recheckCount}}
</td>
<td
class=
"mailbox-subject"
>
{{task.recheckCount}}
</td>
<td
class=
"mailbox-date"
><a
ng-click=
"getPoliceList(task.policeList,task.taskId)"
>
派出所
列表
</a></td>
<td
class=
"mailbox-date"
><a
ng-click=
"getPoliceList(task.policeList,task.taskId)"
>
组号
列表
</a></td>
<td
class=
"mailbox-subject"
><button
class=
"btn btn-primary"
>
打印封条
</button></td>
<td
class=
"mailbox-subject"
><button
class=
"btn btn-primary"
>
打印封条
</button></td>
</tr>
</tr>
<tr
ng-if=
"task.taskId==taskId"
>
<tr
ng-if=
"task.taskId==taskId"
>
...
...
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