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
7b26fed1
Commit
7b26fed1
authored
Nov 22, 2019
by
liboyang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
查询登记妥投失败记录新增身份证查询条件
parent
06ac962a
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
8 deletions
+16
-8
service.js
src/main/resources/static/js/service.js
+3
-2
saveDeliveredFailedInfo.html
...iews/saveDeliveredFailedInfo/saveDeliveredFailedInfo.html
+8
-4
saveDeliveredFailedInfo.js
.../views/saveDeliveredFailedInfo/saveDeliveredFailedInfo.js
+5
-2
No files found.
src/main/resources/static/js/service.js
View file @
7b26fed1
...
@@ -1426,13 +1426,14 @@ angular.module('AvatarCheck.http', ['ngDialog', 'LocalStorageModule'])
...
@@ -1426,13 +1426,14 @@ angular.module('AvatarCheck.http', ['ngDialog', 'LocalStorageModule'])
success
(
response
.
data
)
success
(
response
.
data
)
})
})
},
},
queryDeliveredFailedByRegisterDate
:
function
(
date
,
date1
,
success
)
{
queryDeliveredFailedByRegisterDate
:
function
(
date
,
date1
,
idCard
,
success
)
{
$http
({
$http
({
method
:
'GET'
,
method
:
'GET'
,
url
:
"../DeliveredApi/queryDeliveredFailedByRegisterDate"
+
urlTimeStamp
(),
url
:
"../DeliveredApi/queryDeliveredFailedByRegisterDate"
+
urlTimeStamp
(),
params
:{
params
:{
startDate
:
date
,
startDate
:
date
,
endDate
:
date1
endDate
:
date1
,
cardId
:
idCard
}
}
}).
then
(
function
successCallback
(
response
)
{
}).
then
(
function
successCallback
(
response
)
{
success
(
response
.
data
)
success
(
response
.
data
)
...
...
src/main/resources/static/views/saveDeliveredFailedInfo/saveDeliveredFailedInfo.html
View file @
7b26fed1
...
@@ -66,8 +66,8 @@
...
@@ -66,8 +66,8 @@
<div
class=
"box box-primary"
>
<div
class=
"box box-primary"
>
<table
class=
"table table-bordered"
style=
"margin-bottom: 0;"
>
<table
class=
"table table-bordered"
style=
"margin-bottom: 0;"
>
<tr>
<tr>
<td
width=
"1
5%;
"
>
起始日期:
</td>
<td
width=
"1
0%
"
>
起始日期:
</td>
<td
width=
"
3
0%"
>
<td
width=
"
2
0%"
>
<div
class=
"input-group date"
>
<div
class=
"input-group date"
>
<div
class=
"input-group-addon"
>
<div
class=
"input-group-addon"
>
<i
class=
"fa fa-calendar"
></i>
<i
class=
"fa fa-calendar"
></i>
...
@@ -75,8 +75,8 @@
...
@@ -75,8 +75,8 @@
<input
type=
"text"
class=
"form-control pull-right"
ng-model=
"choseDate"
id=
"datepicker"
readonly
/>
<input
type=
"text"
class=
"form-control pull-right"
ng-model=
"choseDate"
id=
"datepicker"
readonly
/>
</div>
</div>
</td>
</td>
<td
width=
"1
5%;
"
>
截止日期:
</td>
<td
width=
"1
0%
"
>
截止日期:
</td>
<td
width=
"
3
0%"
>
<td
width=
"
2
0%"
>
<div
class=
"input-group date"
>
<div
class=
"input-group date"
>
<div
class=
"input-group-addon"
>
<div
class=
"input-group-addon"
>
<i
class=
"fa fa-calendar"
></i>
<i
class=
"fa fa-calendar"
></i>
...
@@ -84,6 +84,10 @@
...
@@ -84,6 +84,10 @@
<input
type=
"text"
class=
"form-control pull-right"
ng-model=
"choseDate"
id=
"datepicker1"
readonly
/>
<input
type=
"text"
class=
"form-control pull-right"
ng-model=
"choseDate"
id=
"datepicker1"
readonly
/>
</div>
</div>
</td>
</td>
<td
width=
"10%;"
>
身份证号:
</td>
<td
width=
"20%"
>
<input
type=
"text"
class=
"form-control pull-right"
ng-model=
"idCard"
placeholder=
"请输入身份证号"
/>
</td>
<td
style=
"text-align: left;"
>
<td
style=
"text-align: left;"
>
<button
class=
"btn btn-primary"
ng-click=
"queryDeliveredFailedByRegisterDate()"
>
查询
</button>
<button
class=
"btn btn-primary"
ng-click=
"queryDeliveredFailedByRegisterDate()"
>
查询
</button>
</td>
</td>
...
...
src/main/resources/static/views/saveDeliveredFailedInfo/saveDeliveredFailedInfo.js
View file @
7b26fed1
...
@@ -83,14 +83,17 @@ angular.module("AvatarCheck.saveDeliveredFailedInfo",['ngRoute', 'AvatarCheck.ht
...
@@ -83,14 +83,17 @@ angular.module("AvatarCheck.saveDeliveredFailedInfo",['ngRoute', 'AvatarCheck.ht
$scope
.
queryDeliveredFailedByRegisterDate
=
function
()
{
$scope
.
queryDeliveredFailedByRegisterDate
=
function
()
{
var
date
=
$
(
"#datepicker"
).
val
();
var
date
=
$
(
"#datepicker"
).
val
();
var
date1
=
$
(
"#datepicker1"
).
val
();
var
date1
=
$
(
"#datepicker1"
).
val
();
if
(
angular
.
isUndefined
(
$scope
.
idCard
)){
$scope
.
idCard
=
''
;
}
if
(
date
==
''
){
if
(
date
==
''
){
date
=
$scope
.
choseDate
;
date
=
$scope
.
choseDate
;
}
}
if
(
date1
==
''
){
if
(
date1
==
''
){
date1
=
$scope
.
choseDate
;
date1
=
$scope
.
choseDate
;
}
}
console
.
log
(
date
,
date1
);
console
.
log
(
date
,
date1
,
$scope
.
idCard
);
HttpService
.
queryDeliveredFailedByRegisterDate
(
date
,
date1
,
function
(
data
){
HttpService
.
queryDeliveredFailedByRegisterDate
(
date
,
date1
,
$scope
.
idCard
,
function
(
data
){
$scope
.
deliveredFailedByRegisterDate
=
data
;
$scope
.
deliveredFailedByRegisterDate
=
data
;
console
.
log
(
$scope
.
deliveredFailedByRegisterDate
)
console
.
log
(
$scope
.
deliveredFailedByRegisterDate
)
})
})
...
...
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