提交 64623ae7 编写于 作者: Q qiang

build v3

上级 65d6b880
......@@ -6394,8 +6394,9 @@ var serviceContext = (function () {
const createDownloadTaskById = function (downloadTaskId, {
url,
header,
timeout = __uniConfig.networkTimeout.downloadFile ? __uniConfig.networkTimeout.downloadFile / 1000 : 120
timeout
} = {}) {
timeout = (timeout || (__uniConfig.networkTimeout && __uniConfig.networkTimeout.request) || 60 * 1000) / 1000;
const downloader = plus.downloader.createDownload(url, {
timeout,
filename: TEMP_PATH + '/download/',
......@@ -6506,7 +6507,7 @@ var serviceContext = (function () {
responseType,
sslVerify = true,
firstIpv4 = false,
timeout = __uniConfig.networkTimeout.request
timeout = (__uniConfig.networkTimeout && __uniConfig.networkTimeout.request) || 60 * 1000
} = {}) {
const stream = requireNativePlugin('stream');
const headers = {};
......@@ -6965,8 +6966,8 @@ var serviceContext = (function () {
}, provider === 'apple' ? { scope: 'email' } : params.univerifyStyle || {});
}
// 先注销再登录
// apple登录logout之后无法重新触发获取email,fullname
if (provider === 'apple') {
// apple登录logout之后无法重新触发获取email,fullname;一键登录无logout
if (provider === 'apple' || provider === 'univerify') {
login();
} else {
service.logout(login, login);
......@@ -9822,13 +9823,19 @@ var serviceContext = (function () {
}
}
function checkInWindows (vm) {
{
return false
}
}
const requestComponentInfoCallbacks = createCallbacks('requestComponentInfo');
function requestComponentInfo (pageVm, queue, callback) {
UniServiceJSBridge.publishHandler('requestComponentInfo', {
reqId: requestComponentInfoCallbacks.push(callback),
reqs: queue
}, pageVm.$page.id);
}, checkInWindows() ? pageVm : pageVm.$page.id);
}
function parseDataset (attr) {
......@@ -19381,27 +19388,27 @@ var serviceContext = (function () {
class ServiceIntersectionObserver {
constructor (component, options) {
this.pageId = component.$page.id;
this.pageId = component.$page && component.$page.id;
this.component = component._$id || component; // app-plus 平台传输_$id
this.options = Object.assign({}, defaultOptions, options);
}
}
_makeRootMargin (margins = {}) {
this.options.rootMargin = ['top', 'right', 'bottom', 'left'].map(name => `${Number(margins[name]) || 0}px`).join(
' ');
}
}
relativeTo (selector, margins) {
this.options.relativeToSelector = selector;
this._makeRootMargin(margins);
return this
}
}
relativeToViewport (margins) {
this.options.relativeToSelector = null;
this._makeRootMargin(margins);
return this
}
}
observe (selector, callback) {
if (typeof callback !== 'function') {
......@@ -19415,13 +19422,13 @@ var serviceContext = (function () {
reqId: this.reqId,
component: this.component,
options: this.options
}, this.pageId);
}
}, checkInWindows(this.component) ? this.component : this.pageId);
}
disconnect () {
UniServiceJSBridge.publishHandler('destroyComponentObserver', {
reqId: this.reqId
}, this.pageId);
}, checkInWindows(this.component) ? this.component : this.pageId);
}
}
......@@ -19441,46 +19448,46 @@ var serviceContext = (function () {
createIntersectionObserver: createIntersectionObserver
});
const createMediaQueryObserverCallbacks = createCallbacks('requestMediaQueryObserver');
class ServiceMediaQueryObserver {
constructor (component, options) {
this.pageId = component.$page.id;
this.component = component._$id || component; // app-plus 平台传输_$id
this.options = options;
}
observe (options, callback) {
if (typeof callback !== 'function') {
return
}
this.options = options;
this.reqId = createMediaQueryObserverCallbacks.push(callback);
UniServiceJSBridge.publishHandler('requestMediaQueryObserver', {
reqId: this.reqId,
component: this.component,
options: this.options
}, this.pageId);
}
disconnect () {
UniServiceJSBridge.publishHandler('destroyMediaQueryObserver', {
reqId: this.reqId
}, this.pageId);
}
}
function createMediaQueryObserver (context, options) {
if (!context._isVue) {
options = context;
context = null;
}
if (context) {
return new ServiceMediaQueryObserver(context, options)
}
return new ServiceMediaQueryObserver(getCurrentPageVm('createMediaQueryObserver'), options)
const createMediaQueryObserverCallbacks = createCallbacks('requestMediaQueryObserver');
class ServiceMediaQueryObserver {
constructor (component, options) {
this.pageId = component.$page && component.$page.id;
this.component = component._$id || component; // app-plus 平台传输_$id
this.options = options;
}
observe (options, callback) {
if (typeof callback !== 'function') {
return
}
this.options = options;
this.reqId = createMediaQueryObserverCallbacks.push(callback);
UniServiceJSBridge.publishHandler('requestMediaQueryObserver', {
reqId: this.reqId,
component: this.component,
options: this.options
});
}
disconnect () {
UniServiceJSBridge.publishHandler('destroyMediaQueryObserver', {
reqId: this.reqId
});
}
}
function createMediaQueryObserver (context, options) {
if (!context._isVue) {
options = context;
context = null;
}
if (context) {
return new ServiceMediaQueryObserver(context, options)
}
return new ServiceMediaQueryObserver(getCurrentPageVm('createMediaQueryObserver'), options)
}
var require_context_module_1_24 = /*#__PURE__*/Object.freeze({
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册