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
383d640a
Commit
383d640a
authored
Mar 12, 2019
by
suichenguang
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/dev' into dev
parents
fc6acb0a
89f53904
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
51 additions
and
1015 deletions
+51
-1015
service.js
src/main/resources/static/js/service.js
+11
-0
cardProdUpdate.html
...resources/static/views/cardProdUpdate/cardProdUpdate.html
+5
-5
cardProdUpdate.js
...n/resources/static/views/cardProdUpdate/cardProdUpdate.js
+9
-7
tagPrint.html
src/main/resources/static/views/tagPrint/tagPrint.html
+16
-14
tagPrint.js
src/main/resources/static/views/tagPrint/tagPrint.js
+10
-989
No files found.
src/main/resources/static/js/service.js
View file @
383d640a
...
@@ -308,6 +308,17 @@ angular.module('AvatarCheck.http', ['ngDialog', 'LocalStorageModule'])
...
@@ -308,6 +308,17 @@ angular.module('AvatarCheck.http', ['ngDialog', 'LocalStorageModule'])
success
(
response
.
data
)
success
(
response
.
data
)
})
})
},
},
getPoliceCardsList
:
function
(
id
,
success
)
{
$http
({
method
:
'GET'
,
url
:
"../ReceiptApi/selectDetailList"
+
urlTimeStamp
(),
params
:{
receiptId
:
id
}
}).
then
(
function
successCallback
(
response
)
{
success
(
response
.
data
)
})
},
selectAnalyseLogCount
:
function
(
oldPackageName
,
date
,
success
)
{
selectAnalyseLogCount
:
function
(
oldPackageName
,
date
,
success
)
{
if
(
angular
.
isUndefined
(
oldPackageName
)){
if
(
angular
.
isUndefined
(
oldPackageName
)){
oldPackageName
=
''
;
oldPackageName
=
''
;
...
...
src/main/resources/static/views/cardProdUpdate/cardProdUpdate.html
View file @
383d640a
...
@@ -81,7 +81,7 @@
...
@@ -81,7 +81,7 @@
<div
class=
"box box-default"
>
<div
class=
"box box-default"
>
<strong
class=
"box-header with-border"
>
查询结果
</strong>
<strong
class=
"box-header with-border"
>
查询结果
</strong>
<div
class=
"box-info"
style=
"padding: 10px;"
>
<div
class=
"box-info"
style=
"padding: 10px;"
>
<table
class=
"table table-bordered table-hover"
ng-if=
"xmlDatas"
>
<table
class=
"table table-bordered table-hover"
ng-if=
"xmlDatas
.length>0
"
>
<thead>
<thead>
<tr>
<tr>
<th>
NO.
</th>
<th>
NO.
</th>
...
@@ -103,10 +103,10 @@
...
@@ -103,10 +103,10 @@
</tr>
</tr>
</tbody>
</tbody>
</table>
</table>
<div
style=
"padding-left: 27%;"
ng-if=
"xmlDatas
"
>
<div
style=
"padding-left: 27%;"
ng-if=
"xmlDatas.length>0
"
>
<tm-pagination
conf=
"paginationConf"
class=
"ul"
></tm-pagination>
<tm-pagination
conf=
"paginationConf"
class=
"ul"
></tm-pagination>
</div>
</div>
<h4
ng-if=
"
postData
.length==0"
>
暂无记录。
</h4>
<h4
ng-if=
"
xmlDatas
.length==0"
>
暂无记录。
</h4>
</div>
</div>
</div>
</div>
</div>
</div>
...
...
src/main/resources/static/views/cardProdUpdate/cardProdUpdate.js
View file @
383d640a
...
@@ -51,7 +51,6 @@ angular.module('AvatarCheck.cardProdUpdate', ['ngRoute', 'AvatarCheck.http'])
...
@@ -51,7 +51,6 @@ angular.module('AvatarCheck.cardProdUpdate', ['ngRoute', 'AvatarCheck.http'])
itemsPerPage
:
10
,
itemsPerPage
:
10
,
perPageOptions
:
[
10
,
20
,
30
,
40
,
50
]
perPageOptions
:
[
10
,
20
,
30
,
40
,
50
]
};
};
$scope
.
paginationConf
.
totalItems
=
50
;
$scope
.
doXmlQuery
=
function
()
{
$scope
.
doXmlQuery
=
function
()
{
var
startDate
=
$
(
"#datepicker1"
).
val
();
var
startDate
=
$
(
"#datepicker1"
).
val
();
...
@@ -71,16 +70,18 @@ angular.module('AvatarCheck.cardProdUpdate', ['ngRoute', 'AvatarCheck.http'])
...
@@ -71,16 +70,18 @@ angular.module('AvatarCheck.cardProdUpdate', ['ngRoute', 'AvatarCheck.http'])
if
(
endDate
==
''
){
if
(
endDate
==
''
){
endDate
=
$filter
(
"date"
)(
new
Date
(),
"yyyy-MM-dd"
);
endDate
=
$filter
(
"date"
)(
new
Date
(),
"yyyy-MM-dd"
);
}
}
console
.
log
(
$scope
.
startPackageNo
,
$scope
.
endPackageNo
,
$scope
.
pcs_name
,
startDate
,
endDate
)
console
.
log
(
$scope
.
startPackageNo
,
$scope
.
endPackageNo
,
$scope
.
pcs_name
,
startDate
,
endDate
,
$scope
.
paginationConf
.
currentPage
,
$scope
.
paginationConf
.
itemsPerPage
)
HttpService
.
selectXmlDataCount
(
$scope
.
startPackageNo
,
$scope
.
endPackageNo
,
$scope
.
pcs_name
,
startDate
,
endDate
,
function
(
data
){
$scope
.
paginationConf
.
totalItems
=
data
;
console
.
log
(
$scope
.
paginationConf
.
totalItems
,
"count"
)
})
HttpService
.
selectXmlData
(
$scope
.
startPackageNo
,
$scope
.
endPackageNo
,
$scope
.
pcs_name
,
startDate
,
endDate
,
$scope
.
paginationConf
.
currentPage
,
$scope
.
paginationConf
.
itemsPerPage
,
function
(
data
)
{
HttpService
.
selectXmlData
(
$scope
.
startPackageNo
,
$scope
.
endPackageNo
,
$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
)
})
})
HttpService
.
selectXmlDataCount
(
$scope
.
startPackageNo
,
$scope
.
endPackageNo
,
$scope
.
pcs_name
,
startDate
,
endDate
,
function
(
data
){
$scope
.
paginationConf
.
totalItems
=
data
;
console
.
log
(
data
)
})
}
}
// 通过$watch currentPage和itemperPage 当他们一变化的时候,重新获取数据条目
$scope
.
$watch
(
'paginationConf.currentPage +paginationConf.itemsPerPage'
,
$scope
.
doXmlQuery
);
});
});
\ No newline at end of file
src/main/resources/static/views/tagPrint/tagPrint.html
View file @
383d640a
...
@@ -38,9 +38,9 @@
...
@@ -38,9 +38,9 @@
<div
class=
"box-header with-border"
>
<div
class=
"box-header with-border"
>
<strong
>
详情信息
</strong>
<strong
>
详情信息
</strong>
</div>
</div>
<div
class=
"box-body
no-padding
col-md-12"
>
<div
class=
"box-body col-md-12"
>
<div
class=
"col-md-5"
style=
"padding
-right: 0px;
"
>
<div
class=
"col-md-5"
style=
"padding
:0
"
>
<table
class=
"table table-bordered table-hover postTable
"
>
<table
class=
"table table-bordered table-hover postTable
"
ng-if=
"tagPrintData.length>0
"
>
<thead>
<thead>
<tr>
<tr>
<th>
NO.
</th>
<th>
NO.
</th>
...
@@ -59,14 +59,17 @@
...
@@ -59,14 +59,17 @@
<td>
{{item.POLICE_NAME}}
</td>
<td>
{{item.POLICE_NAME}}
</td>
<td>
{{item.download}}
</td>
<td>
{{item.download}}
</td>
<td>
{{item.electricCount}}
</td>
<td>
{{item.electricCount}}
</td>
<td
ng-if=
"item.STATE"
>
未复核
</td>
<td
ng-if=
"item.STATE
==0
"
>
未复核
</td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tr>
</tbody>
</tbody>
</table>
</table>
<h4
class=
"col-md-7"
ng-if=
"tagPrintData.length==0"
style=
"padding: 0;"
>
暂无数据
</h4>
</div>
</div>
<div
class=
"col-md-7"
style=
""
ng-if=
"policeCardsList
"
>
<div
class=
"col-md-7"
ng-if=
"json.policeCardsList.length>0
"
>
<table
class=
"table table-bordered"
>
<table
class=
"table table-bordered"
>
<thead>
<thead>
<tr>
<tr>
...
@@ -80,7 +83,7 @@
...
@@ -80,7 +83,7 @@
</tr>
</tr>
</thead>
</thead>
<tbody>
<tbody>
<tr
ng-repeat=
"item in policeCardsList"
>
<tr
ng-repeat=
"item in
json.
policeCardsList"
>
<td>
{{$index+1}}
</td>
<td>
{{$index+1}}
</td>
<td>
{{item.acceptNo}}
</td>
<td>
{{item.acceptNo}}
</td>
<td>
{{item.username}}
</td>
<td>
{{item.username}}
</td>
...
@@ -105,15 +108,14 @@
...
@@ -105,15 +108,14 @@
</tr>
</tr>
</tbody>
</tbody>
</table>
</table>
<div
class=
"box-footer clearfix"
style=
"border: 0;"
>
<button
class=
"btn btn-success pull-right"
style=
"margin-right: 20px;"
ng-click=
"checkSame(json.id)"
>
复核一致
</button>
<button
class=
"btn btn-info pull-right"
style=
"margin-right: 20px;"
>
打印标签
</button>
</div>
</div>
</div>
</div>
<h4
class=
"col-md-7"
ng-if=
"json.policeCardsList.length==0"
>
<div
class=
"box-footer clearfix"
>
暂无数据
<button
class=
"btn btn-success pull-right "
</h4>
style=
"margin-right: 20px;"
>
复核一致
</button>
<button
class=
"btn btn-info pull-right"
style=
"margin-right: 20px;"
>
打印标签
</button>
</div>
</div>
</div>
</div>
</div>
</div>
...
...
src/main/resources/static/views/tagPrint/tagPrint.js
View file @
383d640a
...
@@ -30,996 +30,14 @@ angular.module('AvatarCheck.tagPrint', ['ngRoute', 'AvatarCheck.http', 'tm.pagin
...
@@ -30,996 +30,14 @@ angular.module('AvatarCheck.tagPrint', ['ngRoute', 'AvatarCheck.http', 'tm.pagin
};
};
$scope
.
paginationConf
.
totalItems
=
50
;
$scope
.
paginationConf
.
totalItems
=
50
;
$scope
.
showDetail
=
function
(
index
){
$scope
.
showDetail
=
function
(
id
){
if
(
index
==
1
){
$scope
.
json
=
{
$scope
.
policeCardsList
=
[
id
:
id
{
acceptNo
:
'E000201'
,
username
:
'伯阳'
,
idCard
:
'130133199605250012'
,
qfjg
:
'成寿寺派出所'
,
isPrint
:
0
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
}
]
}
else
{
$scope
.
policeCardsList
=
[
{
acceptNo
:
'E000201'
,
username
:
'伯阳'
,
idCard
:
'130133199605250012'
,
qfjg
:
'成寿寺派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
}
,
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
}
,
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
}
,
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
}
,
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
}
,
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
}
,
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
}
,
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
}
,
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
}
,
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
}
,
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
}
,
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
}
,
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
}
,
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
}
,
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
}
,
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
}
,
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
}
,
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
}
,
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
}
,
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
}
,
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
}
,
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
}
,
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
}
,
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
}
,
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
}
,
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
}
,
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
}
,
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
}
,
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
}
,
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'陈光'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
},
{
acceptNo
:
'E000202'
,
username
:
'大海'
,
idCard
:
'130133199605250022'
,
qfjg
:
'东城派出所'
,
isPrint
:
1
,
isEwrite
:
1
}
]
}
}
HttpService
.
getPoliceCardsList
(
id
,
function
(
data
)
{
$scope
.
json
.
policeCardsList
=
data
;
console
.
log
(
$scope
.
json
)
})
}
}
var
getPoliceListDataNotChecked
=
function
()
{
var
getPoliceListDataNotChecked
=
function
()
{
...
@@ -1043,6 +61,9 @@ angular.module('AvatarCheck.tagPrint', ['ngRoute', 'AvatarCheck.http', 'tm.pagin
...
@@ -1043,6 +61,9 @@ angular.module('AvatarCheck.tagPrint', ['ngRoute', 'AvatarCheck.http', 'tm.pagin
})
})
}
}
$scope
.
checkSame
=
function
()
{
}
});
});
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