Authored by 王水玲

Merge branch 'feature/installment2a' of git.yoho.cn:fe/yohobuywap-node into feature/installment2a

... ... @@ -463,6 +463,7 @@ const checkVerifyCode = (uid, mobile, code) => {
method: method,
mobile: mobile,
snsCheckCode: code,
codeType: 1, // 授信
debug: 'XYZ'
}, {
timeout: API_TIMEOUT
... ...
... ... @@ -139,6 +139,8 @@ $('#send-sms').click(function() {
return false;
}
$(self).data('running', true);
$.get('/home/installment/starting-service/verify-code', {
mobile: formModel.mobile
}).then(function(result) {
... ... @@ -158,6 +160,8 @@ $('#send-sms').click(function() {
tip.show(result.message);
$(self).data('running', false);
}
}).done(function() {
$(self).data('running', false);
});
return false;
... ...
... ... @@ -61,7 +61,7 @@ a {
}
@font-face {
font-family: "iconfont";
font-family: 'iconfont';
src: resolve('iconfont.eot'); /* IE9 */
src: resolve('iconfont.eot?#iefix') format('embedded-opentype'), resolve('iconfont.woff') format('woff'), resolve('iconfont.ttf') format('truetype'), resolve('iconfont.svg#iconfont') format('svg'); /* iOS 4.1- */
}
... ... @@ -70,7 +70,7 @@ a {
text-decoration: none;
font-style: normal;
font-size: 24px;
font-family: "iconfont" !important;
font-family: 'iconfont' !important;
-webkit-font-smoothing: antialiased;
-webkit-text-stroke-width: 0.4px;
-moz-osx-font-smoothing: grayscale;
... ... @@ -81,7 +81,7 @@ a {
display: none;
text-align: center;
width: 70%;
padding: 34PX 0;
padding: 18PX 55PX;
top: 50%;
left: 50%;
margin-left: -35%;
... ...