xctc-utils 1.6.17 → 1.6.18
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/weixin/index.js +7 -1
- package/package.json +1 -1
package/dist/weixin/index.js
CHANGED
|
@@ -360,16 +360,22 @@ function configReady(config) {
|
|
|
360
360
|
console.error("后端响应的data数据中缺乏appid或者appId或者AppId字段!");
|
|
361
361
|
return;
|
|
362
362
|
}
|
|
363
|
+
var timestamp = (data === null || data === void 0 ? void 0 : data.timestamp) || "";
|
|
364
|
+
if (!timestamp) {
|
|
365
|
+
return;
|
|
366
|
+
}
|
|
367
|
+
timestamp = Number(timestamp);
|
|
363
368
|
var obj = {
|
|
364
369
|
jsApiList: jsApiListData,
|
|
365
370
|
openTagList: openTagListData,
|
|
366
371
|
debug: false,
|
|
367
372
|
appId: data === null || data === void 0 ? void 0 : data.appid,
|
|
368
|
-
timestamp:
|
|
373
|
+
timestamp: timestamp,
|
|
369
374
|
nonceStr: data === null || data === void 0 ? void 0 : data.noncestr,
|
|
370
375
|
signature: data === null || data === void 0 ? void 0 : data.signature, //必填,生成的签名
|
|
371
376
|
};
|
|
372
377
|
var wx = initSdk();
|
|
378
|
+
(0, index_1.useSessionStorage)("configReadyData", obj);
|
|
373
379
|
wx.config(obj);
|
|
374
380
|
wx.ready(function (res) {
|
|
375
381
|
(0, index_1.useSessionStorage)("configReadySuccess", res);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "xctc-utils",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.18",
|
|
4
4
|
"description": "localStorage存储\r ```\r sessionStorage存储\r ```\r crypto-js加密、解密\r ```\r 微信授权登录、微信分享\r ```\r 设备环境获取\r ```\r 是否是微信浏览器\r ```\r 时间戳转时间,字符串转时间戳",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|