Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yohobuywap-node
·
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
王水玲
2016-08-25 16:58:28 +0800
Commit
a17961dc9a011e02c868a012632b3f8a1dae7b9c
1 parent
b71fd0e3
有货分期
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
13 additions
and
5 deletions
apps/home/models/installment.js
apps/home/views/action/installment/open-index.hbs
public/js/home/installment-goods.js
public/js/home/repay-record.page.js
public/scss/home/installment/_repayment-list.css
public/scss/home/installment/_starting-service.css
apps/home/models/installment.js
View file @
a17961d
...
...
@@ -133,7 +133,7 @@ const _processRepayList = (list) => {
return
list
.
rePayList
;
}
else
{
return
''
;
return
false
;
}
};
...
...
apps/home/views/action/installment/open-index.hbs
View file @
a17961d
...
...
@@ -15,7 +15,7 @@
</li>
<li>
<span
class=
"open-icon-3"
></span>
<span>
制
定商品
<br>
立享优惠
</span>
<span>
指
定商品
<br>
立享优惠
</span>
</li>
</ul>
...
...
public/js/home/installment-goods.js
View file @
a17961d
...
...
@@ -63,9 +63,16 @@ ListData.prototype.getListData = function(page) {
self
.
opt
.
stopLoading
=
false
;
if
(
data
===
''
)
{
if
(
self
.
opt
.
noResult
)
{
$
(
'.no-result'
).
show
();
}
self
.
opt
.
stopLoading
=
true
;
}
else
{
self
.
opt
.
boxArea
.
append
(
data
);
if
(
self
.
opt
.
noResult
)
{
$
(
'.no-result'
).
hide
();
}
}
if
(
$
(
'.good-detail-text'
).
length
>
0
)
{
...
...
public/js/home/repay-record.page.js
View file @
a17961d
...
...
@@ -10,7 +10,8 @@ var $ = require('yoho-jquery'),
var
listData
=
new
ListData
({
url
:
'/home/installment/repay/get-record'
,
page
:
0
,
boxArea
:
$
(
'.record-list'
)
boxArea
:
$
(
'.record-list'
),
noResult
:
true
});
listData
.
getListData
(
0
);
...
...
public/scss/home/installment/_repayment-list.css
View file @
a17961d
...
...
@@ -300,7 +300,7 @@
.installment-check-btn
{
&
+
label
{
&:before
{
margin-top
:
40
px
;
margin-top
:
36
px
;
}
}
}
...
...
public/scss/home/installment/_starting-service.css
View file @
a17961d
...
...
@@ -132,7 +132,7 @@
content
:
""
;
display
:
inline-block
;
width
:
48px
;
height
:
4
8
px
;
height
:
4
4
px
;
background
:
url("/home/circle-check-off.png")
;
background-size
:
cover
;
margin-left
:
-40px
;
...
...
Please
register
or
login
to post a comment