...
|
...
|
@@ -4,7 +4,7 @@ import objectAssign from '../vendors/object-assign'; |
|
|
import trimObject from '../utils/trimObject';
|
|
|
import queryString from '../vendors/query-string';
|
|
|
import { getYHStorageSync } from '../utils/util';
|
|
|
import {API_HOST,APP_VERSION, CLIENT_TYPE, PRIVATE_KEY} from '../libs/config';
|
|
|
import {API_HOST,APP_VERSION, APP_BUILD, CLIENT_TYPE, PRIVATE_KEY} from '../libs/config';
|
|
|
import appReport from './appReport';
|
|
|
|
|
|
let crypto = require('./cryptojs/cryptojs.js').Crypto
|
...
|
...
|
@@ -302,6 +302,7 @@ function uploadLogData(method = 'POST') { |
|
|
|
|
|
function _publicParams() {
|
|
|
let app_version = APP_VERSION;
|
|
|
let app_build = APP_BUILD;
|
|
|
let os_version = '';
|
|
|
let client_type = CLIENT_TYPE;
|
|
|
let screen_size = '';
|
...
|
...
|
@@ -318,6 +319,7 @@ function _publicParams() { |
|
|
|
|
|
return {
|
|
|
app_version,
|
|
|
app_build,
|
|
|
os_version,
|
|
|
client_type,
|
|
|
screen_size,
|
...
|
...
|
|