cdk
2025-11-28 0b3b99553ae1de99564c5e6089c3c81ffdfb70e6
Scripts/config.js
@@ -73,15 +73,16 @@
 * @param:{string}     params          请求参数,非必填
 * @param:{string}     variation       请求头,非必填
 **/
Vue.prototype.AxiosHttp = (method, url, params = {}, isToken = true, isPC =0) => {
    if (isPC == 0)
    {
Vue.prototype.AxiosHttp = (method, url, params = {}, isToken = true, isPC = 0) => {
    if (isPC == 0) {
        url = (APIURL + url);
    }
    else{
    else {
        url = (APIURL_PC + url);
    }
    let headers = { 'Content-Type': 'application/json', }
    var orgId = Cookies.get('orgId')
    headers['OrgId'] = orgId;
    if (isToken) {
        var timestamp = (new Date()).getTime();
        var token = Cookies.get('loginGuid')