Authored by 沈志敏

修改关于我们的样式

... ... @@ -29,11 +29,14 @@ const component = {
const result = {
module: 'home',
page: 'index',
noLocalJS: true,
noLocalCSS: true,
head_ico: proData && proData.head_ico ? helpers.image(proData.head_ico, 200, 200) : '',
profile_name: proData ? proData.profile_name : '登录/注册',
userinfourl: proData ? '/home/mydetails' : helpers.urlFormat('/signin.html', {
refer: req.originalUrl
}),
serviceUrl: 'http://chat8.live800.com/live800/chatClient/chatbox.jsp?companyID=620092&configID=149091&jid=8732423409&'
};
res.render('index', _.merge(result, data[1]));
... ... @@ -60,6 +63,8 @@ const component = {
res.render('help', {
module: 'home',
page: 'help',
noLocalJS: true,
noLocalCSS: true,
helpList: helpList
});
}).catch(next);
... ... @@ -74,16 +79,19 @@ const component = {
res.render('help-detail', {
module: 'home',
page: 'help',
noLocalJS: true,
noLocalCSS: true,
helpDetail: helpDetail
});
}).catch(next);
},
feedback: (req, res, next) => {
feedback: (req, res) => {
res.render('feedback', {
module: 'home',
page: 'feedback',
suggestSub: true,
}).catch(next);
noLocalCSS: true
})
},
saveFeedback: (req, res, next) => {
let saveFeedbackPara = {
... ... @@ -123,7 +131,9 @@ const component = {
about: (req, res) => {
res.render('about', {
module: 'home',
page: 'index'
page: 'index',
noLocalJS: true,
noLocalCSS: true
});
}
};
... ...
... ... @@ -70,9 +70,9 @@
帮助中心
<span class="num"><span class="icon icon-right"></span></span>
</a>
<a class="list-item" href="/home/online-service">
<a class="list-item" href="{{serviceUrl}}">
在线客服
<span class="num"><span class="icon icon-right"></span></span>
</a>
</div>
</div>
\ No newline at end of file
</div>
... ...
... ... @@ -4,7 +4,7 @@
background: #fff;
.description {
position: absolute;
position: fixed;
top: 30%;
width: 411px;
height: 75px;
... ... @@ -17,7 +17,7 @@
}
.icon-container {
position: absolute;
position: fixed;
top: 43%;
left: 0;
right: 0;
... ...