Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yohobuy-node
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
1
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
htoooth
8 years ago
Commit
b0c622744ca582ba1b2e0fa1278c213faa1a0b5c
1 parent
44b332d4
fix
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
8 deletions
apps/home/views/action/returns/returns-apply.hbs
public/js/cart/ensure.page.js
public/js/home/returns-apply.js
apps/home/views/action/returns/returns-apply.hbs
View file @
b0c6227
...
...
@@ -171,6 +171,8 @@
</div>
<input
type=
"hidden"
id=
"order-code"
value=
"
{{
orderCode
}}
"
>
{{/
exchange
}}
{{#
refund
}}
<div
class=
"return-prompt"
>
退货须知:
<br>
...
...
@@ -219,8 +221,23 @@
<a
href=
"
{{
href
}}
"
>
{{
name
}}
</a>
<span>
颜色:
{{
color
}}
尺码:
{{
size
}}
</span>
{{#if
specialNoticeBo
}}
<div
class=
"special-tip"
>
<span>
{{
specialNoticeBo
.
title
}}
<i
class=
"doubt"
></i></span>
<div>
<div
class=
"special-tip"
>
{{#if
specialNoticeBo
.
limit7Day
}}
<p
class=
"special-limit-7day"
>
不支持7天无理由退换
</p>
<div
class=
"special-limit-tip special-limit-7day-box hide"
>
该商品不支持7天无理由退换货,如有疑问,请联系客服!
</div>
{{/if}}
{{#if
specialNoticeBo
.
limit15Day
}}
<p
class=
"special-limit-7day"
>
不支持15天无理由退换
</p>
<div
class=
"special-limit-tip special-limit-15day-box hide"
>
该商品支持7天无理由退换,不支持7天以上15天内的无理由换货,如有疑问,请联系客服!
</div>
{{/if}}
</div>
<div
class=
"special-content"
>
<span>
{{
specialNoticeBo
.
remark1
}}
<br/>
{{
specialNoticeBo
.
remark2
}}
</span>
<i
class=
"arrow"
></i>
...
...
public/js/cart/ensure.page.js
View file @
b0c6227
...
...
@@ -659,10 +659,8 @@ refund = {
this
.
eventBind
();
},
eventBind
:
function
()
{
var
self
=
this
;
this
.
$el
.
on
(
'click'
,
'.special-limit-7day'
,
function
()
{
self
.
$el
.
find
(
'.special-limit-tip'
).
toggleClass
(
'hide'
);
$
(
this
).
parent
()
.
find
(
'.special-limit-tip'
).
toggleClass
(
'hide'
);
});
}
};
...
...
public/js/home/returns-apply.js
View file @
b0c6227
...
...
@@ -694,10 +694,8 @@ refund = {
this
.
eventBind
();
},
eventBind
:
function
()
{
var
self
=
this
;
this
.
$el
.
find
(
'.special-limit-7day'
).
on
(
'click'
,
function
()
{
self
.
$el
.
find
(
'.special-limit-tip'
).
toggleClass
(
'hide'
);
$
(
this
).
parent
()
.
find
(
'.special-limit-tip'
).
toggleClass
(
'hide'
);
});
}
};
...
...
Please
register
or
login
to post a comment