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
17c17c81
Commit
17c17c81
authored
Mar 29, 2019
by
dahai
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/dev' into dev
parents
767f45a3
abc8f247
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
33 additions
and
19 deletions
+33
-19
service.js
src/main/resources/static/js/service.js
+5
-3
cardProdPackage.html
...sources/static/views/cardProdPackage/cardProdPackage.html
+12
-6
cardProdPackage.js
...resources/static/views/cardProdPackage/cardProdPackage.js
+16
-2
createTaskList.js
...n/resources/static/views/createTaskList/createTaskList.js
+0
-3
dispatchTask.js
src/main/resources/static/views/dispatchTask/dispatchTask.js
+0
-1
task.js
src/main/resources/static/views/task/task.js
+0
-4
No files found.
src/main/resources/static/js/service.js
View file @
17c17c81
...
...
@@ -387,7 +387,7 @@ angular.module('AvatarCheck.http', ['ngDialog', 'LocalStorageModule'])
})
},
getPackageData
:
function
(
uploadNo
,
idCard
,
oldPackageNo
,
newPackageNo
,
sljg
,
typeCode
,
packageType
,
date
,
currentPage
,
itemsPerPage
,
success
){
typeCode
,
packageType
,
d
ownloadState
,
d
ate
,
currentPage
,
itemsPerPage
,
success
){
// var json ={
// uploadNo:uploadNo,
// IDCard:idCard,
...
...
@@ -402,7 +402,7 @@ angular.module('AvatarCheck.http', ['ngDialog', 'LocalStorageModule'])
// arr.push(json);
// var body = JSON.stringify(arr);
console
.
log
(
uploadNo
,
idCard
,
oldPackageNo
,
newPackageNo
,
sljg
,
typeCode
,
packageType
,
date
,
currentPage
,
itemsPerPage
)
typeCode
,
packageType
,
d
ownloadState
,
d
ate
,
currentPage
,
itemsPerPage
)
$http
({
method
:
'GET'
,
url
:
"../queryPreproPerson/queryPreproPerson"
,
...
...
@@ -414,6 +414,7 @@ angular.module('AvatarCheck.http', ['ngDialog', 'LocalStorageModule'])
SSXQDM
:
sljg
,
cardType
:
typeCode
,
state
:
packageType
,
downloadState
:
downloadState
,
uploadDate
:
date
,
currPage
:
currentPage
,
pageSize
:
itemsPerPage
...
...
@@ -853,7 +854,7 @@ angular.module('AvatarCheck.http', ['ngDialog', 'LocalStorageModule'])
})
},
getDownloadCount
:
function
(
uploadNo
,
idCard
,
oldPackageNo
,
newPackageNo
,
sljg
,
typeCode
,
packageType
,
date
,
success
)
{
typeCode
,
packageType
,
d
ownloadState
,
d
ate
,
success
)
{
$http
({
method
:
'GET'
,
url
:
"../queryPreproPerson/queryPreproPersonCount"
,
...
...
@@ -865,6 +866,7 @@ angular.module('AvatarCheck.http', ['ngDialog', 'LocalStorageModule'])
SSXQDM
:
sljg
,
cardType
:
typeCode
,
state
:
packageType
,
downloadState
:
downloadState
,
uploadDate
:
date
}
}).
then
(
function
successCallback
(
response
)
{
...
...
src/main/resources/static/views/cardProdPackage/cardProdPackage.html
View file @
17c17c81
...
...
@@ -73,15 +73,21 @@
<option
value=
"1"
selected
>
否
</option>
</select>
</td>
<td></td>
<td><div
style=
"float: left;"
>
<button
class=
"btn btn-primary"
ng-click=
"doPackageQuery()"
>
查询
</button>
<button
type=
"submit"
class=
"btn btn-info"
ng-click=
"downloadXml()"
>
下载制证包
</button>
</div></td>
<td>
下载状态
</td>
<td
style=
"text-align: left;"
>
<select
class=
"form-control select2"
id=
"downloadState"
>
<option
value=
""
>
全部
</option>
<option
value=
"1"
>
是
</option>
<option
value=
"0"
selected
>
否
</option>
</select>
</td>
</tr>
</table>
</div>
<div
class=
"box-footer"
style=
"text-align: right;"
>
<button
class=
"btn btn-primary"
ng-click=
"doPackageQuery()"
>
查询
</button>
<button
type=
"submit"
class=
"btn btn-info"
ng-click=
"downloadXml()"
>
下载制证包
</button>
</div>
</div>
<div
class=
"box box-default"
>
<strong
class=
"box-header with-border"
>
制证信息详情
</strong>
...
...
src/main/resources/static/views/cardProdPackage/cardProdPackage.js
View file @
17c17c81
...
...
@@ -43,6 +43,7 @@ angular.module('AvatarCheck.cardProdPackage', ['ngRoute', 'AvatarCheck.http', 't
var
date
=
$
(
"#datepicker"
).
val
();
var
cardType
=
$
(
"#cardType"
).
val
();
var
packageType
=
$
(
"#packageType"
).
val
();
var
downloadState
=
$
(
"#downloadState"
).
val
();
if
(
angular
.
isUndefined
(
$scope
.
uploadNo
)){
$scope
.
uploadNo
=
''
;
}
...
...
@@ -61,6 +62,9 @@ angular.module('AvatarCheck.cardProdPackage', ['ngRoute', 'AvatarCheck.http', 't
if
(
packageType
==
''
){
packageType
=-
1
;
}
if
(
downloadState
==
''
){
downloadState
=-
1
;
}
if
(
date
==
'{{choseDate}}'
){
date
=
$scope
.
choseDate
}
...
...
@@ -68,7 +72,7 @@ angular.module('AvatarCheck.cardProdPackage', ['ngRoute', 'AvatarCheck.http', 't
$scope
.
paginationConf
.
currentPage
=
1
}
HttpService
.
getPackageData
(
$scope
.
uploadNo
,
$scope
.
idCard
,
$scope
.
oldPackageNo
,
$scope
.
newPackageNo
,
$scope
.
sljg
,
cardType
,
packageType
,
date
,
$scope
.
paginationConf
.
currentPage
,
$scope
.
paginationConf
.
itemsPerPage
,
function
(
data
)
{
cardType
,
packageType
,
d
ownloadState
,
d
ate
,
$scope
.
paginationConf
.
currentPage
,
$scope
.
paginationConf
.
itemsPerPage
,
function
(
data
)
{
$scope
.
paginationConf
.
totalItems
=
data
.
total
;
$scope
.
simpleCardCount
=
data
.
puSum
;
$scope
.
postCardCount
=
data
.
youSum
;
...
...
@@ -91,6 +95,7 @@ angular.module('AvatarCheck.cardProdPackage', ['ngRoute', 'AvatarCheck.http', 't
var
date
=
$
(
"#datepicker"
).
val
();
var
packageType
=
$
(
"#packageType"
).
val
();
var
cardType
=
$
(
"#cardType"
).
val
();
var
downloadState
=
$
(
"#downloadState"
).
val
();
if
(
angular
.
isUndefined
(
$scope
.
uploadNo
)){
url
=
url
+
'uploadNo=&'
;
}
else
{
...
...
@@ -126,6 +131,11 @@ angular.module('AvatarCheck.cardProdPackage', ['ngRoute', 'AvatarCheck.http', 't
}
else
{
url
=
url
+
'state='
+
packageType
+
'&'
;
}
if
(
downloadState
==
''
){
url
=
url
+
'downloadState=-1&'
;
}
else
{
url
=
url
+
'downloadState='
+
downloadState
+
'&'
;
}
if
(
date
==
''
){
url
=
url
+
'uploadDate=&'
;
}
else
{
...
...
@@ -138,6 +148,7 @@ angular.module('AvatarCheck.cardProdPackage', ['ngRoute', 'AvatarCheck.http', 't
var
date
=
$
(
"#datepicker"
).
val
();
var
cardType
=
$
(
"#cardType"
).
val
();
var
packageType
=
$
(
"#packageType"
).
val
();
var
downloadState
=
$
(
"#downloadState"
).
val
();
if
(
angular
.
isUndefined
(
$scope
.
uploadNo
)){
$scope
.
uploadNo
=
''
;
}
...
...
@@ -156,11 +167,14 @@ angular.module('AvatarCheck.cardProdPackage', ['ngRoute', 'AvatarCheck.http', 't
if
(
packageType
==
''
){
packageType
=-
1
;
}
if
(
downloadState
==
''
){
downloadState
=-
1
;
}
if
(
date
==
'{{choseDate}}'
){
date
=
$scope
.
choseDate
}
HttpService
.
getDownloadCount
(
$scope
.
uploadNo
,
$scope
.
idCard
,
$scope
.
oldPackageNo
,
$scope
.
newPackageNo
,
$scope
.
sljg
,
cardType
,
packageType
,
date
,
function
(
data
)
{
cardType
,
packageType
,
d
ownloadState
,
d
ate
,
function
(
data
)
{
$rootScope
.
count
=
data
.
total
;
})
}
...
...
src/main/resources/static/views/createTaskList/createTaskList.js
View file @
17c17c81
...
...
@@ -223,9 +223,6 @@ angular.module('AvatarCheck.createTaskList', ['ngRoute', 'AvatarCheck.http', 'tm
}
console
.
log
(
map
)
HttpService
.
createTask
(
map
,
function
(
data
){
console
.
log
(
data
)
MessageService
.
showAlert
(
data
.
msg
)
console
.
log
(
$scope
.
searchCurrent
)
$scope
.
searchCurrent
();
$scope
.
selected
=
[];
$rootScope
.
selectCount
=
[];
...
...
src/main/resources/static/views/dispatchTask/dispatchTask.js
View file @
17c17c81
...
...
@@ -163,7 +163,6 @@ angular.module('AvatarCheck.dispatchTask', ['ngRoute', 'AvatarCheck.http', 'tm.p
console
.
log
(
json
)
HttpService
.
updateTaskListProcess
(
json
,
function
(
data
){
$scope
.
searchTaskList
();
MessageService
.
showAlert
(
"下发完成"
)
$scope
.
selected
=
[];
$rootScope
.
closeThis
();
})
...
...
src/main/resources/static/views/task/task.js
View file @
17c17c81
...
...
@@ -210,7 +210,6 @@ angular.module('AvatarCheck.task', ['ngRoute', 'AvatarCheck.http'])
console
.
log
(
json
)
HttpService
.
updatePrintTaskListProcess
(
json
,
function
(
data
){
$scope
.
searchTaskList
();
MessageService
.
showAlert
(
"转出完成"
)
$scope
.
selected
=
[];
$rootScope
.
closeThis
();
})
...
...
@@ -381,7 +380,6 @@ angular.module('AvatarCheck.task', ['ngRoute', 'AvatarCheck.http'])
console
.
log
(
json
)
HttpService
.
updateTaskListProcess
(
json
,
function
(
data
){
$scope
.
searchTaskList
();
MessageService
.
showAlert
(
"转出完成"
)
$scope
.
selected
=
[];
$rootScope
.
closeThis
();
})
...
...
@@ -547,7 +545,6 @@ angular.module('AvatarCheck.task', ['ngRoute', 'AvatarCheck.http'])
console
.
log
(
json
)
HttpService
.
updateTaskListProcess
(
json
,
function
(
data
){
$scope
.
searchTaskList
();
MessageService
.
showAlert
(
"转出完成"
)
$scope
.
selected
=
[];
$rootScope
.
closeThis
();
})
...
...
@@ -714,7 +711,6 @@ angular.module('AvatarCheck.task', ['ngRoute', 'AvatarCheck.http'])
console
.
log
(
json
)
HttpService
.
updateTaskListProcess
(
json
,
function
(
data
){
$scope
.
searchTaskList
();
MessageService
.
showAlert
(
"转出完成"
)
$scope
.
selected
=
[];
$rootScope
.
closeThis
();
})
...
...
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