Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yoho-blk
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
1
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
郝肖肖
8 years ago
Commit
ce5fd87583d2719ec0c1cdcd006d2887ae4535f2
1 parent
1b39210d
修改订单确认,再一次确认是否修改
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletions
public/js/me/order/edit-order.js
public/js/me/order/edit-order.js
View file @
ce5fd87
...
...
@@ -177,9 +177,17 @@ function showDiaglog(tpl, onEdit) {
btnClass
:
[
'confirm'
],
name
:
'确定'
,
cb
:
function
()
{
var
b
;
if
(
validateData
())
{
editOrder
(
onEdit
);
tip
.
close
();
b
=
new
dialog
.
Confirm
({
content
:
'单笔订单仅支持一次修改,确定要修改订单吗?'
,
cb
:
function
()
{
editOrder
(
onEdit
);
b
.
close
();
}
}).
show
();
}
}
},
...
...
Please
register
or
login
to post a comment