Authored by weiqingting

商品端bug修改

... ... @@ -50,4 +50,8 @@ $('.shops_id').click(function(){
alert(data.message);
}
})
});
\ No newline at end of file
});
/*过滤特殊字符*/
$(document).on("keyup",":text",function(){
$(this).val($(this).val().replace(/\W/g,''))
})
\ No newline at end of file
... ...
... ... @@ -24,7 +24,6 @@ module.exports = {
};
});
}
//调用老系统的切换店铺的接口
authService.change(shopId, cookie, function(err, data) {
if (err) {
... ...