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
91dc124f
Commit
91dc124f
authored
Mar 11, 2019
by
liboyang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
EMS角色的功能完成
parent
72987709
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
78 deletions
+15
-78
TagPrintApi.java
src/main/java/com/yxproject/start/api/TagPrintApi.java
+0
-20
service.js
src/main/resources/static/js/service.js
+2
-2
receitp.js
src/main/resources/static/views/receitp/receitp.js
+11
-0
tagPrint.html
src/main/resources/static/views/tagPrint/tagPrint.html
+1
-27
tagPrint.js
src/main/resources/static/views/tagPrint/tagPrint.js
+1
-29
No files found.
src/main/java/com/yxproject/start/api/TagPrintApi.java
deleted
100644 → 0
View file @
72987709
package
com
.
yxproject
.
start
.
api
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RequestParam
;
import
org.springframework.web.bind.annotation.RestController
;
import
java.util.ArrayList
;
import
java.util.List
;
@RestController
@RequestMapping
(
"tagPrint"
)
public
class
TagPrintApi
{
@RequestMapping
(
"selectTagPrintData"
)
public
List
selectTagPrintData
(
@RequestParam
(
"idCard"
)
String
idCard
){
List
list
=
new
ArrayList
();
return
list
;
}
}
src/main/resources/static/js/service.js
View file @
91dc124f
...
...
@@ -420,9 +420,9 @@ angular.module('AvatarCheck.http', ['ngDialog', 'LocalStorageModule'])
selectTagPrintData
:
function
(
idCard
,
success
){
$http
({
method
:
'GET'
,
url
:
"../
tagPrint/selectTagPrintData
"
+
urlTimeStamp
(),
url
:
"../
ReceiptApi/createReceiptList
"
+
urlTimeStamp
(),
params
:{
id
Card
:
idCard
id
:
idCard
}
}).
then
(
function
successCallback
(
response
)
{
success
(
response
.
data
)
...
...
src/main/resources/static/views/receitp/receitp.js
View file @
91dc124f
...
...
@@ -11,6 +11,16 @@ angular.module('AvatarCheck.receitp', ['ngRoute', 'AvatarCheck.http'])
.
controller
(
'receitpCtrl'
,
function
(
$scope
,
$rootScope
,
$timeout
,
HttpService
,
ngDialog
,
MessageService
,
$filter
)
{
//Date picker
$
(
'#datepicker'
).
datetimepicker
({
minView
:
"month"
,
//选择日期后,不会再跳转去选择时分秒
language
:
'zh-CN'
,
format
:
'yyyy-mm-dd'
,
todayBtn
:
1
,
autoclose
:
1
});
$scope
.
choseDate
=
$filter
(
"date"
)(
new
Date
(),
"yyyy-MM-dd"
);
});
\ No newline at end of file
src/main/resources/static/views/tagPrint/tagPrint.html
View file @
91dc124f
<!--<style>-->
<!--.table th, .table td {-->
<!--text-align: center;-->
<!--vertical-align: middle!important;-->
<!--}-->
<!--.ul li{-->
<!--cursor: pointer;-->
<!--}-->
<!--.page-list .pagination {float:left;}-->
<!--.page-list .pagination span {cursor: pointer;}-->
<!--.page-list .pagination .separate span{cursor: default; border-top:none;border-bottom:none;}-->
<!--.page-list .pagination .separate span:hover {background: none;}-->
<!--.page-list .page-total {float:left; margin: 25px 20px;}-->
<!--.page-list .page-total input, .page-list .page-total select{height: 26px; border: 1px solid #ddd;}-->
<!--.page-list .page-total input {width: 40px; padding-left:3px;}-->
<!--.page-list .page-total select {width: 50px;}-->
<!--.page-list:after {-->
<!--display: block;-->
<!--clear: both;-->
<!--content: ""-->
<!--}-->
<!--.page-list{-->
<!--zoom: 1-->
<!--}-->
<!--</style>-->
<style>
form
input
{
border
:
0
;
...
...
@@ -37,7 +11,7 @@
}
</style>
<section
class=
"content"
>
<section
class=
"content
row
"
>
<div
class=
"col-md-12 no-padding"
style=
"margin-top:20px;"
>
<div
class=
"box box-primary "
>
<div
class=
"box-header with-border"
>
...
...
src/main/resources/static/views/tagPrint/tagPrint.js
View file @
91dc124f
...
...
@@ -1017,35 +1017,6 @@ angular.module('AvatarCheck.tagPrint', ['ngRoute', 'AvatarCheck.http', 'tm.pagin
isPrint
:
1
,
isEwrite
:
1
}
]
}
...
...
@@ -1054,6 +1025,7 @@ angular.module('AvatarCheck.tagPrint', ['ngRoute', 'AvatarCheck.http', 'tm.pagin
$scope
.
searchTagPrintData
=
function
(){
HttpService
.
selectTagPrintData
(
$scope
.
idCard
,
function
(
data
){
$scope
.
tagPrintData
=
data
;
console
.
log
(
$scope
.
tagPrintData
)
})
}
...
...
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