Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
任超
/
js.portalStaticPage
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
475ef4d5
authored
2020-12-18 09:27:27 +0800
by
任超
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:缴费明细
1 parent
86f45304
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
9 deletions
staticCss/xsjf.css
staticJs/onlineApply/onlinePayment.js
staticViews/onlineApply/onlinePayment.html
staticCss/xsjf.css
View file @
475ef4d
...
...
@@ -196,3 +196,7 @@
padding-left
:
60px
;
line-height
:
36px
;
}
.submitButton
{
text-align
:
center
;
margin
:
20px
0
;
}
\ No newline at end of file
...
...
staticJs/onlineApply/onlinePayment.js
View file @
475ef4d
...
...
@@ -49,10 +49,10 @@ $(function () {
$
(
'.submitButton button'
).
click
(
function
(){
skipNextPage
(
GetQueryString
(
'bsm_slsq'
),
GetQueryString
(
'businessno'
));
})
//
/portal/hlwSfxx/getSfxx
获取缴费信息
// 获取缴费信息
function
_getSfxx
(
bsm_slsq
)
{
$
.
ajax
({
type
:
"
pos
t"
,
//提交方式
type
:
"
ge
t"
,
//提交方式
url
:
portal
.
api_url
+
"/portal/hlwSfxx/getSfxx"
,
//路径
dataType
:
"json"
,
data
:
{
...
...
@@ -61,7 +61,9 @@ function _getSfxx(bsm_slsq) {
//数据,这里使用的是Json格式进行传输
success
:
function
(
result
)
{
//返回数据根据结果进行相应的处理
if
(
result
.
code
==
200
&&
result
.
data
!=
null
)
{
console
.
log
(
result
.
data
)
for
(
var
i
=
0
;
i
<
result
.
data
.
length
;
i
++
)
{
$
(
'.paymentDetails'
).
append
(
'<h6>'
+
result
.
data
[
i
].
sfkm
+
''
+
result
.
data
[
i
].
ysje
+
'元 </h6>'
);
}
}
}
});
...
...
staticViews/onlineApply/onlinePayment.html
View file @
475ef4d
...
...
@@ -51,7 +51,7 @@
</li>
<li>
<span>
受理日期:
</span>
<p>
7979798797
</p>
<p>
2020-12-30
</p>
</li>
<li>
<span>
收费事项:
</span>
...
...
@@ -59,13 +59,10 @@
</li>
<li>
<span>
应缴金额:
</span>
<h5>
60
0元
</h5>
<h5>
9
0元
</h5>
</li>
<li>
<li
class=
"paymentDetails"
>
<span>
收费明细:
</span>
<h6>
工本费10元
</h6>
<h6>
快递费20元
</h6>
<h6>
不动产登记费80元
</h6>
</li>
</ul>
</div>
...
...
Please
register
or
sign in
to post a comment