@@ -250,8 +250,10 @@
$.ajax({
url: baseUrl + '/api/user/v5/operateApi/addUserVisit',
type: 'post',
- data: { "accessType": 2, "loginType": 2 },
- dataType: 'json',
+ data: JSON.stringify({ "accessType": 2, "loginType": 2 }),
+ contentType:"application/json",
+ dataType: 'json',
+ cache: false,
success: function () {
}
})