pb-sxp-ui 1.7.7 → 1.7.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +6 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +6 -2
- package/dist/index.js.map +1 -1
- package/dist/index.min.cjs +3 -3
- package/dist/index.min.cjs.map +1 -1
- package/dist/index.min.js +3 -3
- package/dist/index.min.js.map +1 -1
- package/dist/pb-ui.js +6 -2
- package/dist/pb-ui.js.map +1 -1
- package/dist/pb-ui.min.js +3 -3
- package/dist/pb-ui.min.js.map +1 -1
- package/es/core/context/SxpDataSourceProvider.js +6 -2
- package/lib/core/context/SxpDataSourceProvider.js +6 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -682,8 +682,12 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
|
|
682
682
|
// 事件上报优化
|
683
683
|
// Beacon API 用于发送异步和非阻塞请求到服务器。这类请求不需要响应。
|
684
684
|
if (options.type === 'beacon' && navigator.sendBeacon) {
|
685
|
+
const query = qs.stringify(Object.assign(Object.assign({}, bffDataSource.headers), { 'x-user-id': fakeUserId }));
|
686
|
+
if (query) {
|
687
|
+
path = (options === null || options === void 0 ? void 0 : options.query) ? `${path}&${query}` : `${path}?${query}`;
|
688
|
+
}
|
685
689
|
return navigator.sendBeacon(`${url}/api/v1${path}`, new Blob([
|
686
|
-
JSON.stringify(Object.assign(
|
690
|
+
JSON.stringify(Object.assign({}, options.body))
|
687
691
|
], { type: 'application/json;charset=UTF-8' }));
|
688
692
|
}
|
689
693
|
return window
|
@@ -839,7 +843,7 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
|
|
839
843
|
try {
|
840
844
|
let replaceValue = new Function('fix_par', 'product', `return ${prop}`)(fix_par, product);
|
841
845
|
if (replaceValue) {
|
842
|
-
if (prop.indexOf('currency') &&
|
846
|
+
if ((prop === null || prop === void 0 ? void 0 : prop.indexOf('currency')) !== -1 &&
|
843
847
|
(replaceValue === null || replaceValue === void 0 ? void 0 : replaceValue.indexOf('-')) !== -1 &&
|
844
848
|
typeof replaceValue === 'string') {
|
845
849
|
replaceValue = (_a = replaceValue === null || replaceValue === void 0 ? void 0 : replaceValue.split('-')) === null || _a === void 0 ? void 0 : _a[0];
|