isdata-customer-sdk 0.2.70 → 0.2.72
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.common.js +34 -5
- package/dist/index.common.js.map +1 -1
- package/dist/index.umd.js +12 -2
- package/dist/index.umd.js.map +1 -1
- package/dist/index.umd.min.js +3 -3
- package/dist/index.umd.min.js.map +1 -1
- package/package.json +1 -1
package/dist/index.common.js
CHANGED
|
@@ -1,4 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
(function webpackUniversalModuleDefinition(root, factory) {
|
|
2
|
+
if(typeof exports === 'object' && typeof module === 'object')
|
|
3
|
+
module.exports = factory(require("vue"));
|
|
4
|
+
else if(typeof define === 'function' && define.amd)
|
|
5
|
+
define([], factory);
|
|
6
|
+
else {
|
|
7
|
+
var a = typeof exports === 'object' ? factory(require("vue")) : factory(root["Vue"]);
|
|
8
|
+
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
|
9
|
+
}
|
|
10
|
+
})((typeof self !== 'undefined' ? self : this), function(__WEBPACK_EXTERNAL_MODULE__9274__) {
|
|
11
|
+
return /******/ (function() { // webpackBootstrap
|
|
2
12
|
/******/ var __webpack_modules__ = ({
|
|
3
13
|
|
|
4
14
|
/***/ 19:
|
|
@@ -28419,6 +28429,14 @@ module.exports = function isAbsoluteURL(url) {
|
|
|
28419
28429
|
};
|
|
28420
28430
|
|
|
28421
28431
|
|
|
28432
|
+
/***/ }),
|
|
28433
|
+
|
|
28434
|
+
/***/ 9274:
|
|
28435
|
+
/***/ (function(module) {
|
|
28436
|
+
|
|
28437
|
+
"use strict";
|
|
28438
|
+
module.exports = __WEBPACK_EXTERNAL_MODULE__9274__;
|
|
28439
|
+
|
|
28422
28440
|
/***/ }),
|
|
28423
28441
|
|
|
28424
28442
|
/***/ 9297:
|
|
@@ -29560,6 +29578,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
29560
29578
|
createFileFromUrl: function() { return /* reexport */ createFileFromUrl; },
|
|
29561
29579
|
createRegistApply: function() { return /* reexport */ createRegistApply; },
|
|
29562
29580
|
destroyEventCenter: function() { return /* reexport */ destroyEventCenter; },
|
|
29581
|
+
doRestPost: function() { return /* reexport */ doRestPost; },
|
|
29563
29582
|
extractFilenameFromUrl: function() { return /* reexport */ extractFilenameFromUrl; },
|
|
29564
29583
|
extractNewItems: function() { return /* reexport */ extractNewItems; },
|
|
29565
29584
|
findClosestAncestorByClass: function() { return /* reexport */ findClosestAncestorByClass; },
|
|
@@ -32532,8 +32551,8 @@ const getPhoneNumberByAccountName = async (accountName, groupID) => {
|
|
|
32532
32551
|
// EXTERNAL MODULE: ./node_modules/crypto-js/index.js
|
|
32533
32552
|
var crypto_js = __webpack_require__(1396);
|
|
32534
32553
|
var crypto_js_default = /*#__PURE__*/__webpack_require__.n(crypto_js);
|
|
32535
|
-
|
|
32536
|
-
var
|
|
32554
|
+
// EXTERNAL MODULE: external {"commonjs":"vue","commonjs2":"vue","root":"Vue"}
|
|
32555
|
+
var external_commonjs_vue_commonjs2_vue_root_Vue_ = __webpack_require__(9274);
|
|
32537
32556
|
;// ./src/api/i18n/smardaten_i18n/table_i18n.js
|
|
32538
32557
|
|
|
32539
32558
|
const check = element => {
|
|
@@ -33560,7 +33579,7 @@ const applyTranslation = async element => {
|
|
|
33560
33579
|
const translation = i18n(placeholderKey, appID, lang);
|
|
33561
33580
|
newValue = newValue.replace(fullMatch, translation);
|
|
33562
33581
|
}
|
|
33563
|
-
(0,
|
|
33582
|
+
(0,external_commonjs_vue_commonjs2_vue_root_Vue_.nextTick)(() => {
|
|
33564
33583
|
// 更新元素的innerHTML
|
|
33565
33584
|
element.innerHTML = newValue;
|
|
33566
33585
|
});
|
|
@@ -34117,6 +34136,15 @@ const getClientIp = async () => {
|
|
|
34117
34136
|
let ipAddress = resultData?.data?.clientIp;
|
|
34118
34137
|
return ipAddress;
|
|
34119
34138
|
};
|
|
34139
|
+
|
|
34140
|
+
/**
|
|
34141
|
+
* 通用服务方法调用
|
|
34142
|
+
* @returns
|
|
34143
|
+
*/
|
|
34144
|
+
const doRestPost = async (url, param) => {
|
|
34145
|
+
let resultData = await request.post(url, param);
|
|
34146
|
+
return resultData;
|
|
34147
|
+
};
|
|
34120
34148
|
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.iterator.some.js
|
|
34121
34149
|
var es_iterator_some = __webpack_require__(3579);
|
|
34122
34150
|
;// ./src/api/iframe.js
|
|
@@ -34745,7 +34773,8 @@ const isSMSCodeValidate = async (smsCode, sms_service_name_type, beyond_type_id,
|
|
|
34745
34773
|
|
|
34746
34774
|
|
|
34747
34775
|
}();
|
|
34748
|
-
|
|
34776
|
+
/******/ return __webpack_exports__;
|
|
34749
34777
|
/******/ })()
|
|
34750
34778
|
;
|
|
34779
|
+
});
|
|
34751
34780
|
//# sourceMappingURL=index.common.js.map
|