WebApp【公共组件库】@前端(For Git Submodule)
Tevin
2021-08-08 63129eec2b3f78d8a34e1501d562fc2746ee3276
bases/Fetcher.js
@@ -19,7 +19,11 @@
            urlPrefix: options.urlPrefix || ['/api/common/', '/api/common/'],
        };
        if (project.host.mock === 'on') {
            if (project.host.assetsPath.indexOf('..') === 0) {
                this._defaultConfig.url = Fetcher.host + '/' + project.host.assetsPath.replace('/assets', '/mocks');
            } else {
            this._defaultConfig.url = Fetcher.host + project.host.assetsPath.replace('/assets', '/mocks');
            }
        } else {
            this._defaultConfig.url = Fetcher.host;
        }
@@ -280,7 +284,7 @@
            msg += '解析通讯数据异常!';
        }
        setTimeout(() => {
            this.message('error', msg);
            this.message('fail', msg);
        }, 20);
    }
@@ -549,7 +553,7 @@
            title: msg,
            icon: 'none',
            mask: true,
            duration: type === 'error' ? 5000 : 3000,
            duration: type === 'fail' ? 3000 : 2000,
        });
    }