Authored by 王水玲

分期三期

... ... @@ -604,6 +604,14 @@ const bankCard = (req, res) => {
});
};
// 银行卡详情
const cardDetail = (req, res) => {
res.render('installment/card-detail', {
title: "银行卡详情",
isInstallmentPage: true
});
};
module.exports = {
index,
review,
... ... @@ -630,5 +638,6 @@ module.exports = {
bindCard,
serverCrash,
bankCard,
postAccount
postAccount,
cardDetail
};
... ...
... ... @@ -131,6 +131,7 @@ router.get('/installment/agreement', installment.agreement);// æœåŠ¡åè®®é™æ€
router.get('/installment/server-crash', installment.serverCrash); // 服务器崩溃
router.get('/installment/bank-card', installment.bankCard); // 银行卡列表
router.get('/installment/card-detail', installment.cardDetail); // 银行卡详情
router.get('/recommend-for-you/userCenter', recommendForYou.userCenter);// 为你优选
... ...
<div class="card-detail-page yoho-page"></div>
... ...
... ... @@ -17,15 +17,20 @@ module.exports = {
siteUrl: '//m.yohobuy.com',
assetUrl: '//localhost:5001',
domains: {
api: 'http://api.yoho.cn/',
service: 'http://service.yoho.cn/',
liveApi: 'http://api.live.yoho.cn/',
singleApi: 'http://single.yoho.cn/'
//api: 'http://api.yoho.cn/',
//service: 'http://service.yoho.cn/',
//liveApi: 'http://api.live.yoho.cn/',
//singleApi: 'http://single.yoho.cn/'
// api: 'http://api-test1.yohops.com:9999/',
// service: 'http://service-test1.yohops.com:9999/',
// liveApi: 'http://testapi.live.yohops.com:9999/',
// singleApi: 'http://api-test1.yohops.com:9999/',
api: 'http://api-test1.yohops.com:9999/',
service: 'http://service-test1.yohops.com:9999/',
liveApi: 'http://testapi.live.yohops.com:9999/',
singleApi: 'http://api-test1.yohops.com:9999/'
//api: 'http://api.yoho.yohoops.org/',
//service: 'http://service.yoho.yohoops.org/',
//liveApi: 'http://api.live.yoho.cn/',
//singleApi: 'http://single.yoho.cn/'
},
subDomains: {
host: '.m.yohobuy.com',
... ...