Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYPC
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
2
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Plain Diff
Browse Files
Authored by
梁志锋
9 years ago
Commit
f107028161e86ae561c69110c54ab0a73ab8b017
2 parents
ac35c533
b617b7f7
Merge branch 'develop' of
http://git.dev.yoho.cn/web/yohobuy
into develop
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
23 deletions
static/js/me/dialog.js
static/js/me/order.js
static/sass/cart/_chose-panel.scss
static/js/me/dialog.js
View file @
f107028
...
...
@@ -99,3 +99,7 @@ exports.showDialog = function(data, callback, callbackForLeft) {
event
.
srcEvent
.
stopPropagation
();
});
};
exports
.
hideDialog
=
function
()
{
$
(
'.dialog-wrapper'
).
remove
();
};
...
...
static/js/me/order.js
View file @
f107028
...
...
@@ -6,7 +6,8 @@
var
$
=
require
(
'jquery'
),
Hammer
=
require
(
'yoho.hammer'
),
lazyLoad
=
require
(
'yoho.lazyload'
);
lazyLoad
=
require
(
'yoho.lazyload'
),
tip
=
require
(
'../plugin/tip'
);
var
$navLi
=
$
(
'#order-nav > li'
),
$orderContainer
=
$
(
'#order-container'
);
...
...
@@ -132,23 +133,18 @@ orderHammer.on('tap', function(e) {
id
:
id
},
success
:
function
(
data
)
{
dialog
.
hideDialog
();
if
(
data
.
message
)
{
tip
.
show
(
data
.
message
);
}
if
(
data
.
code
===
200
)
{
dialog
.
showDialog
({
dialogText
:
'删除订单成功'
,
autoHide
:
true
,
fast
:
true
});
//删除订单页面刷新
history
.
go
(
0
);
window
.
location
.
reload
(
);
}
},
error
:
function
()
{
dialog
.
showDialog
({
dialogText
:
'删除订单失败'
,
autoHide
:
true
,
fast
:
true
});
tip
.
show
(
'取消订单失败'
);
}
});
});
...
...
@@ -169,23 +165,17 @@ orderHammer.on('tap', function(e) {
id
:
id
},
success
:
function
(
data
)
{
if
(
data
.
message
)
{
tip
.
show
(
data
.
message
);
}
if
(
data
.
code
===
200
)
{
dialog
.
showDialog
({
dialogText
:
'取消订单成功'
,
autoHide
:
true
,
fast
:
true
});
//取消订单页面刷新
history
.
go
(
0
);
window
.
location
.
reload
(
);
}
},
error
:
function
()
{
dialog
.
showDialog
({
dialogText
:
'取消订单失败'
,
autoHide
:
true
,
fast
:
true
});
tip
.
show
(
'取消订单失败'
);
}
});
});
...
...
static/sass/cart/_chose-panel.scss
View file @
f107028
...
...
@@ -80,6 +80,9 @@
input
.disabled
{
background-color
:
#fff
;
color
:
#000
;
opacity
:
1
;
@include
border-radius
(
0
);
-webkit-appearance
:
none
;
}
>
span
{
position
:
absolute
;
...
...
Please
register
or
login
to post a comment