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
1c2a34b2
Commit
1c2a34b2
authored
Mar 03, 2019
by
liboyang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
更新页面
parent
2ef584ff
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
221 additions
and
200 deletions
+221
-200
service.js
src/main/resources/static/js/service.js
+58
-1
analysisLog.html
src/main/resources/static/views/analysisLog/analysisLog.html
+17
-38
analysisLog.js
src/main/resources/static/views/analysisLog/analysisLog.js
+6
-0
cardProdUpdate.html
...resources/static/views/cardProdUpdate/cardProdUpdate.html
+16
-47
cardProdUpdate.js
...n/resources/static/views/cardProdUpdate/cardProdUpdate.js
+10
-0
excelAndSearch.html
...resources/static/views/excelAndSearch/excelAndSearch.html
+10
-38
excelAndSearch.js
...n/resources/static/views/excelAndSearch/excelAndSearch.js
+12
-1
searchCard.html
src/main/resources/static/views/searchCard/searchCard.html
+74
-36
xmlAndSearch.html
...ain/resources/static/views/xmlAndSearch/xmlAndSearch.html
+10
-39
xmlAndSearch.js
src/main/resources/static/views/xmlAndSearch/xmlAndSearch.js
+8
-0
No files found.
src/main/resources/static/js/service.js
View file @
1c2a34b2
...
@@ -153,7 +153,7 @@ angular.module('AvatarCheck.http', ['ngDialog', 'LocalStorageModule'])
...
@@ -153,7 +153,7 @@ angular.module('AvatarCheck.http', ['ngDialog', 'LocalStorageModule'])
success
(
response
.
data
)
success
(
response
.
data
)
})
})
},
},
uploadExcelFile
:
function
(
fd
,
success
){
uploadExcelFile
:
function
(
startDate
,
endDate
,
fd
,
success
){
$http
({
$http
({
method
:
'POST'
,
method
:
'POST'
,
url
:
"../ReadExcel/ReadPersonPost"
,
url
:
"../ReadExcel/ReadPersonPost"
,
...
@@ -172,6 +172,62 @@ angular.module('AvatarCheck.http', ['ngDialog', 'LocalStorageModule'])
...
@@ -172,6 +172,62 @@ angular.module('AvatarCheck.http', ['ngDialog', 'LocalStorageModule'])
success
(
response
.
data
)
success
(
response
.
data
)
})
})
},
selectXmlPackage
:
function
(
date
,
state
,
success
){
$http
({
method
:
'GET'
,
url
:
"../selectXMLApi/selectXml"
+
urlTimeStamp
(),
params
:{
date
:
date
,
state
:
state
}
}).
then
(
function
successCallback
(
response
)
{
success
(
response
.
data
)
})
},
selectPostPackage
:
function
(
fileName
,
state
,
success
){
$http
({
method
:
'GET'
,
url
:
"../selectExcelApi/selectExcel"
+
urlTimeStamp
(),
params
:{
fileName
:
fileName
,
state
:
state
}
}).
then
(
function
successCallback
(
response
)
{
success
(
response
.
data
)
})
},
selectXmlData
:
function
(
uploadNo
,
idCard
,
name
,
packageNo
,
importDate
,
typeCode
,
packageType
,
orderStartDate
,
orderEndDate
,
success
){
$http
({
method
:
'GET'
,
url
:
"../selectDetailedInformation/selectDetailedInfo"
+
urlTimeStamp
(),
params
:{
uploadNo
:
uploadNo
,
idCard
:
idCard
,
name
:
name
,
packageNo
:
packageNo
,
readDate
:
importDate
,
cardType
:
typeCode
,
packageType
:
packageType
,
startDate
:
orderStartDate
,
endDate
:
orderEndDate
}
}).
then
(
function
successCallback
(
response
)
{
success
(
response
.
data
)
})
},
selectAnalyseLog
:
function
(
oldPackageName
,
date
,
success
){
$http
({
method
:
'GET'
,
url
:
"../ParsingLogApi/selectParsingLog"
+
urlTimeStamp
(),
params
:{
date
:
date
,
oldPackageData
:
oldPackageName
}
}).
then
(
function
successCallback
(
response
)
{
success
(
response
.
data
)
})
}
}
}
}
});
});
\ No newline at end of file
src/main/resources/static/views/analysisLog/analysisLog.html
View file @
1c2a34b2
...
@@ -35,9 +35,9 @@
...
@@ -35,9 +35,9 @@
<div
class=
"box-primary"
style=
"padding: 15px;padding-top: 0;"
>
<div
class=
"box-primary"
style=
"padding: 15px;padding-top: 0;"
>
<table
class=
"table table-bordered"
style=
"margin-bottom: 0;"
>
<table
class=
"table table-bordered"
style=
"margin-bottom: 0;"
>
<tr>
<tr>
<td>
原
始包数据
:
</td>
<td>
原
包名
:
</td>
<td>
<td>
<input
type=
"text"
class=
"form-control"
placeholder=
"原
始包数据
"
/>
<input
type=
"text"
class=
"form-control"
placeholder=
"原
包名"
ng-model=
"oldPackageName
"
/>
</td>
</td>
<td>
<td>
解析时间
解析时间
...
@@ -51,16 +51,18 @@
...
@@ -51,16 +51,18 @@
</div>
</div>
</td>
</td>
<td>
<td>
<button
class=
"btn btn-primary"
>
查询
</button>
<button
class=
"btn btn-primary"
ng-click=
"getAnalyseLog()"
>
查询
</button>
</td>
</td>
</tr>
</tr>
</table>
</table>
<table
class=
"table table-bordered table-hover postTable"
>
<table
class=
"table table-bordered table-hover postTable"
ng-if=
"analyseLog"
>
<thead>
<thead>
<tr>
<tr>
<th>
NO.
</th>
<th>
NO.
</th>
<th>
原数据包名
</th>
<th>
原数据包名
</th>
<th>
记录数
</th>
<th>
记录数
</th>
<th>
订单起始日期
</th>
<th>
订单截止日期
</th>
<th>
格口文件名
</th>
<th>
格口文件名
</th>
<th>
解析时间
</th>
<th>
解析时间
</th>
<th>
普通证
</th>
<th>
普通证
</th>
...
@@ -68,44 +70,21 @@
...
@@ -68,44 +70,21 @@
</tr>
</tr>
</thead>
</thead>
<tbody>
<tbody>
<tr>
<tr
ng-repeat=
"item in analyseLog"
>
<td>
1
</td>
<td>
{{$index+1}}
</td>
<td>
123420190302001
</td>
<td>
{{item.oldPackageName}}
</td>
<td>
300
</td>
<td>
{{item.count}}
</td>
<td>
格口信息.xls
</td>
<td>
{{item.recordNumber}}
</td>
<td>
20190302
</td>
<td>
{{item.countyNo}}
</td>
<td>
200
</td>
<td>
{{item.fileName}}
</td>
<td>
150
</td>
<td>
{{item.parsingDate}}
</td>
</tr>
<td>
{{item.commonCardCount}}
</td>
<tr>
<td>
{{item.postCardCount}}
</td>
<td>
2
</td>
<td>
123420190302002
</td>
<td>
300
</td>
<td>
格口信息.xls
</td>
<td>
20190301
</td>
<td>
50
</td>
<td>
250
</td>
</tr>
<tr
ng-repeat=
"item in postMsgDetail"
>
<td>
<input
ng-if=
"$index==0"
type=
"radio"
name=
"r1"
class=
"minimal"
value=
"{{item.id}}"
ng-click=
"changeIndex($index)"
checked=
"checked"
>
<input
ng-if=
"$index!=0"
type=
"radio"
name=
"r1"
class=
"minimal"
value=
"{{item.id}}"
ng-click=
"changeIndex($index)"
>
</td>
<td>
{{item.id}}
</td>
<td>
{{item.ddh}}
</td>
<td>
{{item.yjh}}
</td>
<td>
{{item.fxyjh}}
</td>
<td>
{{item.sbsll}}
</td>
<td>
{{item.sjrxm}}
</td>
<td>
{{item.sjrlxfs}}
</td>
<td>
{{item.sjrdz}}
</td>
<td>
{{item.sqrxm}}
</td>
<td>
{{item.printTime | date:'yyyy-MM-dd hh:mm:ss'}}
</td>
</tr>
</tr>
</tbody>
</tbody>
</table>
</table>
<div
style=
"padding-left: 27%;"
>
<div
style=
"padding-left: 27%;"
ng-if=
"analyseLog"
>
<tm-pagination
conf=
"paginationConf"
class=
"ul"
></tm-pagination>
<tm-pagination
conf=
"paginationConf"
class=
"ul"
></tm-pagination>
</div>
</div>
</div>
</div>
...
...
src/main/resources/static/views/analysisLog/analysisLog.js
View file @
1c2a34b2
...
@@ -30,6 +30,12 @@ angular.module('AvatarCheck.analysisLog', ['ngRoute', 'AvatarCheck.http', 'tm.pa
...
@@ -30,6 +30,12 @@ angular.module('AvatarCheck.analysisLog', ['ngRoute', 'AvatarCheck.http', 'tm.pa
};
};
$scope
.
paginationConf
.
totalItems
=
50
;
$scope
.
paginationConf
.
totalItems
=
50
;
$scope
.
getAnalyseLog
=
function
(){
HttpService
.
selectAnalyseLog
(
$scope
.
oldPackageName
,
$
(
"#datepicker"
).
val
(),
function
(
data
){
$scope
.
analyseLog
=
data
;
console
.
log
(
$scope
.
analyseLog
)
})
}
});
});
src/main/resources/static/views/cardProdUpdate/cardProdUpdate.html
View file @
1c2a34b2
...
@@ -38,15 +38,15 @@
...
@@ -38,15 +38,15 @@
<table
class=
"table table-bordered"
style=
"margin-bottom: 0;"
>
<table
class=
"table table-bordered"
style=
"margin-bottom: 0;"
>
<tr>
<tr>
<td>
上传受理号:
</td>
<td>
上传受理号:
</td>
<td><input
type=
"text"
class=
"form-control"
ng-model=
"
applicantName
"
placeholder=
"上传受理号"
></td>
<td><input
type=
"text"
class=
"form-control"
ng-model=
"
uploadNo
"
placeholder=
"上传受理号"
></td>
<td>
身份证号:
</td>
<td>
身份证号:
</td>
<td><input
type=
"text"
class=
"form-control"
ng-model=
"
orderNo
"
placeholder=
"身份证号"
></td>
<td><input
type=
"text"
class=
"form-control"
ng-model=
"
idCard
"
placeholder=
"身份证号"
></td>
<td>
姓名:
</td>
<td>
姓名:
</td>
<td><input
type=
"text"
class=
"form-control"
ng-model=
"n
umber
"
placeholder=
"姓名"
></td>
<td><input
type=
"text"
class=
"form-control"
ng-model=
"n
ame
"
placeholder=
"姓名"
></td>
</tr>
</tr>
<tr>
<tr>
<td>
包号:
</td>
<td>
包号:
</td>
<td><input
type=
"text"
class=
"form-control"
ng-model=
"
number
"
placeholder=
"包号"
></td>
<td><input
type=
"text"
class=
"form-control"
ng-model=
"
packageNo
"
placeholder=
"包号"
></td>
<td>
导入日期:
</td>
<td>
导入日期:
</td>
<td>
<td>
<div
class=
"input-group date"
>
<div
class=
"input-group date"
>
...
@@ -96,14 +96,14 @@
...
@@ -96,14 +96,14 @@
</table>
</table>
</div>
</div>
<div
class=
"box-footer"
style=
"text-align: right;padding-bottom: 0;"
>
<div
class=
"box-footer"
style=
"text-align: right;padding-bottom: 0;"
>
<button
class=
"btn btn-primary"
ng-click=
"doQuery()"
>
查询
</button>
<button
class=
"btn btn-primary"
ng-click=
"do
Xml
Query()"
>
查询
</button>
<button
type=
"submit"
class=
"btn btn-danger"
ng-click=
"downloadXml()"
>
删除
</button>
<button
type=
"submit"
class=
"btn btn-danger"
ng-click=
"downloadXml()"
>
删除
</button>
</div>
</div>
</div>
</div>
<div
class=
"box box-default"
>
<div
class=
"box box-default"
>
<strong
class=
"box-header"
>
查询结果
</strong>
<strong
class=
"box-header"
>
查询结果
</strong>
<div
class=
"box-info"
style=
"padding: 10px;"
>
<div
class=
"box-info"
style=
"padding: 10px;"
>
<table
class=
"table table-bordered table-hover"
>
<table
class=
"table table-bordered table-hover"
ng-if=
"xmlDatas"
>
<thead>
<thead>
<tr>
<tr>
<th>
NO.
</th>
<th>
NO.
</th>
...
@@ -117,50 +117,19 @@
...
@@ -117,50 +117,19 @@
</tr>
</tr>
</thead>
</thead>
<tbody>
<tbody>
<tr>
<tr
ng-repeat=
"item in xmlDatas"
>
<td>
1
</td>
<td>
{{$index+1}}
</td>
<td>
11020
</td>
<td>
{{item.countyNo}}
</td>
<td>
11020180227001
</td>
<td>
{{item.oldPackageNo}}
</td>
<td>
80
</td>
<td>
{{item.recordNumber}}
</td>
<td>
30
</td>
<td>
{{item.postNumber}}
</td>
<td></td>
<td>
{{item.unpackedNumber}}
</td>
<td>
20190228
</td>
<td>
{{item.readDate}}
</td>
<td>
20190228
</td>
<td>
{{item.analysisDate}}
</td>
</tr>
<tr>
<td>
2
</td>
<td>
11020
</td>
<td>
11020190228002
</td>
<td>
80
</td>
<td>
30
</td>
<td></td>
<td>
20190301
</td>
<td>
20190301
</td>
</tr>
<tr>
<td>
3
</td>
<td>
11020
</td>
<td>
11020190228003
</td>
<td>
80
</td>
<td></td>
<td>
80
</td>
<td>
20190301
</td>
<td></td>
</tr>
<tr
ng-repeat=
"item in postData | orderBy:item.id"
ng-click=
"showDetail(item)"
style=
"cursor: pointer;"
>
<td>
{{item.id}}
</td>
<td>
{{item.ddh}}
</td>
<td>
{{item.yjh}}
</td>
<td>
{{item.fxyjh}}
</td>
<td>
{{item.sbsll}}
</td>
<td>
{{item.sqrxm}}
</td>
<td>
{{item.sjrlxfs}}
</td>
<td>
{{item.sjrdz}}
</td>
<td>
{{item.printTime | date:"yyyy-MM-dd hh:mm:ss"}}
</td>
</tr>
</tr>
</tbody>
</tbody>
</table>
</table>
<div
style=
"padding-left: 27%;"
>
<div
style=
"padding-left: 27%;"
ng-if=
"xmlDatas"
>
<tm-pagination
conf=
"paginationConf"
class=
"ul"
></tm-pagination>
<tm-pagination
conf=
"paginationConf"
class=
"ul"
></tm-pagination>
</div>
</div>
<h3
ng-if=
"postData.length==0"
>
暂无记录。
</h3>
<h3
ng-if=
"postData.length==0"
>
暂无记录。
</h3>
...
...
src/main/resources/static/views/cardProdUpdate/cardProdUpdate.js
View file @
1c2a34b2
...
@@ -53,4 +53,13 @@ angular.module('AvatarCheck.cardProdUpdate', ['ngRoute', 'AvatarCheck.http'])
...
@@ -53,4 +53,13 @@ angular.module('AvatarCheck.cardProdUpdate', ['ngRoute', 'AvatarCheck.http'])
};
};
$scope
.
paginationConf
.
totalItems
=
50
;
$scope
.
paginationConf
.
totalItems
=
50
;
$scope
.
doXmlQuery
=
function
()
{
console
.
log
(
$scope
.
uploadNo
,
$scope
.
idCard
,
$scope
.
name
,
$scope
.
packageNo
,
$
(
"#datepicker1"
).
val
(),
$scope
.
typeCode
,
$scope
.
packageType
,
$
(
"#datepicker2"
).
val
(),
$
(
"#datepicker3"
).
val
())
HttpService
.
selectXmlData
(
$scope
.
applicantName
,
$scope
.
orderNo
,
$scope
.
name
,
$scope
.
packageNo
,
$
(
"#datepicker1"
).
val
(),
$scope
.
typeCode
,
$scope
.
packageType
,
$
(
"#datepicker2"
).
val
(),
$
(
"#datepicker3"
).
val
(),
function
(
data
)
{
$scope
.
xmlDatas
=
data
;
console
.
log
(
$scope
.
xmlDatas
)
})
}
});
});
\ No newline at end of file
src/main/resources/static/views/excelAndSearch/excelAndSearch.html
View file @
1c2a34b2
...
@@ -89,11 +89,11 @@
...
@@ -89,11 +89,11 @@
</select>
</select>
</td>
</td>
<td>
<td>
<button
class=
"btn btn-primary"
>
查询
</button>
<button
class=
"btn btn-primary"
ng-click=
"getPostPackage()"
>
查询
</button>
</td>
</td>
</tr>
</tr>
</table>
</table>
<table
class=
"table table-bordered table-hover postTable"
>
<table
class=
"table table-bordered table-hover postTable"
ng-if=
"postPackageData"
>
<thead>
<thead>
<tr>
<tr>
<th>
NO.
</th>
<th>
NO.
</th>
...
@@ -106,48 +106,20 @@
...
@@ -106,48 +106,20 @@
</tr>
</tr>
</thead>
</thead>
<tbody>
<tbody>
<tr>
<tr
ng-repeat=
"item in postPackageData"
>
<td>
1
</td>
<td>
{{$index+1}}
</td>
<td>
20190221
</td>
<td>
{{item.beginDate}}
</td>
<td>
20190228
</td>
<td>
{{item.deadline}}
</td>
<td>
格口导出.excel
</td>
<td>
{{item.fileName}}
</td>
<td>
20190227
</td>
<td>
{{item.uploadDate}}
</td>
<td>
未解析
</td>
<td>
{{item.state}}
</td>
<td>
<button
class=
"btn btn-danger"
>
删除
</button>
</td>
</tr>
<tr>
<td>
2
</td>
<td>
20190221
</td>
<td>
20190228
</td>
<td>
格口导出.excel
</td>
<td>
20190227
</td>
<td>
已解析
</td>
<td>
<td>
<button
class=
"btn btn-danger"
>
删除
</button>
<button
class=
"btn btn-danger"
>
删除
</button>
</td>
</td>
</tr>
</tr>
<tr
ng-repeat=
"item in postMsgDetail"
>
<td>
<input
ng-if=
"$index==0"
type=
"radio"
name=
"r1"
class=
"minimal"
value=
"{{item.id}}"
ng-click=
"changeIndex($index)"
checked=
"checked"
>
<input
ng-if=
"$index!=0"
type=
"radio"
name=
"r1"
class=
"minimal"
value=
"{{item.id}}"
ng-click=
"changeIndex($index)"
>
</td>
<td>
{{item.id}}
</td>
<td>
{{item.ddh}}
</td>
<td>
{{item.yjh}}
</td>
<td>
{{item.fxyjh}}
</td>
<td>
{{item.sbsll}}
</td>
<td>
{{item.sjrxm}}
</td>
<td>
{{item.sjrlxfs}}
</td>
<td>
{{item.sjrdz}}
</td>
<td>
{{item.sqrxm}}
</td>
<td>
{{item.printTime | date:'yyyy-MM-dd hh:mm:ss'}}
</td>
</tr>
</tbody>
</tbody>
</table>
</table>
<div
style=
"padding-left: 27%;"
>
<div
style=
"padding-left: 27%;"
ng-if=
"postPackageData"
>
<tm-pagination
conf=
"paginationConf"
class=
"ul"
></tm-pagination>
<tm-pagination
conf=
"paginationConf"
class=
"ul"
></tm-pagination>
</div>
</div>
<h3
ng-if=
"postMsgDetail.length==0"
>
暂无记录。
</h3>
<h3
ng-if=
"postMsgDetail.length==0"
>
暂无记录。
</h3>
...
...
src/main/resources/static/views/excelAndSearch/excelAndSearch.js
View file @
1c2a34b2
...
@@ -48,6 +48,8 @@ angular.module('AvatarCheck.excelAndSearch', ['ngRoute', 'AvatarCheck.http', 'tm
...
@@ -48,6 +48,8 @@ angular.module('AvatarCheck.excelAndSearch', ['ngRoute', 'AvatarCheck.http', 'tm
$scope
.
uploadExcel
=
function
()
{
$scope
.
uploadExcel
=
function
()
{
var
fd
=
new
FormData
();
var
fd
=
new
FormData
();
var
files
=
document
.
querySelector
(
'input#id_file_photo_for_check'
).
files
;
var
files
=
document
.
querySelector
(
'input#id_file_photo_for_check'
).
files
;
fd
.
append
(
"formStartTime"
,
$
(
"#datepicker1"
).
val
());
fd
.
append
(
"formDeadline"
,
$
(
"#datepicker2"
).
val
());
for
(
var
i
in
files
){
for
(
var
i
in
files
){
fd
.
append
(
'file'
,
files
[
i
]);
fd
.
append
(
'file'
,
files
[
i
]);
}
}
...
@@ -56,11 +58,19 @@ angular.module('AvatarCheck.excelAndSearch', ['ngRoute', 'AvatarCheck.http', 'tm
...
@@ -56,11 +58,19 @@ angular.module('AvatarCheck.excelAndSearch', ['ngRoute', 'AvatarCheck.http', 'tm
MessageService
.
showAlert
(
"请选择上传的文件..."
)
MessageService
.
showAlert
(
"请选择上传的文件..."
)
}
else
{
}
else
{
fd
.
append
(
'file'
,
files
);
fd
.
append
(
'file'
,
files
);
HttpService
.
uploadExcelFile
(
fd
,
function
(
data
)
{
HttpService
.
uploadExcelFile
(
$
(
"#datepicker1"
).
val
(),
$
(
"#datepicker2"
).
val
(),
fd
,
function
(
data
)
{
console
.
log
(
"导入项目的返回结果:"
,
data
)
console
.
log
(
"导入项目的返回结果:"
,
data
)
})
})
}
}
}
}
$scope
.
getPostPackage
=
function
(){
console
.
log
(
$scope
.
fileName
,
$scope
.
state
)
HttpService
.
selectPostPackage
(
$scope
.
fileName
,
$scope
.
state
,
function
(
data
){
$scope
.
postPackageData
=
data
;
console
.
log
(
$scope
.
postPackageData
)
})
}
});
});
\ No newline at end of file
src/main/resources/static/views/searchCard/searchCard.html
View file @
1c2a34b2
<section
class=
"content-header"
style=
"padding-top: 1px;"
>
<section
class=
"content-header"
style=
"padding-top: 1px;"
>
<h4>
<h4>
<div
style=
"text-align: left;cursor:pointer;"
><a
ng-click=
"goBack()"
><i
class=
"fa fa-backward"
></i>
完成
返回
</a></div>
<div
style=
"text-align: left;cursor:pointer;"
><a
ng-click=
"goBack()"
><i
class=
"fa fa-backward"
></i>
返回
</a></div>
</h4>
</h4>
</section>
</section>
<div
style=
"padding: 15px;"
>
<div
style=
"padding: 15px;"
>
...
@@ -9,46 +9,83 @@
...
@@ -9,46 +9,83 @@
查询结果
查询结果
</strong>
</strong>
<div
class=
"box-info"
style=
"padding: 10px;"
>
<div
class=
"box-info"
style=
"padding: 10px;"
>
<div
class=
"panel panel-info"
>
<div
class=
"panel-heading"
>
<h3
class=
"panel-title"
>
任务单
</h3>
</div>
<div
class=
"panel-body"
>
<table
class=
"table table-hover table-bordered"
>
<thead>
<th>
任务单流水号
</th>
<th>
区县
</th>
<th>
制证类型
</th>
<th>
日期
</th>
<th>
数据核验
</th>
<th>
膜打印
</th>
<th>
预定位
</th>
<th>
分拣
</th>
<th>
质检
</th>
<th>
仓库
</th>
</thead>
<tbody>
<tr>
<td>
20190228001
</td>
<td>
海淀区
</td>
<td>
普通证
</td>
<td>
20190221
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</div>
</div>
<div
class=
"panel panel-info"
>
<div
class=
"panel panel-info"
>
<div
class=
"panel-heading"
>
<div
class=
"panel-heading"
>
<h3
class=
"panel-title"
>
<h3
class=
"panel-title"
>
证件信息
受理库
</h3>
</h3>
</div>
</div>
<div
class=
"panel-body"
style=
"padding-bottom: 0;"
>
<div
class=
"panel-body"
style=
"padding-bottom: 0;"
>
<table
class=
"table table-hover"
>
<table
class=
"table table-hover
table-bordered
"
>
<thead>
<thead>
<tr>
<tr>
<th>
地区
</th>
<th>
受理号
</th>
<th>
受理号
</th>
<th>
区县
</th>
<th>
姓名
</th>
<th>
姓名
</th>
<th>
制证类型
</th>
<th>
制证类型
</th>
<th>
身份证号
</th>
<th>
身份证号
</th>
<th>
性别
</th>
<th>
性别
</th>
<th>
出生日期
</th>
<th>
签发机关
</th>
<th>
签发机关
</th>
<th>
起始有效期
</th>
<th>
起始有效期
</th>
<th>
终止有效期
</th>
<th>
终止有效期
</th>
<th>
证件状态
</th>
<th>
上报受理单位
</th>
<th>
上报受理单位
</th>
<th>
证件状态
</th>
<th>
数据状态
</th>
<th>
时间
</th>
</tr>
</tr>
</thead>
</thead>
<tbody>
<tbody>
<tr>
<tr>
<td>
海淀区
</td>
<td>
02213546871
</td>
<td>
02213546871
</td>
<td>
海淀区
</td>
<td>
伯阳
</td>
<td>
伯阳
</td>
<td>
普通证
</td>
<td>
普通证
</td>
<td>
130133199405250011
</td>
<td>
130133199405250011
</td>
<td>
男
</td>
<td>
男
</td>
<td>
19940525
</td>
<td>
赵县公安局
</td>
<td>
赵县公安局
</td>
<td>
20090228
</td>
<td>
20090228
</td>
<td>
20190228
</td>
<td>
20190228
</td>
<td>
已出库
</td>
<td>
赵县派出所
</td>
<td>
赵县派出所
</td>
<td>
快证
</td>
<td>
快证
</td>
<td>
2019-03-03 13:58:30
</td>
</tr>
</tr>
</tbody>
</tbody>
</table>
</table>
...
@@ -62,47 +99,48 @@
...
@@ -62,47 +99,48 @@
<div
class=
"panel panel-info"
>
<div
class=
"panel panel-info"
>
<div
class=
"panel-heading"
>
<div
class=
"panel-heading"
>
<h3
class=
"panel-title"
>
<h3
class=
"panel-title"
>
循环单信息
制证库
</h3>
</h3>
</div>
</div>
<div
class=
"panel-body"
>
<div
class=
"panel-body"
>
<table
class=
"table table-hover
"
>
<table
class=
"table table-hover table-bordered
"
>
<thead>
<thead>
<th>
编号
</th>
<tr>
<th>
地区
</th>
<th>
受理号
</th>
<th>
区县
</th>
<th>
姓名
</th>
<th>
制证类型
</th>
<th>
制证类型
</th>
<th>
日期
</th>
<th>
身份证号
</th>
<th>
工序
</th>
<th>
性别
</th>
<th>
操作时间
</th>
<th>
签发机关
</th>
<th>
机器号
</th>
<th>
起始有效期
</th>
<th>
出库时间
</th>
<th>
终止有效期
</th>
<th>
入库时间
</th>
<th>
上报受理单位
</th>
<th>
数据状态
</th>
<th>
时间
</th>
</tr>
</thead>
</thead>
<tbody>
<tbody>
<tr>
<tr>
<td>
2019022800
1
</td>
<td>
0221354687
1
</td>
<td>
海淀区
</td>
<td>
海淀区
</td>
<td>
伯阳
</td>
<td>
普通证
</td>
<td>
普通证
</td>
<td>
20190221
</td>
<td>
130133199405250011
</td>
<td>
仓库
</td>
<td>
男
</td>
<td>
赵县公安局
</td>
<td>
20090228
</td>
<td>
20190228
</td>
<td>
20190228
</td>
<td>
1
</td>
<td>
赵县派出所
</td>
<td>
20190226
</td>
<td>
快证
</td>
<td>
2019
0227
</td>
<td>
2019
-03-03 13:58:30
</td>
</tr>
</tr>
</tbody>
</tbody>
</table>
</table>
</div>
</div>
</div>
<div
style=
"text-align:right;padding: 10px;padding-top: 0;"
>
<button
class=
"btn btn-info"
>
添加快证
</button>
<div
class=
"panel panel-info"
>
<button
class=
"btn btn-danger"
>
退证
</button>
<div
class=
"panel-heading"
>
<h3
class=
"panel-title"
>
组号信息
</h3>
</div>
<div
class=
"panel-body"
>
</div>
</div>
</div>
</div>
...
...
src/main/resources/static/views/xmlAndSearch/xmlAndSearch.html
View file @
1c2a34b2
...
@@ -72,11 +72,11 @@
...
@@ -72,11 +72,11 @@
</select>
</select>
</td>
</td>
<td>
<td>
<button
class=
"btn btn-primary"
>
查询
</button>
<button
class=
"btn btn-primary"
ng-click=
"getXmlPackage()"
>
查询
</button>
</td>
</td>
</tr>
</tr>
</table>
</table>
<table
class=
"table table-bordered table-hover postTable"
>
<table
class=
"table table-bordered table-hover postTable"
ng-if=
"xmlPackageData"
>
<thead>
<thead>
<tr>
<tr>
<th>
NO.
</th>
<th>
NO.
</th>
...
@@ -89,50 +89,21 @@
...
@@ -89,50 +89,21 @@
</tr>
</tr>
</thead>
</thead>
<tbody>
<tbody>
<tr>
<tr
ng-repeat=
"item in xmlPackageData"
>
<td>
1
</td>
<td>
{{$index}}
</td>
<td>
20190301
</td>
<td>
{{item.uploadDate}}
</td>
<td>
300
</td>
<td>
{{item.packageCount}}
</td>
<td>
24000
</td>
<td>
{{item.cardCount}}
</td>
<td></td>
<td>
{{item.commonCardCount}}
</td>
<td></td>
<td>
{{item.postCardCount}}
</td>
<td>
<td>
<button
class=
"btn btn-primary"
ng-click=
"analysis()"
>
解析
</button>
<button
class=
"btn btn-primary"
ng-click=
"analysis()"
>
解析
</button>
<button
class=
"btn btn-danger"
>
删除
</button>
<button
class=
"btn btn-danger"
>
删除
</button>
</td>
</td>
</tr>
</tr>
<tr>
<td>
2
</td>
<td>
20190228
</td>
<td>
100
</td>
<td>
8000
</td>
<td>
8000
</td>
<td>
0
</td>
<td>
<button
class=
"btn btn-primary"
ng-click=
"analysis()"
>
解析
</button>
<button
class=
"btn btn-danger"
>
删除
</button>
</td>
</tr>
<tr
ng-repeat=
"item in postMsgDetail"
>
<td>
<input
ng-if=
"$index==0"
type=
"radio"
name=
"r1"
class=
"minimal"
value=
"{{item.id}}"
ng-click=
"changeIndex($index)"
checked=
"checked"
>
<input
ng-if=
"$index!=0"
type=
"radio"
name=
"r1"
class=
"minimal"
value=
"{{item.id}}"
ng-click=
"changeIndex($index)"
>
</td>
<td>
{{item.id}}
</td>
<td>
{{item.ddh}}
</td>
<td>
{{item.yjh}}
</td>
<td>
{{item.fxyjh}}
</td>
<td>
{{item.sbsll}}
</td>
<td>
{{item.sjrxm}}
</td>
<td>
{{item.sjrlxfs}}
</td>
<td>
{{item.sjrdz}}
</td>
<td>
{{item.sqrxm}}
</td>
<td>
{{item.printTime | date:'yyyy-MM-dd hh:mm:ss'}}
</td>
</tr>
</tbody>
</tbody>
</table>
</table>
<div
style=
"padding-left: 27%;"
>
<div
style=
"padding-left: 27%;"
ng-if=
"xmlPackageData"
>
<tm-pagination
conf=
"paginationConf"
class=
"ul"
></tm-pagination>
<tm-pagination
conf=
"paginationConf"
class=
"ul"
></tm-pagination>
</div>
</div>
<h3
ng-if=
"postMsgDetail.length==0"
>
暂无记录。
</h3>
<h3
ng-if=
"postMsgDetail.length==0"
>
暂无记录。
</h3>
...
...
src/main/resources/static/views/xmlAndSearch/xmlAndSearch.js
View file @
1c2a34b2
...
@@ -65,5 +65,13 @@ angular.module('AvatarCheck.xmlAndSearch', ['ngRoute', 'AvatarCheck.http', 'tm.p
...
@@ -65,5 +65,13 @@ angular.module('AvatarCheck.xmlAndSearch', ['ngRoute', 'AvatarCheck.http', 'tm.p
}
}
}
}
$scope
.
getXmlPackage
=
function
(){
console
.
log
(
$
(
"#datepicker"
).
val
(),
$scope
.
state
)
HttpService
.
selectXmlPackage
(
$
(
"#datepicker"
).
val
(),
$scope
.
state
,
function
(
data
){
$scope
.
xmlPackageData
=
data
;
console
.
log
(
$scope
.
xmlPackageData
)
})
}
});
});
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