Authored by 李靖

服务端返回错误信息

... ... @@ -105,8 +105,6 @@ const submitTicket = (param) => {
mobile: param.mobile,
use_yoho_coin: param.useYohoCoin,
qhy_union: ''
}, {
code: 200
}).then((result) => {
return result;
});
... ...
... ... @@ -505,14 +505,14 @@ function ticketsConfirm() {
}
// 校验手机号
$ticketsMobile.blur(function() {
let reg = /^1[34578]\d{9}$/;
let mobile = $ticketsMobile.val();
if (!reg.test(mobile)) {
tip.show('手机号码不正确!');
}
});
// $ticketsMobile.blur(function() {
// let reg = /^1[34578]\d{9}$/;
// let mobile = $ticketsMobile.val();
// if (!reg.test(mobile)) {
// tip.show('手机号码不正确!');
// }
// });
// 留言点击滚动屏幕
$message.on('click', function() {
... ...