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
74858f87
Commit
74858f87
authored
Jun 12, 2020
by
yangyuxin
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'integrate' into integrateFirst
parents
fbbd97de
9a1632b2
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
50 additions
and
16 deletions
+50
-16
index.html
index.html
+5
-7
index.html
jsp/amend/index.html
+11
-2
index.html
jsp/cancellation/index.html
+11
-2
index.html
jsp/declare/index.html
+11
-2
index.html
jsp/overdue/index.html
+11
-2
overdue_grid.js
static/biz/overdue_grid.js
+1
-1
No files found.
index.html
View file @
74858f87
...
@@ -109,26 +109,24 @@
...
@@ -109,26 +109,24 @@
dataType
:
"json"
,
// 请求方式为jsonp
dataType
:
"json"
,
// 请求方式为jsonp
data
:
{
data
:
{
djxh
:
djxhNumber
.
val
(),
djxh
:
djxhNumber
.
val
(),
nsrsbh
:
sbh
.
val
()
?
sbh
.
val
()
:
''
,
nsrsbh
:
sbh
.
val
(),
token
:
''
,
token
:
''
,
sbsq
:
''
,
sbsq
:
''
,
pzzlDm
:
''
pzzlDm
:
''
},
},
success
:
function
(
data
)
{
//客户端jquery预先定义好的callback函数,成功获取跨域服务器上的json数据后,会动态执行这个callback函数
success
:
function
(
data
)
{
//客户端jquery预先定义好的callback函数,成功获取跨域服务器上的json数据后,会动态执行这个callback函数
localStorage
.
setItem
(
"djxh"
,
djxhNumber
.
val
());
localStorage
.
setItem
(
"nsrsbh"
,
sbh
.
val
()
?
sbh
.
val
()
:
''
);
if
(
data
.
success
)
{
if
(
data
.
success
)
{
if
(
data
.
bean
.
url
==
"error.jsp"
)
{
if
(
data
.
bean
.
url
==
"error.jsp"
)
{
myAlert
(
"提示"
,
data
.
bean
.
errorInfo
,
"确定"
)
myAlert
(
"提示"
,
data
.
bean
.
errorInfo
,
"确定"
)
// window.location.href = "/jsp/error/index.html?falg="+param;
// window.location.href = "/jsp/error/index.html?falg="+param;
}
else
if
(
param
==
"declare"
)
{
}
else
if
(
param
==
"declare"
)
{
window
.
location
.
href
=
"/jsp/declare/index.html
"
;
window
.
location
.
href
=
"/jsp/declare/index.html
?djxh="
+
djxhNumber
.
val
()
+
"&nsrsbh="
+
sbh
.
val
()
;
}
else
if
(
param
==
"amend"
)
{
}
else
if
(
param
==
"amend"
)
{
window
.
location
.
href
=
"/jsp/amend/index.html
"
;
window
.
location
.
href
=
"/jsp/amend/index.html
?djxh="
+
djxhNumber
.
val
()
+
"&nsrsbh="
+
sbh
.
val
()
;
}
else
if
(
param
==
"overdue"
)
{
}
else
if
(
param
==
"overdue"
)
{
window
.
location
.
href
=
"/jsp/overdue/index.html
"
;
window
.
location
.
href
=
"/jsp/overdue/index.html
?djxh="
+
djxhNumber
.
val
()
+
"&nsrsbh="
+
sbh
.
val
()
;
}
else
if
(
param
==
"cancellation"
)
{
}
else
if
(
param
==
"cancellation"
)
{
window
.
location
.
href
=
"/jsp/cancellation/index.html
"
;
window
.
location
.
href
=
"/jsp/cancellation/index.html
?djxh="
+
djxhNumber
.
val
()
+
"&nsrsbh="
+
sbh
.
val
()
;
}
}
}
}
},
},
...
...
jsp/amend/index.html
View file @
74858f87
...
@@ -95,14 +95,23 @@
...
@@ -95,14 +95,23 @@
$
(
function
(){
$
(
function
(){
//
//
var
url
=
localStorage
.
getItem
(
"url"
);
var
url
=
localStorage
.
getItem
(
"url"
);
function
GetQueryValue
(
queryName
)
{
var
query
=
decodeURI
(
window
.
location
.
search
.
substring
(
1
));
var
vars
=
query
.
split
(
"&"
);
for
(
var
i
=
0
;
i
<
vars
.
length
;
i
++
)
{
var
pair
=
vars
[
i
].
split
(
"="
);
if
(
pair
[
0
]
==
queryName
)
{
return
pair
[
1
];
}
}
return
null
;
}
$
.
ajax
({
$
.
ajax
({
type
:
"GET"
,
type
:
"GET"
,
url
:
url
+
"/ssfwpt/amend/index"
,
url
:
url
+
"/ssfwpt/amend/index"
,
dataType
:
"json"
,
// 请求方式为jsonp
dataType
:
"json"
,
// 请求方式为jsonp
// async: false,
// async: false,
data
:
{
data
:
{
djxh
:
localStorage
.
getItem
(
"djxh"
),
djxh
:
GetQueryValue
(
"djxh"
),
nsrsbh
:
localStorage
.
getItem
(
"nsrsbh"
),
nsrsbh
:
GetQueryValue
(
"nsrsbh"
),
token
:
''
,
token
:
''
,
sbsq
:
''
,
sbsq
:
''
,
pzzlDm
:
''
pzzlDm
:
''
...
...
jsp/cancellation/index.html
View file @
74858f87
...
@@ -74,14 +74,23 @@
...
@@ -74,14 +74,23 @@
$
(
function
(){
$
(
function
(){
//
//
var
url
=
localStorage
.
getItem
(
"url"
);
var
url
=
localStorage
.
getItem
(
"url"
);
function
GetQueryValue
(
queryName
)
{
var
query
=
decodeURI
(
window
.
location
.
search
.
substring
(
1
));
var
vars
=
query
.
split
(
"&"
);
for
(
var
i
=
0
;
i
<
vars
.
length
;
i
++
)
{
var
pair
=
vars
[
i
].
split
(
"="
);
if
(
pair
[
0
]
==
queryName
)
{
return
pair
[
1
];
}
}
return
null
;
}
$
.
ajax
({
$
.
ajax
({
type
:
"GET"
,
type
:
"GET"
,
url
:
url
+
"/ssfwpt/cancellation/index"
,
url
:
url
+
"/ssfwpt/cancellation/index"
,
dataType
:
"json"
,
// 请求方式为jsonp
dataType
:
"json"
,
// 请求方式为jsonp
// async: false,
// async: false,
data
:
{
data
:
{
djxh
:
localStorage
.
getItem
(
"djxh"
),
djxh
:
GetQueryValue
(
"djxh"
),
nsrsbh
:
localStorage
.
getItem
(
"nsrsbh"
),
nsrsbh
:
GetQueryValue
(
"nsrsbh"
),
token
:
''
,
token
:
''
,
sbsq
:
''
,
sbsq
:
''
,
pzzlDm
:
''
pzzlDm
:
''
...
...
jsp/declare/index.html
View file @
74858f87
...
@@ -112,14 +112,23 @@
...
@@ -112,14 +112,23 @@
$
(
function
(){
$
(
function
(){
//
//
var
url
=
localStorage
.
getItem
(
"url"
);
var
url
=
localStorage
.
getItem
(
"url"
);
function
GetQueryValue
(
queryName
)
{
var
query
=
decodeURI
(
window
.
location
.
search
.
substring
(
1
));
var
vars
=
query
.
split
(
"&"
);
for
(
var
i
=
0
;
i
<
vars
.
length
;
i
++
)
{
var
pair
=
vars
[
i
].
split
(
"="
);
if
(
pair
[
0
]
==
queryName
)
{
return
pair
[
1
];
}
}
return
null
;
}
$
.
ajax
({
$
.
ajax
({
type
:
"GET"
,
type
:
"GET"
,
url
:
url
+
"/ssfwpt/declare/index"
,
url
:
url
+
"/ssfwpt/declare/index"
,
dataType
:
"json"
,
// 请求方式为jsonp
dataType
:
"json"
,
// 请求方式为jsonp
// async: false,
// async: false,
data
:
{
data
:
{
djxh
:
localStorage
.
getItem
(
"djxh"
),
djxh
:
GetQueryValue
(
"djxh"
),
nsrsbh
:
localStorage
.
getItem
(
"nsrsbh"
),
nsrsbh
:
GetQueryValue
(
"nsrsbh"
),
token
:
''
,
token
:
''
,
sbsq
:
''
,
sbsq
:
''
,
pzzlDm
:
''
pzzlDm
:
''
...
...
jsp/overdue/index.html
View file @
74858f87
...
@@ -117,14 +117,23 @@
...
@@ -117,14 +117,23 @@
$
(
function
(){
$
(
function
(){
//
//
var
url
=
localStorage
.
getItem
(
"url"
);
var
url
=
localStorage
.
getItem
(
"url"
);
function
GetQueryValue
(
queryName
)
{
var
query
=
decodeURI
(
window
.
location
.
search
.
substring
(
1
));
var
vars
=
query
.
split
(
"&"
);
for
(
var
i
=
0
;
i
<
vars
.
length
;
i
++
)
{
var
pair
=
vars
[
i
].
split
(
"="
);
if
(
pair
[
0
]
==
queryName
)
{
return
pair
[
1
];
}
}
return
null
;
}
$
.
ajax
({
$
.
ajax
({
type
:
"GET"
,
type
:
"GET"
,
url
:
url
+
"/ssfwpt/overdue/index"
,
url
:
url
+
"/ssfwpt/overdue/index"
,
dataType
:
"json"
,
// 请求方式为jsonp
dataType
:
"json"
,
// 请求方式为jsonp
// async: false,
// async: false,
data
:
{
data
:
{
djxh
:
localStorage
.
getItem
(
"djxh"
),
djxh
:
GetQueryValue
(
"djxh"
),
nsrsbh
:
localStorage
.
getItem
(
"nsrsbh"
),
nsrsbh
:
GetQueryValue
(
"nsrsbh"
),
token
:
''
,
token
:
''
,
sbsq
:
''
,
sbsq
:
''
,
pzzlDm
:
''
pzzlDm
:
''
...
...
static/biz/overdue_grid.js
View file @
74858f87
...
@@ -65,7 +65,7 @@ function initPage(companyInfo) {
...
@@ -65,7 +65,7 @@ function initPage(companyInfo) {
var
showFinancial
=
function
(
financialInfo
,
type
)
{
var
showFinancial
=
function
(
financialInfo
,
type
)
{
if
(
financialInfo
.
length
>
0
){
if
(
financialInfo
.
length
>
0
){
for
(
var
i
=
0
;
i
<
financialInfo
.
length
;
i
++
){
for
(
var
i
=
0
;
i
<
financialInfo
.
length
;
i
++
){
financialInfo
[
i
].
sbrq
=
financialInfo
[
i
].
sbrq
.
split
(
" "
)[
0
]
;
financialInfo
[
i
].
sbrq
=
financialInfo
[
i
].
sbrq
?
financialInfo
[
i
].
sbrq
.
split
(
" "
)[
0
]
:
""
;
}
}
}
}
var
id
=
"#financialGrid"
;
var
id
=
"#financialGrid"
;
...
...
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