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
fbcaf1fa
Commit
fbcaf1fa
authored
Mar 16, 2019
by
liboyang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
禁用传参id
parent
18113a5b
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
5 deletions
+11
-5
analysisLog.html
src/main/resources/static/views/analysisLog/analysisLog.html
+3
-3
analysisLog.js
src/main/resources/static/views/analysisLog/analysisLog.js
+2
-1
createTaskList.js
...n/resources/static/views/createTaskList/createTaskList.js
+2
-0
dispatchTask.html
...ain/resources/static/views/dispatchTask/dispatchTask.html
+1
-1
dispatchTask.js
src/main/resources/static/views/dispatchTask/dispatchTask.js
+3
-0
No files found.
src/main/resources/static/views/analysisLog/analysisLog.html
View file @
fbcaf1fa
...
@@ -43,7 +43,7 @@
...
@@ -43,7 +43,7 @@
<div
class=
"input-group-addon"
>
<div
class=
"input-group-addon"
>
<i
class=
"fa fa-calendar"
></i>
<i
class=
"fa fa-calendar"
></i>
</div>
</div>
<input
type=
"text"
class=
"form-control pull-right"
ng-value=
"choseDate"
id=
"datepicker"
readonly
/>
<input
type=
"text"
class=
"form-control pull-right"
id=
"datepicker"
readonly
/>
<span
class=
"input-group-addon"
><span
class=
"glyphicon glyphicon-remove"
></span></span>
<span
class=
"input-group-addon"
><span
class=
"glyphicon glyphicon-remove"
></span></span>
</div>
</div>
</td>
</td>
...
@@ -75,8 +75,8 @@
...
@@ -75,8 +75,8 @@
<td>
{{item.FILE_NAME}}
</td>
<td>
{{item.FILE_NAME}}
</td>
<td>
{{item.ANALYSIS_DATE | myDateFilter}}
</td>
<td>
{{item.ANALYSIS_DATE | myDateFilter}}
</td>
<td>
{{item.RECORD_NUMBER}}
</td>
<td>
{{item.RECORD_NUMBER}}
</td>
<td>
{{item.
PU
COUNT}}
</td>
<td>
{{item.
COMMON_CARD_
COUNT}}
</td>
<td>
{{item.
YOU
COUNT}}
</td>
<td>
{{item.
POST_CARD_
COUNT}}
</td>
</tr>
</tr>
</tbody>
</tbody>
...
...
src/main/resources/static/views/analysisLog/analysisLog.js
View file @
fbcaf1fa
...
@@ -24,7 +24,7 @@ angular.module('AvatarCheck.analysisLog', ['ngRoute', 'AvatarCheck.http', 'tm.pa
...
@@ -24,7 +24,7 @@ angular.module('AvatarCheck.analysisLog', ['ngRoute', 'AvatarCheck.http', 'tm.pa
$
(
$
(
$
(
this
).
parent
()).
prev
()).
val
(
""
);
$
(
$
(
$
(
this
).
parent
()).
prev
()).
val
(
""
);
})
})
// $scope.choseDate = $filter("date")(new Date(), "yyyy-MM-dd");
$scope
.
paginationConf
=
{
$scope
.
paginationConf
=
{
currentPage
:
1
,
currentPage
:
1
,
...
@@ -34,6 +34,7 @@ angular.module('AvatarCheck.analysisLog', ['ngRoute', 'AvatarCheck.http', 'tm.pa
...
@@ -34,6 +34,7 @@ angular.module('AvatarCheck.analysisLog', ['ngRoute', 'AvatarCheck.http', 'tm.pa
$scope
.
getAnalyseLog
=
function
(){
$scope
.
getAnalyseLog
=
function
(){
console
.
log
(
$
(
'#datepicker'
).
val
());
HttpService
.
selectAnalyseLogCount
(
$scope
.
oldPackageName
,
$
(
"#datepicker"
).
val
(),
function
(
data
)
{
HttpService
.
selectAnalyseLogCount
(
$scope
.
oldPackageName
,
$
(
"#datepicker"
).
val
(),
function
(
data
)
{
$scope
.
paginationConf
.
totalItems
=
data
;
$scope
.
paginationConf
.
totalItems
=
data
;
console
.
log
(
$scope
.
paginationConf
.
totalItems
)
console
.
log
(
$scope
.
paginationConf
.
totalItems
)
...
...
src/main/resources/static/views/createTaskList/createTaskList.js
View file @
fbcaf1fa
...
@@ -31,6 +31,7 @@ angular.module('AvatarCheck.createTaskList', ['ngRoute', 'AvatarCheck.http', 'tm
...
@@ -31,6 +31,7 @@ angular.module('AvatarCheck.createTaskList', ['ngRoute', 'AvatarCheck.http', 'tm
$scope
.
isHistory
=
0
;
$scope
.
isHistory
=
0
;
$scope
.
searchCurrent
=
function
(){
$scope
.
searchCurrent
=
function
(){
$rootScope
.
cardsTotal
=
0
;
$scope
.
isHistory
=
0
;
$scope
.
isHistory
=
0
;
HttpService
.
getTaskListToCreate
(
$
(
'#datepicker'
).
val
(),
function
(
data
){
HttpService
.
getTaskListToCreate
(
$
(
'#datepicker'
).
val
(),
function
(
data
){
$scope
.
cycleSheetData
=
data
;
$scope
.
cycleSheetData
=
data
;
...
@@ -232,6 +233,7 @@ angular.module('AvatarCheck.createTaskList', ['ngRoute', 'AvatarCheck.http', 'tm
...
@@ -232,6 +233,7 @@ angular.module('AvatarCheck.createTaskList', ['ngRoute', 'AvatarCheck.http', 'tm
$scope
.
searchCurrent
();
$scope
.
searchCurrent
();
$scope
.
selected
=
[];
$scope
.
selected
=
[];
$rootScope
.
selectedGroup
=
[];
$rootScope
.
selectedGroup
=
[];
$rootScope
.
cardsTotal
=
0
;
})
})
}
else
{
}
else
{
MessageService
.
showAlert
(
"请选择创建任务单的组"
)
MessageService
.
showAlert
(
"请选择创建任务单的组"
)
...
...
src/main/resources/static/views/dispatchTask/dispatchTask.html
View file @
fbcaf1fa
...
@@ -27,7 +27,7 @@
...
@@ -27,7 +27,7 @@
</ul>
</ul>
</a>
</a>
</li>
</li>
<li
class=
"pull-right"
style=
"padding-right: 20px;"
><h
5>
已选择数量:{{cardsTotal}}
</h5
></li>
<li
class=
"pull-right"
style=
"padding-right: 20px;"
><h
4>
已选择数量:{{cardsTotal}}
</h4
></li>
</ul>
</ul>
</div>
</div>
<div
ng-repeat=
"type in cycleSheetData track by $index"
class=
"table-responsive mailbox-messages"
ng-show=
"currentTab==$index"
>
<div
ng-repeat=
"type in cycleSheetData track by $index"
class=
"table-responsive mailbox-messages"
ng-show=
"currentTab==$index"
>
...
...
src/main/resources/static/views/dispatchTask/dispatchTask.js
View file @
fbcaf1fa
...
@@ -24,8 +24,10 @@ angular.module('AvatarCheck.dispatchTask', ['ngRoute', 'AvatarCheck.http', 'tm.p
...
@@ -24,8 +24,10 @@ angular.module('AvatarCheck.dispatchTask', ['ngRoute', 'AvatarCheck.http', 'tm.p
$scope
.
choseDate
=
$filter
(
"date"
)(
new
Date
(),
"yyyy-MM-dd"
);
$scope
.
choseDate
=
$filter
(
"date"
)(
new
Date
(),
"yyyy-MM-dd"
);
$scope
.
isHistory
=
0
;
$scope
.
isHistory
=
0
;
$scope
.
searchTaskList
=
function
(){
$scope
.
searchTaskList
=
function
(){
$rootScope
.
cardsTotal
=
0
;
$scope
.
isHistory
=
0
;
$scope
.
isHistory
=
0
;
HttpService
.
getTaskListByProcess
(
function
(
data
){
HttpService
.
getTaskListByProcess
(
function
(
data
){
$scope
.
cycleSheetData
=
data
;
$scope
.
cycleSheetData
=
data
;
...
@@ -178,6 +180,7 @@ angular.module('AvatarCheck.dispatchTask', ['ngRoute', 'AvatarCheck.http', 'tm.p
...
@@ -178,6 +180,7 @@ angular.module('AvatarCheck.dispatchTask', ['ngRoute', 'AvatarCheck.http', 'tm.p
HttpService
.
updateTaskListProcess
(
json
,
function
(
data
){
HttpService
.
updateTaskListProcess
(
json
,
function
(
data
){
$scope
.
searchTaskList
();
$scope
.
searchTaskList
();
MessageService
.
showAlert
(
"下发完成"
)
MessageService
.
showAlert
(
"下发完成"
)
$rootScope
.
cardsTotal
=
0
;
})
})
}
else
{
}
else
{
MessageService
.
showAlert
(
"请选择下发的任务单"
)
MessageService
.
showAlert
(
"请选择下发的任务单"
)
...
...
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