Authored by yyq

dialog style

... ... @@ -720,7 +720,7 @@ giftCard = {
}
that.checkContent = '<h2>安全验证</h2>' +
'<p class="tip-info">您正在使用礼品卡支付,为了保障您的安全,请进行安全验证。</p>' +
'<p class="tip-info">您正在使用礼品卡支付,为了保证您的账户安全,需要进行安全验证。</p>' +
'<p class="receiver-info">验证码已发送至' + (data.data.userMobile || '您绑定的') + '手机号</p>' +
'<p><input type="text" placeholder="短信验证码" maxlength="8"><span class="send-sms">获取验证码</span></p>';
}
... ... @@ -1008,7 +1008,7 @@ $('#order-submit').click(function() {
}, {
id: 'check-sure',
btnClass: ['check-sure'],
name: '确定使用',
name: '确定',
cb: function() {
order.checkCode = $('input', checkDg.$el).val();
... ... @@ -1040,7 +1040,7 @@ $('#order-submit').click(function() {
this.timer = setInterval(function() {
if (that.seconds > 0) {
that.$sendBtn.text((that.seconds--) + 's').addClass('timer');
that.$sendBtn.text('重新获取(' +(that.seconds--) + '秒)').addClass('timer');
} else {
that.$sendBtn.text('重新获取').removeClass('timer');
clearInterval(that.timer);
... ...
... ... @@ -175,7 +175,7 @@ giftCard = {
}
that.checkContent = '<h2>安全验证</h2>' +
'<p class="tip-info">您正在使用礼品卡支付,为了保障您的安全,请进行安全验证。</p>' +
'<p class="tip-info">您正在使用礼品卡支付,为了保证您的账户安全,需要进行安全验证。</p>' +
'<p class="receiver-info">验证码已发送至' + (data.data.userMobile || '您绑定的') + '手机号</p>' +
'<p><input type="text" placeholder="短信验证码" maxlength="8"><span class="send-sms">获取验证码</span></p>';
}
... ... @@ -292,7 +292,7 @@ $('#order-submit').on('click', function() {
}, {
id: 'check-sure',
btnClass: ['check-sure'],
name: '确定使用',
name: '确定',
cb: function() {
order.checkCode = $('input', checkDg.$el).val();
... ... @@ -324,7 +324,7 @@ $('#order-submit').on('click', function() {
this.timer = setInterval(function() {
if (that.seconds > 0) {
that.$sendBtn.text((that.seconds--) + 's').addClass('timer');
that.$sendBtn.text('重新获取(' +(that.seconds--) + '秒)').addClass('timer');
} else {
that.$sendBtn.text('重新获取').removeClass('timer');
clearInterval(that.timer);
... ...
... ... @@ -1894,14 +1894,14 @@
}
input {
width: 170px;
width: 160px;
height: 30px;
padding-left: 10px;
box-sizing: border-box;
}
.send-sms {
width: 110px;
width: 120px;
height: 30px;
color: #fff;
margin-left: 20px;
... ...