Authored by zhangxiaoru

注册成功样式

... ... @@ -122,9 +122,6 @@ exports.inviteReg = (req, res, next) => {
req.ctx(expandModel).promotionData(uid, isApp).then(result => {
res.render('expand-new/invite-reg', {
pageHeader: headerModel.setNav({
navTitle: '注册完成'
}),
isApp: isApp,
width750: true,
localCss: true,
... ...
... ... @@ -4,6 +4,10 @@ require('common');
let tip = require('plugin/tip');
$('.invite-reg-page').css('min-height', function() {
return $(window).height();
});
// 埋点
function point(type, trend) {
let pointJosn = {
... ... @@ -33,6 +37,12 @@ $('.set').click(function() {
success: function(result) {
tip.show(result.message);
point(1, $('.command-textarea').val());
if (result.code === 200) {
setTimeout(function() {
location.href = window.cookie('refer');
}, 500);
}
}
});
});
... ...
... ... @@ -17,11 +17,13 @@
width: 350px;
line-height: 45px;
display: inline-block;
position: relative;
top: -34px;
}
}
.invite-pass {
margin: 66px 30px 0;
margin: 20px 30px 0;
width: 692px;
height: 661px;
background-image: resolve("activity/expand-new/invite-state.png");
... ... @@ -46,7 +48,7 @@
.instructions-title {
text-align: center;
line-height: 48px;
font-weight: 200;
font-weight: 700;
font-size: 24px;
}
... ...
... ... @@ -52,7 +52,8 @@
.more {
color: #4a90e2;
display: block;
padding-bottom: 20px;
padding-bottom: 8px;
line-height: 50px;
}
}
... ...