Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
Z
zxtb_to_ssfwpt
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Bugzilla
Bugzilla
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
卢世豪
zxtb_to_ssfwpt
Commits
dca288ba
Commit
dca288ba
authored
Jul 07, 2020
by
于广洋
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
后台错误信息切换月份不好使
parent
6191f7aa
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
31 additions
and
15 deletions
+31
-15
index.html
jsp/cancellation/index.html
+2
-0
index.html
jsp/declare/index.html
+1
-1
index.html
jsp/overdue/index.html
+1
-0
cancellation_grid.js
static/biz/cancellation_grid.js
+9
-6
declare_grid.js
static/biz/declare_grid.js
+9
-4
overdue_grid.js
static/biz/overdue_grid.js
+9
-4
No files found.
jsp/cancellation/index.html
View file @
dca288ba
...
...
@@ -93,12 +93,14 @@
// $("#token").attr("value","");
var
companyInfo
=
data
;
$
(
"#djxh"
).
attr
(
"value"
,
companyInfo
.
djxh
);
initpage
=
initPage
(
companyInfo
.
content
);
if
(
companyInfo
.
returnCode
==
"00"
)
{
companyInfo
.
content
.
config
=
config
initpage
=
initPage
(
companyInfo
.
content
);
}
else
{
hideLoading
();
initpage
=
initPage
(
""
);
alertWarning
(
companyInfo
.
returnMessage
);
// 弹出错误对话框
}
...
...
jsp/declare/index.html
View file @
dca288ba
...
...
@@ -142,7 +142,6 @@
var
companyInfo
=
data
;
companyInfo
.
config
=
config
$
(
"#djxh"
).
attr
(
"value"
,
companyInfo
.
djxh
);
if
(
companyInfo
.
success
)
{
companyInfo
.
bean
.
config
=
config
initpage
=
initPage
(
companyInfo
.
bean
);
...
...
@@ -156,6 +155,7 @@
});
});*/
}
else
{
initpage
=
initPage
(
""
);
alertWarning
(
companyInfo
.
returnMessage
);
// 弹出错误对话框
}
...
...
jsp/overdue/index.html
View file @
dca288ba
...
...
@@ -143,6 +143,7 @@
}
else
{
hideLoading
();
initpage
=
initPage
(
""
);
alertWarning
(
companyInfo
.
returnMessage
);
// 弹出错误对话框
}
...
...
static/biz/cancellation_grid.js
View file @
dca288ba
...
...
@@ -189,7 +189,10 @@ function initPage(companyInfo) {
//地址
//http://sbjs.tjsat.gov.cn:18090
//http://localhost:7070
var
url
=
companyInfo
.
config
.
url
;
var
url
;
if
(
companyInfo
){
url
=
companyInfo
.
config
.
url
;
}
var
getTaxDeclaration
=
function
(
date
,
type
)
{
// TODO 开始加载等待动画
showLoading
();
...
...
@@ -311,11 +314,11 @@ function initPage(companyInfo) {
// closeModal();
}
}
nowdate
=
companyInfo
.
sbsq
;
//var aaa = {taxInfos:[],financialInfos:[]};
drawGrid
(
companyInfo
);
// drawGrid(aaa);
if
(
companyInfo
){
nowdate
=
companyInfo
.
sbsq
;
//var aaa = {taxInfos:[],financialInfos:[]};
drawGrid
(
companyInfo
);
}
//页面出现滚动条,监听滚动条变化将高赋值给模态框
window
.
onscroll
=
function
(){
$
(
"#myModal"
).
css
(
"top"
,
$
(
document
).
scrollTop
()
+
235
);
...
...
static/biz/declare_grid.js
View file @
dca288ba
...
...
@@ -145,7 +145,10 @@ function initPage(companyInfo) {
//地址
//http://sbjs.tjsat.gov.cn:18090
//http://localhost:7070
var
url
=
companyInfo
.
config
.
url
;
var
url
;
if
(
companyInfo
){
url
=
companyInfo
.
config
.
url
;
}
var
getTaxDeclaration
=
function
(
date
,
type
)
{
// TODO 开始加载等待动画
showLoading
();
...
...
@@ -287,9 +290,11 @@ function initPage(companyInfo) {
//TODO 调用备案接口
});
// 格式化后台返回的时间
$
(
"#getInputValue"
).
val
(
tool
.
formatDate
(
companyInfo
.
sbsq
));
nowdate
=
companyInfo
.
sbsq
;
drawGrid
(
companyInfo
);
if
(
companyInfo
){
$
(
"#getInputValue"
).
val
(
tool
.
formatDate
(
companyInfo
.
sbsq
));
nowdate
=
companyInfo
.
sbsq
;
drawGrid
(
companyInfo
);
}
//页面出现滚动条,监听滚动条变化将高赋值给模态框
window
.
onscroll
=
function
(){
$
(
"#myModal"
).
css
(
"top"
,
$
(
document
).
scrollTop
()
+
235
);
...
...
static/biz/overdue_grid.js
View file @
dca288ba
...
...
@@ -187,7 +187,10 @@ function initPage(companyInfo) {
//地址
//http://sbjs.tjsat.gov.cn:18090
//http://localhost:7070
var
url
=
companyInfo
.
config
.
url
;
var
url
;
if
(
companyInfo
){
url
=
companyInfo
.
config
.
url
}
var
getTaxOverdue
=
function
(
date
,
type
)
{
// TODO 开始加载等待动画
showLoading
();
...
...
@@ -316,9 +319,11 @@ function initPage(companyInfo) {
//TODO 调用备案接口
});
// 格式化后台返回的时间
$
(
"#getInputValue"
).
val
(
tool
.
formatDate
(
companyInfo
.
sbsq
));
nowDate
=
tool
.
formatDate
(
companyInfo
.
sbsq
);
drawGrid
(
companyInfo
);
if
(
companyInfo
)
{
$
(
"#getInputValue"
).
val
(
tool
.
formatDate
(
companyInfo
.
sbsq
));
nowDate
=
tool
.
formatDate
(
companyInfo
.
sbsq
);
drawGrid
(
companyInfo
);
}
return
{
changeDate
:
changeDate
,
reset
:
reset
,
...
...
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