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
李靖
2017-09-30 10:13:17 +0800
Commit
bf8b85e9453e7e4451ef47d4e046e2fdae221aa4
1 parent
bce48be4
优化
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 additions
and
19 deletions
apps/home/controllers/free-shipping.js
public/js/home/free-shipping.page.js
apps/home/controllers/free-shipping.js
View file @
bf8b85e
...
...
@@ -15,5 +15,5 @@ exports.index = (req, res) => {
pageFooter
:
true
};
res
.
render
(
'free-shipping'
,
Object
.
assign
(
responseData
,
''
)
);
res
.
render
(
'free-shipping'
,
responseData
);
};
...
...
public/js/home/free-shipping.page.js
View file @
bf8b85e
import
'home/free-shipping.page.css'
;
import
'product/new-recommend/new-recommend'
;
import
$
from
'yoho-jquery'
;
import
Page
from
'yoho-page'
;
class
FreeShipping
extends
Page
{
constructor
()
{
super
();
this
.
selector
=
{};
this
.
init
();
}
init
()
{}
}
$
(()
=>
{
new
FreeShipping
();
});
...
...
Please
register
or
login
to post a comment