component-shipinlv 0.0.25 → 0.0.27
Sign up to get free protection for your applications and to get access to all the features.
@@ -2,7 +2,7 @@ import _taggedTemplateLiteral from "@babel/runtime/helpers/esm/taggedTemplateLit
|
|
2
2
|
var _templateObject, _templateObject2, _templateObject3, _templateObject4;
|
3
3
|
import styled from 'styled-components';
|
4
4
|
export default {
|
5
|
-
AuthQrLogin: styled.div(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n .weQrUrl{\n position: absolute;\n left: 50%;\n transform: translateX(-50%);\n }\n .qr{\n display: block;\n margin: 12px auto 0;\n width: 230px;\n height: 230px;\n background-repeat: no-repeat;\n background-size: cover;\n background-position: center;\n &.qrAlipay{\n border: 3px solid #1677ff;\n }\n .reTry{\n font-size: 80px;\n background-color: rgba( 255, 255, 255, 0.95 );\n text-align: center;\n line-height: 210px;\n height: 100%;\n a{\n display: block;\n }\n }\n }\n .alt{\n padding: 10px 0 0;\n color: #999;\n text-align: center;\n }\n .altWeb{\n padding: 16px 0 0;\n max-width: 300px;\n margin: 0 auto;\n .titles{\n text-align: center;\n font-weight: bold;\n }\n ul{\n margin: 0 10px;\n }\n\n }\n .percent{\n width: 100%;\n position: absolute;\n overflow: hidden;\n left: 0;\n bottom: 0;\n .warp{\n height: 4px;\n background-color: #1677ff;\n transition: all 1.6s ease-in-out;\n -webkit-transition: all 1.6s ease-in-out;\n }\n }\n "]))),
|
5
|
+
AuthQrLogin: styled.div(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n .weQrUrl{\n position: absolute;\n left: 50%;\n transform: translateX(-50%);\n }\n .qr{\n position: relative;\n display: block;\n margin: 12px auto 0;\n width: 230px;\n height: 230px;\n background-repeat: no-repeat;\n background-size: cover;\n background-position: center;\n &.qrAlipay{\n border: 3px solid #1677ff;\n }\n .reTry{\n position: absolute;\n z-index: 100;\n left: 0;\n top: 0;\n width: 100%;\n font-size: 80px;\n background-color: rgba( 255, 255, 255, 0.95 );\n text-align: center;\n line-height: 210px;\n height: 100%;\n a{\n display: block;\n }\n }\n }\n .alt{\n padding: 10px 0 0;\n color: #999;\n text-align: center;\n }\n .altWeb{\n padding: 16px 0 0;\n max-width: 300px;\n margin: 0 auto;\n .titles{\n text-align: center;\n font-weight: bold;\n }\n ul{\n margin: 0 10px;\n }\n\n }\n .percent{\n width: 100%;\n position: absolute;\n overflow: hidden;\n left: 0;\n bottom: 0;\n .warp{\n height: 4px;\n background-color: #1677ff;\n transition: all 1.6s ease-in-out;\n -webkit-transition: all 1.6s ease-in-out;\n }\n }\n "]))),
|
6
6
|
LoginForm: styled.div(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n margin: 0 auto;\n padding: 0 0 5px 0 ;\n background-color: rgba(255, 255, 255, 0.75 );\n border-radius: 6px;\n "]))),
|
7
7
|
WebTitle: styled.div(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["\n font-weight: normal;\n font-size: 22px;\n text-align: center;\n padding: 0;\n margin: 6px 0 0 0;\n line-height: 1em;\n span{\n display: inline-block;\n padding-left: 5px;\n font-weight: lighter;\n font-size: 16px;\n }\n "]))),
|
8
8
|
WeQrUrlBox: styled.div(_templateObject4 || (_templateObject4 = _taggedTemplateLiteral(["\n min-height: 240px !important;\n "])))
|
package/dist/lib/Tool.js
CHANGED
@@ -21,7 +21,7 @@ import { jsx as _jsx } from "react/jsx-runtime";
|
|
21
21
|
var packageJson = require("../../package.json");
|
22
22
|
var store = {
|
23
23
|
key: function key() {
|
24
|
-
return "
|
24
|
+
return ""; // _shipinlv_
|
25
25
|
},
|
26
26
|
get: function get(name) {
|
27
27
|
var getData;
|
@@ -83,14 +83,14 @@ var Tool = _objectSpread(_objectSpread({
|
|
83
83
|
avatarUrl: '',
|
84
84
|
canWithdraw: 0,
|
85
85
|
douzhuliId36: ''
|
86
|
-
}, store.get('
|
86
|
+
}, store.get('user-info'));
|
87
87
|
storageUserInfo.avatarUrl = storageUserInfo.avatarUrl || 'https://douzhuli.oss-cn-hangzhou.aliyuncs.com/avatar/1-10.png';
|
88
88
|
return storageUserInfo;
|
89
89
|
},
|
90
90
|
setLocalUserInfo: function setLocalUserInfo() {
|
91
91
|
var data = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
92
92
|
var userInfo = _objectSpread(_objectSpread({}, this.getLocalUserInfo()), data);
|
93
|
-
store.set('
|
93
|
+
store.set('user-info', userInfo);
|
94
94
|
return userInfo;
|
95
95
|
},
|
96
96
|
getLocalSiteInfo: function getLocalSiteInfo() {
|
@@ -931,7 +931,7 @@ var Tool = _objectSpread(_objectSpread({
|
|
931
931
|
userInfo.isLogin = false;
|
932
932
|
delete userInfo.sid;
|
933
933
|
Tool.GData.userInfo = userInfo;
|
934
|
-
Tool.store.set('
|
934
|
+
Tool.store.set('user-info', userInfo);
|
935
935
|
},
|
936
936
|
onWindowError: function onWindowError() {
|
937
937
|
JsError();
|