Authored by rqq

本地生活领券弹框修改

... ... @@ -4,4 +4,4 @@ var $ = require('jquery'),
var arr = code.split('=');
$('.coupon-input').val(arr[1]);
require('../plugin/wx-share');
\ No newline at end of file
require('../plugin/life-share');
\ No newline at end of file
... ...
... ... @@ -20,14 +20,13 @@ function get() {
$('.statu-mark').show();
$('.statu-box').show();
if (data.code === 200) {
$('.sure').click(function() {
location.href = '/life/coupon' + '?' + 'code' + '=' + data.data;
});
location.href = '/life/coupon' + '?' + 'code' + '=' + data.data;
} else if (data.code === 401) {
$('.successed').show();
} else if (data.code === 403) {
$('.late').show();
} else {
$('.sure').click(function() {
$('.statu-mark').hide();
$('.statu-box').hide();
});
$('.faill').show();
}
}
});
... ...
... ... @@ -91,40 +91,45 @@ html,body {
top:40%;
}
}
.statu-mark{
position: fixed;
z-index: 1;
background-color: #505050;
opacity: 0.5;
width: 100%;
height:38.125rem;
.successed{
background-image:resolve('life/login/get.png');
background-size: 100% 100%;
position: absolute;
width: 80%;
height:20%;
left: 10%;
top:33%;
display: none;
}
.statu-box{
background-color:#464646;
padding:5%;
color: #FFFFFF;
line-height: 1rem;
.faill{
background-image:resolve('life/login/faill.png');
background-size: 100% 100%;
position: absolute;
width: 70%;
height:10%;
z-index: 2;
display: none;
width: 80%;
height:20%;
left:10%;
top:35%;
font-size: 0.8rem;
opacity: 0.9;
.statu{
margin-top: 1rem;
}
.sure{
position: absolute;
bottom: 0;
right: 0;
background: #464646;
border: none;
color:#FFFFFF;
}
top:33%;
display: none;
}
.late{
background-image:resolve('life/login/late.png');
background-size: 100% 100%;
position: absolute;
width: 80%;
height:20%;
left: 10%;
top:33%;
display: none;
}
.sure{
position: absolute;
display: block;
width: 42%;
height: 23%;
left: 29%;
bottom: 3%;
color: #FFFFFF;
sborder: solid 0.05rem #FFFFFF;
}
}
@import "coupon";
\ No newline at end of file
... ...
... ... @@ -3,10 +3,10 @@
<input type="text" class="coupon-input" disabled="true">
<div class="share">立即将福利券分享给好友</div>
{{if wxshare}}
<input id="Link" type="hidden" value="{{shareLink}}">
<input id="Img" type="hidden" value="{{shareImg}}">
<input id="Title" type="hidden" value="{{shareTitle}}">
<input id="Desc" type="hidden" value="{{shareDesc}}">
<input id="link" type="hidden" value="{{shareLink}}">
<input id="iImg" type="hidden" value="{{shareImg}}">
<input id="title" type="hidden" value="{{shareTitle}}">
<input id="desc" type="hidden" value="{{shareDesc}}">
</if>
</div>
{{> layout/footer}}
\ No newline at end of file
... ...
... ... @@ -8,10 +8,14 @@
<div class="close"></div>
<img src="http://static.dev.yohobuy.com/img/life/login/codemark.jpg"/>
</div>
<div class="statu-mark"></div>
<div class="statu-box">
<p class="statu"></p>
<button class="sure">确定</button>
<div class="successed">
<a href="/life/coupon" class="sure"></a>
</div>
<div class="faill">
<a href="/life/index" class="sure"></a>
</div>
<div class="late">
<a href="/life/index" class="sure"></a>
</div>
</div>
{{> layout/footer}}
\ No newline at end of file
... ...
... ... @@ -56,7 +56,7 @@ class LifeController extends AbstractAction
$this->_view->display('coupon', array(
'wxshare' => array(
'shareLink' => 'http://m.yohobuy.com/life/coupon',
'shareImg' => '',
'shareImg' => 'http://static.dev.yohobuy.com/img/life/coupon/share-img.png',
'shareTitle' => 'YOHO!BUY有货清凉夏日福利券限时派送中 ',
'shareDesc' => '我已成功领取36元清凉夏日福利券,你也快来吧!',
),
... ...