Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tl_estate
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
hujun
tl_estate
Commits
aad0014f
Commit
aad0014f
authored
Sep 03, 2019
by
agping
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
罚款
parent
e9890596
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
5 deletions
+23
-5
fineMoney.html
application/index/view/finance/fineMoney.html
+9
-3
fineMoney.js
public/resource/js/fineMoney.js
+12
-0
fineMoney_list_template_tpl.html
public/resource/template/fineMoney_list_template_tpl.html
+2
-2
No files found.
application/index/view/finance/fineMoney.html
View file @
aad0014f
...
@@ -104,12 +104,12 @@
...
@@ -104,12 +104,12 @@
height
:
80px
;
height
:
80px
;
margin-top
:
3px
;
margin-top
:
3px
;
}
}
.result-positive
{
.result-positive
,
.result-positive-edit
{
width
:
80px
;
width
:
80px
;
float
:
left
;
float
:
left
;
text-align
:
center
;
text-align
:
center
;
margin-right
:
20px
;
margin-right
:
20px
;
margin-top
:
1
5px
;
margin-top
:
5px
;
}
}
#container_body
{
#container_body
{
position
:
relative
;
position
:
relative
;
...
@@ -295,7 +295,7 @@
...
@@ -295,7 +295,7 @@
罚款详情
罚款详情
</h4>
</h4>
</div>
</div>
<div
class=
"modal-body"
style=
"height:
56
0px;overflow-y: auto;overflow-x: hidden;"
>
<div
class=
"modal-body"
style=
"height:
62
0px;overflow-y: auto;overflow-x: hidden;"
>
<form
class=
"form-horizontal form-horizontal-edit"
>
<form
class=
"form-horizontal form-horizontal-edit"
>
<div
class=
"form-group"
>
<div
class=
"form-group"
>
<label
class=
"col-sm-4 control-label"
>
罚款ID:
</label>
<label
class=
"col-sm-4 control-label"
>
罚款ID:
</label>
...
@@ -345,6 +345,12 @@
...
@@ -345,6 +345,12 @@
</div>
</div>
</div>
</div>
</div>
</div>
<div
class=
"form-group to-pay-hide"
>
<label
class=
"col-sm-4 control-label"
>
滞纳金:
</label>
<span
style=
"margin-top: 7px;display: inline-block;"
id=
"forfeit_penalty"
></span>
<label
class=
"col-sm-4 control-label"
>
付款金额:
</label>
<span
style=
"margin-top: 7px;display: inline-block;"
id=
"money_sum"
></span>
</div>
</form>
</form>
</div>
</div>
...
...
public/resource/js/fineMoney.js
View file @
aad0014f
...
@@ -276,15 +276,27 @@ define(['doT', 'text!temp/fineMoney_list_template_tpl.html', 'text!temp/phoneBin
...
@@ -276,15 +276,27 @@ define(['doT', 'text!temp/fineMoney_list_template_tpl.html', 'text!temp/phoneBin
$
(
"#submit_name_edit"
).
html
(
data
.
data
.
submit_agent_name
);
$
(
"#submit_name_edit"
).
html
(
data
.
data
.
submit_agent_name
);
$
(
"#tijiao"
).
html
(
data
.
data
.
create_time
);
$
(
"#tijiao"
).
html
(
data
.
data
.
create_time
);
$
(
"#remark_edit"
).
val
(
data
.
data
.
remarks
);
$
(
"#remark_edit"
).
val
(
data
.
data
.
remarks
);
$
(
"#forfeit_penalty"
).
html
(
data
.
data
.
forfeit_penalty
);
$
(
"#money_sum"
).
html
(
data
.
data
.
money_sum
);
if
(
data
.
data
.
status
*
1
==
0
){
if
(
data
.
data
.
status
*
1
==
0
){
$
(
"#edit_status"
).
html
(
'待支付'
);
$
(
"#edit_status"
).
html
(
'待支付'
);
$
(
".submit_edit"
).
show
();
$
(
".submit_edit"
).
show
();
$
(
".to-pay-hide"
).
hide
();
}
else
if
(
data
.
data
.
status
*
1
==
1
){
}
else
if
(
data
.
data
.
status
*
1
==
1
){
$
(
"#edit_status"
).
html
(
'已支付'
);
$
(
"#edit_status"
).
html
(
'已支付'
);
$
(
".submit_edit"
).
hide
();
$
(
".submit_edit"
).
hide
();
$
(
".to-pay-hide"
).
show
();
}
else
{
}
else
{
$
(
"#edit_status"
).
html
(
'已取消'
);
$
(
"#edit_status"
).
html
(
'已取消'
);
$
(
".submit_edit"
).
hide
();
$
(
".submit_edit"
).
hide
();
$
(
".to-pay-hide"
).
hide
();
}
}
if
(
data
.
data
.
type
)
{
if
(
data
.
data
.
type
)
{
...
...
public/resource/template/fineMoney_list_template_tpl.html
View file @
aad0014f
...
@@ -12,8 +12,8 @@
...
@@ -12,8 +12,8 @@
[
%
}
else
{
%
]
[
%
}
else
{
%
]
<
td
class
=
"text-center"
><
/td
>
<
td
class
=
"text-center"
><
/td
>
[
%
}
%
]
[
%
}
%
]
<
td
class
=
"text-center"
>
[
%=
it
[
item
][
"
mone
y"
]
%
]
<
/td
>
<
td
class
=
"text-center"
>
[
%=
it
[
item
][
"
forfeit_penalt
y"
]
%
]
<
/td
>
<
td
class
=
"text-center"
>
[
%=
it
[
item
][
"money"
]
%
]
<
/td
>
<
td
class
=
"text-center"
>
[
%=
it
[
item
][
"money
_sum int
"
]
%
]
<
/td
>
<
td
class
=
"text-center"
>
[
%=
it
[
item
][
"status_name"
]
%
]
<
/td
>
<
td
class
=
"text-center"
>
[
%=
it
[
item
][
"status_name"
]
%
]
<
/td
>
<
td
class
=
"text-center"
>
<
td
class
=
"text-center"
>
[
%
if
(
it
[
item
][
"status"
]
*
1
==
0
){
%
]
[
%
if
(
it
[
item
][
"status"
]
*
1
==
0
){
%
]
...
...
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