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
cef14373
Commit
cef14373
authored
Mar 15, 2019
by
dahai
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/dev' into dev
parents
c1a7123b
7b191c96
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
39 additions
and
37 deletions
+39
-37
excelAndSearch.js
...n/resources/static/views/excelAndSearch/excelAndSearch.js
+19
-6
taskListEwriting.html
src/main/resources/static/views/task/taskListEwriting.html
+0
-6
taskListPreLocating.html
...main/resources/static/views/task/taskListPreLocating.html
+0
-6
taskListPrint.html
src/main/resources/static/views/task/taskListPrint.html
+0
-6
taskListPushing.html
src/main/resources/static/views/task/taskListPushing.html
+0
-3
taskListSorting.html
src/main/resources/static/views/task/taskListSorting.html
+0
-3
xmlAndSearch.js
src/main/resources/static/views/xmlAndSearch/xmlAndSearch.js
+20
-7
No files found.
src/main/resources/static/views/excelAndSearch/excelAndSearch.js
View file @
cef14373
...
...
@@ -50,17 +50,30 @@ angular.module('AvatarCheck.excelAndSearch', ['ngRoute', 'AvatarCheck.http', 'tm
$scope
.
uploadExcel
=
function
()
{
var
fd
=
new
FormData
();
var
files
=
document
.
querySelector
(
'input#id_file_photo_for_check'
).
files
;
if
(
angular
.
isUndefined
(
files
)
){
if
(
files
.
length
==
0
){
MessageService
.
showAlert
(
"请选择上传的文件..."
)
}
else
{
for
(
var
i
in
files
){
fd
.
append
(
'file'
,
files
[
i
]);
}
HttpService
.
uploadExcelFile
(
$
(
"#datepicker1"
).
val
(),
$
(
"#datepicker2"
).
val
(),
fd
,
function
(
data
)
{
if
(
data
){
MessageService
.
showAlert
(
"上传成功"
)
}
})
var
getData
=
$scope
.
getPostPackage
;
ngDialog
.
openConfirm
({
template
:
'dialogs/alert.html'
+
urlTimeStamp
(),
width
:
600
,
cache
:
false
,
closeByDocument
:
false
,
controller
:
[
'$scope'
,
function
(
$scope
)
{
$scope
.
msgText
=
"解析中..."
HttpService
.
uploadExcelFile
(
$
(
"#datepicker1"
).
val
(),
$
(
"#datepicker2"
).
val
(),
fd
,
function
(
data
)
{
if
(
data
){
$scope
.
closeThisDialog
();
getData
();
MessageService
.
showAlert
(
"上传成功"
)
}
})
}]
});
}
}
...
...
src/main/resources/static/views/task/taskListEwriting.html
View file @
cef14373
...
...
@@ -92,9 +92,6 @@
</tbody>
</table>
</td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
...
...
@@ -178,9 +175,6 @@
</tbody>
</table>
</td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
...
...
src/main/resources/static/views/task/taskListPreLocating.html
View file @
cef14373
...
...
@@ -89,9 +89,6 @@
</tbody>
</table>
</td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
...
...
@@ -170,9 +167,6 @@
</tbody>
</table>
</td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
...
...
src/main/resources/static/views/task/taskListPrint.html
View file @
cef14373
...
...
@@ -90,9 +90,6 @@
</tbody>
</table>
</td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
...
...
@@ -179,9 +176,6 @@
</tbody>
</table>
</td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
...
...
src/main/resources/static/views/task/taskListPushing.html
View file @
cef14373
...
...
@@ -89,9 +89,6 @@
</tbody>
</table>
</td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
...
...
src/main/resources/static/views/task/taskListSorting.html
View file @
cef14373
...
...
@@ -94,9 +94,6 @@
</tbody>
</table>
</td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
...
...
src/main/resources/static/views/xmlAndSearch/xmlAndSearch.js
View file @
cef14373
...
...
@@ -60,18 +60,31 @@ angular.module('AvatarCheck.xmlAndSearch', ['ngRoute', 'AvatarCheck.http', 'tm.p
$scope
.
uploadXml
=
function
()
{
var
fd
=
new
FormData
();
var
files
=
document
.
querySelector
(
'input#id_file_photo_for_check'
).
files
;
if
(
angular
.
isUndefined
(
files
)
){
if
(
files
.
length
==
0
){
MessageService
.
showAlert
(
"请选择上传的文件..."
)
}
else
{
for
(
var
i
in
files
){
fd
.
append
(
'file'
,
files
[
i
]);
}
HttpService
.
uploadPackage
(
fd
,
function
(
data
)
{
if
(
data
){
MessageService
.
showAlert
(
"上传成功"
)
$scope
.
getXmlPackage
();
}
})
var
getData
=
$scope
.
getXmlPackage
;
ngDialog
.
openConfirm
({
template
:
'dialogs/alert.html'
+
urlTimeStamp
(),
width
:
600
,
cache
:
false
,
closeByDocument
:
false
,
controller
:
[
'$scope'
,
function
(
$scope
)
{
$scope
.
msgText
=
"解析中..."
HttpService
.
uploadPackage
(
fd
,
function
(
data
)
{
if
(
data
){
$scope
.
closeThisDialog
();
getData
();
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