Toggle navigation
Toggle navigation
This project
Loading...
Sign in
ufo
/
ufo-platform
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
LUOXC
6 years ago
Commit
fe21acff300e98c3e8f4c6760114ec280676e74f
1 parent
5eaabc23
fixbug
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
web/src/main/webapp/html/billsManage/list.html
web/src/main/webapp/html/billsManage/list.html
View file @
fe21acf
...
...
@@ -77,16 +77,16 @@
<div
id=
"markPaidConfirmDialog"
class=
"easyui-dialog"
style=
"width:400px;height:300px;"
data-options=
"title:'确认已经打款完成?',buttons:'#markPaidConfirmDialog_tb',modal:true,closed:true"
>
<div
style=
"padding:20px;"
>
<input
id=
"mark_paid_tradeBillsId"
type=
"hidden"
readonly
disabled
/>
<input
id=
"mark_paid_uid"
type=
"hidden"
readonly
disabled
/>
<input
id=
"mark_paid_tradeBillsId"
type=
"hidden"
/>
<input
id=
"mark_paid_uid"
type=
"hidden"
/>
<label>
订 单 编 号:
</label>
<input
id=
"mark_paid_orderCode"
type=
"text"
class=
"easyui-textbox"
style=
"width:250px"
readonly
disabled
/>
<!--
<br/><br/>
<label>支付宝账号:</label>
<input id="mark_paid_alipayAccount" type="text" class="easyui-textbox" style="width:250px" />
-->
<input
id=
"mark_paid_alipayAccount"
type=
"hidden"
class=
"easyui-textbox"
style=
"width:250px"
/>
<br/><br/>
<label>
打 款 金 额:
</label>
...
...
@@ -311,7 +311,7 @@ function markPaidGo() {
param
.
tradeBillsId
=
$
(
"#mark_paid_tradeBillsId"
).
val
();
param
.
uid
=
$
(
"#mark_paid_uid"
).
val
();
param
.
orderCode
=
$
(
"#mark_paid_orderCode"
).
val
();
param
.
alipayAccount
=
$
(
"#mark_paid_alipayAccount"
).
val
();
param
.
alipayAccount
=
$
(
"#mark_paid_alipayAccount"
).
val
()
||
"0"
;
param
.
amount
=
$
(
"#mark_paid_amount"
).
val
();
//发送请求
...
...
Please
register
or
login
to post a comment