udxcms 2.0.6 → 2.0.7
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/components/basicComponents/WalletConnected.vue.d.ts +1 -0
- package/dist/components/h5Components/Menu.vue.d.ts +11 -1
- package/dist/components/h5Components/NoRecord.vue.d.ts +3 -1
- package/dist/components/h5Components/Top.vue.d.ts +1 -0
- package/dist/components/h5Components/walletconnectBottom.vue.d.ts +1 -0
- package/dist/index.css +1 -1
- package/dist/index.js +6 -6
- package/dist/index.mjs +161 -170
- package/package.json +3 -2
package/dist/index.mjs
CHANGED
|
@@ -12398,8 +12398,8 @@ lodash.exports;
|
|
|
12398
12398
|
copyObject(source2, keys3(source2), object2, customizer);
|
|
12399
12399
|
});
|
|
12400
12400
|
var at = flatRest(baseAt);
|
|
12401
|
-
function create4(
|
|
12402
|
-
var result2 = baseCreate(
|
|
12401
|
+
function create4(prototype, properties) {
|
|
12402
|
+
var result2 = baseCreate(prototype);
|
|
12403
12403
|
return properties == null ? result2 : baseAssign(result2, properties);
|
|
12404
12404
|
}
|
|
12405
12405
|
var defaults2 = baseRest(function(object2, sources) {
|
|
@@ -13695,8 +13695,8 @@ function isPlainObject(val) {
|
|
|
13695
13695
|
if (kindOf(val) !== "object") {
|
|
13696
13696
|
return false;
|
|
13697
13697
|
}
|
|
13698
|
-
var
|
|
13699
|
-
return
|
|
13698
|
+
var prototype = Object.getPrototypeOf(val);
|
|
13699
|
+
return prototype === null || prototype === Object.prototype;
|
|
13700
13700
|
}
|
|
13701
13701
|
var isDate$2 = kindOfTest("Date");
|
|
13702
13702
|
var isFile = kindOfTest("File");
|
|
@@ -13775,8 +13775,8 @@ function stripBOM(content2) {
|
|
|
13775
13775
|
}
|
|
13776
13776
|
return content2;
|
|
13777
13777
|
}
|
|
13778
|
-
function inherits$W(constructor, superConstructor, props,
|
|
13779
|
-
constructor.prototype = Object.create(superConstructor.prototype,
|
|
13778
|
+
function inherits$W(constructor, superConstructor, props, descriptors) {
|
|
13779
|
+
constructor.prototype = Object.create(superConstructor.prototype, descriptors);
|
|
13780
13780
|
constructor.prototype.constructor = constructor;
|
|
13781
13781
|
props && Object.assign(constructor.prototype, props);
|
|
13782
13782
|
}
|
|
@@ -13824,7 +13824,7 @@ var isTypedArray$3 = /* @__PURE__ */ function(TypedArray2) {
|
|
|
13824
13824
|
return TypedArray2 && thing instanceof TypedArray2;
|
|
13825
13825
|
};
|
|
13826
13826
|
}(typeof Uint8Array !== "undefined" && Object.getPrototypeOf(Uint8Array));
|
|
13827
|
-
var utils$
|
|
13827
|
+
var utils$B = {
|
|
13828
13828
|
isArray: isArray$6,
|
|
13829
13829
|
isArrayBuffer,
|
|
13830
13830
|
isBuffer,
|
|
@@ -13856,7 +13856,7 @@ var utils$C = {
|
|
|
13856
13856
|
isTypedArray: isTypedArray$3,
|
|
13857
13857
|
isFileList
|
|
13858
13858
|
};
|
|
13859
|
-
var utils$
|
|
13859
|
+
var utils$A = utils$B;
|
|
13860
13860
|
function encode$2(val) {
|
|
13861
13861
|
return encodeURIComponent(val).replace(/%3A/gi, ":").replace(/%24/g, "$").replace(/%2C/gi, ",").replace(/%20/g, "+").replace(/%5B/gi, "[").replace(/%5D/gi, "]");
|
|
13862
13862
|
}
|
|
@@ -13867,23 +13867,23 @@ var buildURL$1 = function buildURL2(url2, params, paramsSerializer) {
|
|
|
13867
13867
|
var serializedParams;
|
|
13868
13868
|
if (paramsSerializer) {
|
|
13869
13869
|
serializedParams = paramsSerializer(params);
|
|
13870
|
-
} else if (utils$
|
|
13870
|
+
} else if (utils$A.isURLSearchParams(params)) {
|
|
13871
13871
|
serializedParams = params.toString();
|
|
13872
13872
|
} else {
|
|
13873
13873
|
var parts = [];
|
|
13874
|
-
utils$
|
|
13874
|
+
utils$A.forEach(params, function serialize(val, key2) {
|
|
13875
13875
|
if (val === null || typeof val === "undefined") {
|
|
13876
13876
|
return;
|
|
13877
13877
|
}
|
|
13878
|
-
if (utils$
|
|
13878
|
+
if (utils$A.isArray(val)) {
|
|
13879
13879
|
key2 = key2 + "[]";
|
|
13880
13880
|
} else {
|
|
13881
13881
|
val = [val];
|
|
13882
13882
|
}
|
|
13883
|
-
utils$
|
|
13884
|
-
if (utils$
|
|
13883
|
+
utils$A.forEach(val, function parseValue(v2) {
|
|
13884
|
+
if (utils$A.isDate(v2)) {
|
|
13885
13885
|
v2 = v2.toISOString();
|
|
13886
|
-
} else if (utils$
|
|
13886
|
+
} else if (utils$A.isObject(v2)) {
|
|
13887
13887
|
v2 = JSON.stringify(v2);
|
|
13888
13888
|
}
|
|
13889
13889
|
parts.push(encode$2(key2) + "=" + encode$2(v2));
|
|
@@ -13900,7 +13900,7 @@ var buildURL$1 = function buildURL2(url2, params, paramsSerializer) {
|
|
|
13900
13900
|
}
|
|
13901
13901
|
return url2;
|
|
13902
13902
|
};
|
|
13903
|
-
var utils$
|
|
13903
|
+
var utils$z = utils$B;
|
|
13904
13904
|
function InterceptorManager$1() {
|
|
13905
13905
|
this.handlers = [];
|
|
13906
13906
|
}
|
|
@@ -13919,7 +13919,7 @@ InterceptorManager$1.prototype.eject = function eject(id2) {
|
|
|
13919
13919
|
}
|
|
13920
13920
|
};
|
|
13921
13921
|
InterceptorManager$1.prototype.forEach = function forEach2(fn7) {
|
|
13922
|
-
utils$
|
|
13922
|
+
utils$z.forEach(this.handlers, function forEachHandler(h) {
|
|
13923
13923
|
if (h !== null) {
|
|
13924
13924
|
fn7(h);
|
|
13925
13925
|
}
|
|
@@ -14088,76 +14088,83 @@ process.umask = function() {
|
|
|
14088
14088
|
};
|
|
14089
14089
|
var browserExports$1 = browser$i.exports;
|
|
14090
14090
|
const process$1 = /* @__PURE__ */ getDefaultExportFromCjs(browserExports$1);
|
|
14091
|
-
var utils$
|
|
14091
|
+
var utils$y = utils$B;
|
|
14092
14092
|
var normalizeHeaderName$1 = function normalizeHeaderName2(headers, normalizedName) {
|
|
14093
|
-
utils$
|
|
14093
|
+
utils$y.forEach(headers, function processHeader(value17, name) {
|
|
14094
14094
|
if (name !== normalizedName && name.toUpperCase() === normalizedName.toUpperCase()) {
|
|
14095
14095
|
headers[normalizedName] = value17;
|
|
14096
14096
|
delete headers[name];
|
|
14097
14097
|
}
|
|
14098
14098
|
});
|
|
14099
14099
|
};
|
|
14100
|
-
var
|
|
14101
|
-
|
|
14102
|
-
|
|
14103
|
-
|
|
14104
|
-
|
|
14105
|
-
|
|
14106
|
-
|
|
14107
|
-
|
|
14108
|
-
|
|
14109
|
-
|
|
14110
|
-
|
|
14111
|
-
|
|
14112
|
-
|
|
14113
|
-
|
|
14114
|
-
|
|
14115
|
-
|
|
14116
|
-
|
|
14117
|
-
|
|
14118
|
-
|
|
14119
|
-
|
|
14120
|
-
|
|
14121
|
-
|
|
14122
|
-
|
|
14123
|
-
|
|
14124
|
-
|
|
14125
|
-
|
|
14126
|
-
|
|
14127
|
-
|
|
14128
|
-
|
|
14129
|
-
|
|
14130
|
-
|
|
14131
|
-
|
|
14132
|
-
|
|
14133
|
-
|
|
14134
|
-
|
|
14135
|
-
"ERR_BAD_OPTION",
|
|
14136
|
-
"ECONNABORTED",
|
|
14137
|
-
"ETIMEDOUT",
|
|
14138
|
-
"ERR_NETWORK",
|
|
14139
|
-
"ERR_FR_TOO_MANY_REDIRECTS",
|
|
14140
|
-
"ERR_DEPRECATED",
|
|
14141
|
-
"ERR_BAD_RESPONSE",
|
|
14142
|
-
"ERR_BAD_REQUEST",
|
|
14143
|
-
"ERR_CANCELED"
|
|
14144
|
-
// eslint-disable-next-line func-names
|
|
14145
|
-
].forEach(function(code3) {
|
|
14146
|
-
descriptors[code3] = { value: code3 };
|
|
14147
|
-
});
|
|
14148
|
-
Object.defineProperties(AxiosError$2, descriptors);
|
|
14149
|
-
Object.defineProperty(prototype, "isAxiosError", { value: true });
|
|
14150
|
-
AxiosError$2.from = function(error3, code3, config2, request2, response, customProps) {
|
|
14151
|
-
var axiosError = Object.create(prototype);
|
|
14152
|
-
utils$y.toFlatObject(error3, axiosError, function filter2(obj) {
|
|
14153
|
-
return obj !== Error.prototype;
|
|
14100
|
+
var AxiosError_1;
|
|
14101
|
+
var hasRequiredAxiosError;
|
|
14102
|
+
function requireAxiosError() {
|
|
14103
|
+
if (hasRequiredAxiosError) return AxiosError_1;
|
|
14104
|
+
hasRequiredAxiosError = 1;
|
|
14105
|
+
var utils2 = utils$B;
|
|
14106
|
+
function AxiosError2(message, code3, config2, request2, response) {
|
|
14107
|
+
Error.call(this);
|
|
14108
|
+
this.message = message;
|
|
14109
|
+
this.name = "AxiosError";
|
|
14110
|
+
code3 && (this.code = code3);
|
|
14111
|
+
config2 && (this.config = config2);
|
|
14112
|
+
request2 && (this.request = request2);
|
|
14113
|
+
response && (this.response = response);
|
|
14114
|
+
}
|
|
14115
|
+
utils2.inherits(AxiosError2, Error, {
|
|
14116
|
+
toJSON: function toJSON2() {
|
|
14117
|
+
return {
|
|
14118
|
+
// Standard
|
|
14119
|
+
message: this.message,
|
|
14120
|
+
name: this.name,
|
|
14121
|
+
// Microsoft
|
|
14122
|
+
description: this.description,
|
|
14123
|
+
number: this.number,
|
|
14124
|
+
// Mozilla
|
|
14125
|
+
fileName: this.fileName,
|
|
14126
|
+
lineNumber: this.lineNumber,
|
|
14127
|
+
columnNumber: this.columnNumber,
|
|
14128
|
+
stack: this.stack,
|
|
14129
|
+
// Axios
|
|
14130
|
+
config: this.config,
|
|
14131
|
+
code: this.code,
|
|
14132
|
+
status: this.response && this.response.status ? this.response.status : null
|
|
14133
|
+
};
|
|
14134
|
+
}
|
|
14154
14135
|
});
|
|
14155
|
-
|
|
14156
|
-
|
|
14157
|
-
|
|
14158
|
-
|
|
14159
|
-
|
|
14160
|
-
|
|
14136
|
+
var prototype = AxiosError2.prototype;
|
|
14137
|
+
var descriptors = {};
|
|
14138
|
+
[
|
|
14139
|
+
"ERR_BAD_OPTION_VALUE",
|
|
14140
|
+
"ERR_BAD_OPTION",
|
|
14141
|
+
"ECONNABORTED",
|
|
14142
|
+
"ETIMEDOUT",
|
|
14143
|
+
"ERR_NETWORK",
|
|
14144
|
+
"ERR_FR_TOO_MANY_REDIRECTS",
|
|
14145
|
+
"ERR_DEPRECATED",
|
|
14146
|
+
"ERR_BAD_RESPONSE",
|
|
14147
|
+
"ERR_BAD_REQUEST",
|
|
14148
|
+
"ERR_CANCELED"
|
|
14149
|
+
// eslint-disable-next-line func-names
|
|
14150
|
+
].forEach(function(code3) {
|
|
14151
|
+
descriptors[code3] = { value: code3 };
|
|
14152
|
+
});
|
|
14153
|
+
Object.defineProperties(AxiosError2, descriptors);
|
|
14154
|
+
Object.defineProperty(prototype, "isAxiosError", { value: true });
|
|
14155
|
+
AxiosError2.from = function(error3, code3, config2, request2, response, customProps) {
|
|
14156
|
+
var axiosError = Object.create(prototype);
|
|
14157
|
+
utils2.toFlatObject(error3, axiosError, function filter2(obj) {
|
|
14158
|
+
return obj !== Error.prototype;
|
|
14159
|
+
});
|
|
14160
|
+
AxiosError2.call(axiosError, error3.message, code3, config2, request2, response);
|
|
14161
|
+
axiosError.name = error3.name;
|
|
14162
|
+
customProps && Object.assign(axiosError, customProps);
|
|
14163
|
+
return axiosError;
|
|
14164
|
+
};
|
|
14165
|
+
AxiosError_1 = AxiosError2;
|
|
14166
|
+
return AxiosError_1;
|
|
14167
|
+
}
|
|
14161
14168
|
var transitional = {
|
|
14162
14169
|
silentJSONParsing: true,
|
|
14163
14170
|
forcedJSONParsing: true,
|
|
@@ -15035,7 +15042,7 @@ ieee754.write = function(buffer2, value17, offset3, isLE, mLen, nBytes) {
|
|
|
15035
15042
|
}
|
|
15036
15043
|
}
|
|
15037
15044
|
};
|
|
15038
|
-
Buffer2.prototype.toJSON = function
|
|
15045
|
+
Buffer2.prototype.toJSON = function toJSON2() {
|
|
15039
15046
|
return {
|
|
15040
15047
|
type: "Buffer",
|
|
15041
15048
|
data: Array.prototype.slice.call(this._arr || this, 0)
|
|
@@ -15972,7 +15979,7 @@ var hasRequiredToFormData;
|
|
|
15972
15979
|
function requireToFormData() {
|
|
15973
15980
|
if (hasRequiredToFormData) return toFormData_1;
|
|
15974
15981
|
hasRequiredToFormData = 1;
|
|
15975
|
-
var utils2 = utils$
|
|
15982
|
+
var utils2 = utils$B;
|
|
15976
15983
|
function toFormData2(obj, formData) {
|
|
15977
15984
|
formData = formData || new FormData();
|
|
15978
15985
|
var stack = [];
|
|
@@ -16024,7 +16031,7 @@ var hasRequiredSettle;
|
|
|
16024
16031
|
function requireSettle() {
|
|
16025
16032
|
if (hasRequiredSettle) return settle;
|
|
16026
16033
|
hasRequiredSettle = 1;
|
|
16027
|
-
var AxiosError2 =
|
|
16034
|
+
var AxiosError2 = requireAxiosError();
|
|
16028
16035
|
settle = function settle2(resolve2, reject, response) {
|
|
16029
16036
|
var validateStatus2 = response.config.validateStatus;
|
|
16030
16037
|
if (!response.status || !validateStatus2 || validateStatus2(response.status)) {
|
|
@@ -16046,7 +16053,7 @@ var hasRequiredCookies;
|
|
|
16046
16053
|
function requireCookies() {
|
|
16047
16054
|
if (hasRequiredCookies) return cookies;
|
|
16048
16055
|
hasRequiredCookies = 1;
|
|
16049
|
-
var utils2 = utils$
|
|
16056
|
+
var utils2 = utils$B;
|
|
16050
16057
|
cookies = utils2.isStandardBrowserEnv() ? (
|
|
16051
16058
|
// Standard browser envs support document.cookie
|
|
16052
16059
|
/* @__PURE__ */ function standardBrowserEnv() {
|
|
@@ -16112,7 +16119,7 @@ var hasRequiredParseHeaders;
|
|
|
16112
16119
|
function requireParseHeaders() {
|
|
16113
16120
|
if (hasRequiredParseHeaders) return parseHeaders;
|
|
16114
16121
|
hasRequiredParseHeaders = 1;
|
|
16115
|
-
var utils2 = utils$
|
|
16122
|
+
var utils2 = utils$B;
|
|
16116
16123
|
var ignoreDuplicateOf = [
|
|
16117
16124
|
"age",
|
|
16118
16125
|
"authorization",
|
|
@@ -16164,7 +16171,7 @@ var hasRequiredIsURLSameOrigin;
|
|
|
16164
16171
|
function requireIsURLSameOrigin() {
|
|
16165
16172
|
if (hasRequiredIsURLSameOrigin) return isURLSameOrigin;
|
|
16166
16173
|
hasRequiredIsURLSameOrigin = 1;
|
|
16167
|
-
var utils2 = utils$
|
|
16174
|
+
var utils2 = utils$B;
|
|
16168
16175
|
isURLSameOrigin = utils2.isStandardBrowserEnv() ? (
|
|
16169
16176
|
// Standard browser envs have full support of the APIs needed to test
|
|
16170
16177
|
// whether the request URL is of the same origin as current location.
|
|
@@ -16211,8 +16218,8 @@ var hasRequiredCanceledError;
|
|
|
16211
16218
|
function requireCanceledError() {
|
|
16212
16219
|
if (hasRequiredCanceledError) return CanceledError_1;
|
|
16213
16220
|
hasRequiredCanceledError = 1;
|
|
16214
|
-
var AxiosError2 =
|
|
16215
|
-
var utils2 = utils$
|
|
16221
|
+
var AxiosError2 = requireAxiosError();
|
|
16222
|
+
var utils2 = utils$B;
|
|
16216
16223
|
function CanceledError2(message) {
|
|
16217
16224
|
AxiosError2.call(this, message == null ? "canceled" : message, AxiosError2.ERR_CANCELED);
|
|
16218
16225
|
this.name = "CanceledError";
|
|
@@ -16239,7 +16246,7 @@ var hasRequiredXhr;
|
|
|
16239
16246
|
function requireXhr() {
|
|
16240
16247
|
if (hasRequiredXhr) return xhr$1;
|
|
16241
16248
|
hasRequiredXhr = 1;
|
|
16242
|
-
var utils2 = utils$
|
|
16249
|
+
var utils2 = utils$B;
|
|
16243
16250
|
var settle2 = requireSettle();
|
|
16244
16251
|
var cookies2 = requireCookies();
|
|
16245
16252
|
var buildURL3 = buildURL$1;
|
|
@@ -16247,7 +16254,7 @@ function requireXhr() {
|
|
|
16247
16254
|
var parseHeaders2 = requireParseHeaders();
|
|
16248
16255
|
var isURLSameOrigin2 = requireIsURLSameOrigin();
|
|
16249
16256
|
var transitionalDefaults2 = transitional;
|
|
16250
|
-
var AxiosError2 =
|
|
16257
|
+
var AxiosError2 = requireAxiosError();
|
|
16251
16258
|
var CanceledError2 = requireCanceledError();
|
|
16252
16259
|
var parseProtocol2 = requireParseProtocol();
|
|
16253
16260
|
xhr$1 = function xhrAdapter(config2) {
|
|
@@ -16399,9 +16406,9 @@ function require_null() {
|
|
|
16399
16406
|
_null = null;
|
|
16400
16407
|
return _null;
|
|
16401
16408
|
}
|
|
16402
|
-
var utils$x = utils$
|
|
16409
|
+
var utils$x = utils$B;
|
|
16403
16410
|
var normalizeHeaderName = normalizeHeaderName$1;
|
|
16404
|
-
var AxiosError$1 =
|
|
16411
|
+
var AxiosError$1 = requireAxiosError();
|
|
16405
16412
|
var transitionalDefaults = transitional;
|
|
16406
16413
|
var toFormData = requireToFormData();
|
|
16407
16414
|
var DEFAULT_CONTENT_TYPE = {
|
|
@@ -16509,7 +16516,7 @@ utils$x.forEach(["post", "put", "patch"], function forEachMethodWithData(method)
|
|
|
16509
16516
|
defaults$4.headers[method] = utils$x.merge(DEFAULT_CONTENT_TYPE);
|
|
16510
16517
|
});
|
|
16511
16518
|
var defaults_1 = defaults$4;
|
|
16512
|
-
var utils$w = utils$
|
|
16519
|
+
var utils$w = utils$B;
|
|
16513
16520
|
var defaults$3 = defaults_1;
|
|
16514
16521
|
var transformData$1 = function transformData2(data50, headers, fns) {
|
|
16515
16522
|
var context2 = this || defaults$3;
|
|
@@ -16528,7 +16535,7 @@ function requireIsCancel() {
|
|
|
16528
16535
|
};
|
|
16529
16536
|
return isCancel$1;
|
|
16530
16537
|
}
|
|
16531
|
-
var utils$v = utils$
|
|
16538
|
+
var utils$v = utils$B;
|
|
16532
16539
|
var transformData = transformData$1;
|
|
16533
16540
|
var isCancel = requireIsCancel();
|
|
16534
16541
|
var defaults$2 = defaults_1;
|
|
@@ -16586,7 +16593,7 @@ var dispatchRequest$1 = function dispatchRequest2(config2) {
|
|
|
16586
16593
|
return Promise.reject(reason);
|
|
16587
16594
|
});
|
|
16588
16595
|
};
|
|
16589
|
-
var utils$u = utils$
|
|
16596
|
+
var utils$u = utils$B;
|
|
16590
16597
|
var mergeConfig$2 = function mergeConfig2(config1, config2) {
|
|
16591
16598
|
config2 = config2 || {};
|
|
16592
16599
|
var config3 = {};
|
|
@@ -16674,7 +16681,7 @@ function requireData() {
|
|
|
16674
16681
|
return data;
|
|
16675
16682
|
}
|
|
16676
16683
|
var VERSION = requireData().version;
|
|
16677
|
-
var AxiosError =
|
|
16684
|
+
var AxiosError = requireAxiosError();
|
|
16678
16685
|
var validators$1 = {};
|
|
16679
16686
|
["object", "boolean", "number", "function", "string", "symbol"].forEach(function(type3, i2) {
|
|
16680
16687
|
validators$1[type3] = function validator4(thing) {
|
|
@@ -16731,7 +16738,7 @@ var validator$1 = {
|
|
|
16731
16738
|
assertOptions,
|
|
16732
16739
|
validators: validators$1
|
|
16733
16740
|
};
|
|
16734
|
-
var utils$t = utils$
|
|
16741
|
+
var utils$t = utils$B;
|
|
16735
16742
|
var buildURL = buildURL$1;
|
|
16736
16743
|
var InterceptorManager = InterceptorManager_1;
|
|
16737
16744
|
var dispatchRequest = dispatchRequest$1;
|
|
@@ -16943,13 +16950,13 @@ var hasRequiredIsAxiosError;
|
|
|
16943
16950
|
function requireIsAxiosError() {
|
|
16944
16951
|
if (hasRequiredIsAxiosError) return isAxiosError;
|
|
16945
16952
|
hasRequiredIsAxiosError = 1;
|
|
16946
|
-
var utils2 = utils$
|
|
16953
|
+
var utils2 = utils$B;
|
|
16947
16954
|
isAxiosError = function isAxiosError2(payload) {
|
|
16948
16955
|
return utils2.isObject(payload) && payload.isAxiosError === true;
|
|
16949
16956
|
};
|
|
16950
16957
|
return isAxiosError;
|
|
16951
16958
|
}
|
|
16952
|
-
var utils$s = utils$
|
|
16959
|
+
var utils$s = utils$B;
|
|
16953
16960
|
var bind$5 = bind$7;
|
|
16954
16961
|
var Axios = Axios_1;
|
|
16955
16962
|
var mergeConfig = mergeConfig$2;
|
|
@@ -16971,7 +16978,7 @@ axios$3.CancelToken = requireCancelToken();
|
|
|
16971
16978
|
axios$3.isCancel = requireIsCancel();
|
|
16972
16979
|
axios$3.VERSION = requireData().version;
|
|
16973
16980
|
axios$3.toFormData = requireToFormData();
|
|
16974
|
-
axios$3.AxiosError =
|
|
16981
|
+
axios$3.AxiosError = requireAxiosError();
|
|
16975
16982
|
axios$3.Cancel = axios$3.CanceledError;
|
|
16976
16983
|
axios$3.all = function all(promises) {
|
|
16977
16984
|
return Promise.all(promises);
|
|
@@ -17567,7 +17574,7 @@ bn$6.exports;
|
|
|
17567
17574
|
}
|
|
17568
17575
|
return this.negative !== 0 ? -ret : ret;
|
|
17569
17576
|
};
|
|
17570
|
-
BN2.prototype.toJSON = function
|
|
17577
|
+
BN2.prototype.toJSON = function toJSON2() {
|
|
17571
17578
|
return this.toString(16, 2);
|
|
17572
17579
|
};
|
|
17573
17580
|
if (Buffer2) {
|
|
@@ -25108,17 +25115,10 @@ var implementation$1 = function bind3(that) {
|
|
|
25108
25115
|
var implementation = implementation$1;
|
|
25109
25116
|
var functionBind = Function.prototype.bind || implementation;
|
|
25110
25117
|
var functionCall = Function.prototype.call;
|
|
25111
|
-
var functionApply;
|
|
25112
|
-
var hasRequiredFunctionApply;
|
|
25113
|
-
function requireFunctionApply() {
|
|
25114
|
-
if (hasRequiredFunctionApply) return functionApply;
|
|
25115
|
-
hasRequiredFunctionApply = 1;
|
|
25116
|
-
functionApply = Function.prototype.apply;
|
|
25117
|
-
return functionApply;
|
|
25118
|
-
}
|
|
25118
|
+
var functionApply = Function.prototype.apply;
|
|
25119
25119
|
var reflectApply = typeof Reflect !== "undefined" && Reflect && Reflect.apply;
|
|
25120
25120
|
var bind$4 = functionBind;
|
|
25121
|
-
var $apply$1 =
|
|
25121
|
+
var $apply$1 = functionApply;
|
|
25122
25122
|
var $call$2 = functionCall;
|
|
25123
25123
|
var $reflectApply = reflectApply;
|
|
25124
25124
|
var actualApply = $reflectApply || bind$4.call($call$2, $apply$1);
|
|
@@ -25238,7 +25238,7 @@ var hasSymbols = requireHasSymbols()();
|
|
|
25238
25238
|
var getProto$1 = requireGetProto();
|
|
25239
25239
|
var $ObjectGPO = requireObject_getPrototypeOf();
|
|
25240
25240
|
var $ReflectGPO = requireReflect_getPrototypeOf();
|
|
25241
|
-
var $apply =
|
|
25241
|
+
var $apply = functionApply;
|
|
25242
25242
|
var $call = functionCall;
|
|
25243
25243
|
var needsEval = {};
|
|
25244
25244
|
var TypedArray = typeof Uint8Array === "undefined" || !getProto$1 ? undefined$1 : getProto$1(Uint8Array);
|
|
@@ -26005,7 +26005,7 @@ function requireApplyBind() {
|
|
|
26005
26005
|
if (hasRequiredApplyBind) return applyBind;
|
|
26006
26006
|
hasRequiredApplyBind = 1;
|
|
26007
26007
|
var bind5 = functionBind;
|
|
26008
|
-
var $apply2 =
|
|
26008
|
+
var $apply2 = functionApply;
|
|
26009
26009
|
var actualApply$1 = actualApply;
|
|
26010
26010
|
applyBind = function applyBind2() {
|
|
26011
26011
|
return actualApply$1(bind5, $apply2, arguments);
|
|
@@ -26400,11 +26400,11 @@ var isBufferBrowser = function isBuffer2(arg) {
|
|
|
26400
26400
|
var define_process_env_default2 = {};
|
|
26401
26401
|
var getOwnPropertyDescriptors = Object.getOwnPropertyDescriptors || function getOwnPropertyDescriptors2(obj) {
|
|
26402
26402
|
var keys3 = Object.keys(obj);
|
|
26403
|
-
var
|
|
26403
|
+
var descriptors = {};
|
|
26404
26404
|
for (var i2 = 0; i2 < keys3.length; i2++) {
|
|
26405
|
-
|
|
26405
|
+
descriptors[keys3[i2]] = Object.getOwnPropertyDescriptor(obj, keys3[i2]);
|
|
26406
26406
|
}
|
|
26407
|
-
return
|
|
26407
|
+
return descriptors;
|
|
26408
26408
|
};
|
|
26409
26409
|
var formatRegExp = /%[sdj%]/g;
|
|
26410
26410
|
exports$12.format = function(f2) {
|
|
@@ -36017,7 +36017,7 @@ bn$5.exports;
|
|
|
36017
36017
|
}
|
|
36018
36018
|
return this.negative !== 0 ? -ret : ret;
|
|
36019
36019
|
};
|
|
36020
|
-
BN2.prototype.toJSON = function
|
|
36020
|
+
BN2.prototype.toJSON = function toJSON2() {
|
|
36021
36021
|
return this.toString(16);
|
|
36022
36022
|
};
|
|
36023
36023
|
BN2.prototype.toBuffer = function toBuffer3(endian, length) {
|
|
@@ -38826,7 +38826,7 @@ bn$4.exports;
|
|
|
38826
38826
|
}
|
|
38827
38827
|
return this.negative !== 0 ? -ret : ret;
|
|
38828
38828
|
};
|
|
38829
|
-
BN2.prototype.toJSON = function
|
|
38829
|
+
BN2.prototype.toJSON = function toJSON2() {
|
|
38830
38830
|
return this.toString(16);
|
|
38831
38831
|
};
|
|
38832
38832
|
BN2.prototype.toBuffer = function toBuffer3(endian, length) {
|
|
@@ -43666,7 +43666,7 @@ bn$3.exports;
|
|
|
43666
43666
|
}
|
|
43667
43667
|
return this.negative !== 0 ? -ret : ret;
|
|
43668
43668
|
};
|
|
43669
|
-
BN2.prototype.toJSON = function
|
|
43669
|
+
BN2.prototype.toJSON = function toJSON2() {
|
|
43670
43670
|
return this.toString(16);
|
|
43671
43671
|
};
|
|
43672
43672
|
BN2.prototype.toBuffer = function toBuffer3(endian, length) {
|
|
@@ -46712,7 +46712,7 @@ Point$3.prototype._getBeta = function _getBeta2() {
|
|
|
46712
46712
|
}
|
|
46713
46713
|
return beta;
|
|
46714
46714
|
};
|
|
46715
|
-
Point$3.prototype.toJSON = function
|
|
46715
|
+
Point$3.prototype.toJSON = function toJSON() {
|
|
46716
46716
|
if (!this.precomputed)
|
|
46717
46717
|
return [this.x, this.y];
|
|
46718
46718
|
return [this.x, this.y, this.precomputed && {
|
|
@@ -49752,7 +49752,7 @@ bn$2.exports;
|
|
|
49752
49752
|
}
|
|
49753
49753
|
return this.negative !== 0 ? -ret : ret;
|
|
49754
49754
|
};
|
|
49755
|
-
BN2.prototype.toJSON = function
|
|
49755
|
+
BN2.prototype.toJSON = function toJSON2() {
|
|
49756
49756
|
return this.toString(16);
|
|
49757
49757
|
};
|
|
49758
49758
|
BN2.prototype.toBuffer = function toBuffer3(endian, length) {
|
|
@@ -54853,7 +54853,7 @@ bn$1.exports;
|
|
|
54853
54853
|
}
|
|
54854
54854
|
return this.negative !== 0 ? -ret : ret;
|
|
54855
54855
|
};
|
|
54856
|
-
BN2.prototype.toJSON = function
|
|
54856
|
+
BN2.prototype.toJSON = function toJSON2() {
|
|
54857
54857
|
return this.toString(16);
|
|
54858
54858
|
};
|
|
54859
54859
|
BN2.prototype.toBuffer = function toBuffer3(endian, length) {
|
|
@@ -57807,7 +57807,7 @@ bn.exports;
|
|
|
57807
57807
|
}
|
|
57808
57808
|
return this.negative !== 0 ? -ret : ret;
|
|
57809
57809
|
};
|
|
57810
|
-
BN2.prototype.toJSON = function
|
|
57810
|
+
BN2.prototype.toJSON = function toJSON2() {
|
|
57811
57811
|
return this.toString(16);
|
|
57812
57812
|
};
|
|
57813
57813
|
BN2.prototype.toBuffer = function toBuffer3(endian, length) {
|
|
@@ -66953,14 +66953,14 @@ Selection$1.prototype = selection.prototype = {
|
|
|
66953
66953
|
function select(selector2) {
|
|
66954
66954
|
return typeof selector2 === "string" ? new Selection$1([[document.querySelector(selector2)]], [document.documentElement]) : new Selection$1([[selector2]], root$3);
|
|
66955
66955
|
}
|
|
66956
|
-
function define(constructor, factory,
|
|
66957
|
-
constructor.prototype = factory.prototype =
|
|
66958
|
-
|
|
66956
|
+
function define(constructor, factory, prototype) {
|
|
66957
|
+
constructor.prototype = factory.prototype = prototype;
|
|
66958
|
+
prototype.constructor = constructor;
|
|
66959
66959
|
}
|
|
66960
66960
|
function extend$1(parent2, definition) {
|
|
66961
|
-
var
|
|
66962
|
-
for (var key2 in definition)
|
|
66963
|
-
return
|
|
66961
|
+
var prototype = Object.create(parent2.prototype);
|
|
66962
|
+
for (var key2 in definition) prototype[key2] = definition[key2];
|
|
66963
|
+
return prototype;
|
|
66964
66964
|
}
|
|
66965
66965
|
function Color() {
|
|
66966
66966
|
}
|
|
@@ -70866,6 +70866,9 @@ const _sfc_main$1S = {
|
|
|
70866
70866
|
var _a3;
|
|
70867
70867
|
return ((_a3 = this.btcWallet) == null ? void 0 : _a3.btcAccoount) || this.$store.getters["wallet/account"];
|
|
70868
70868
|
},
|
|
70869
|
+
lockedAccount() {
|
|
70870
|
+
return this.$store.getters["wallet/lockedAccount"];
|
|
70871
|
+
},
|
|
70869
70872
|
accountIsCustody() {
|
|
70870
70873
|
return this.$store.getters["wallet/accountIsCustody"];
|
|
70871
70874
|
},
|
|
@@ -70908,7 +70911,7 @@ var _sfc_render$1S = function render29() {
|
|
|
70908
70911
|
return _c2("div", { staticClass: "wallet-connected-component" }, [!_vm.isLocked ? _c2("div", { class: ["wallet-connected", _vm.selfTheme && "wallet-connected-theme"] }, [_vm.accountIsCustody ? _c2("div", { staticClass: "svg-icon-wrapper" }, [_c2("SvgIcon", { attrs: { "icon-class": "user-wallet", "stroke": "none", "className": "wallet-icon" } })], 1) : [_vm.walletIcon.indexOf("<svg") == -1 ? _c2("img", { attrs: { "src": _vm.walletIcon || "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cmVjdCB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHJ4PSI4IiBmaWxsPSIjNjYzIi8+Cjwvc3ZnPg==", "alt": "" } }) : _c2("span", { staticClass: "svg-wallet-icon", domProps: { "innerHTML": _vm._s(_vm.walletIcon) } })], _c2("span", { staticClass: "user-account" }, [_vm._v(_vm._s(_vm.formatAccount(_vm.account)))]), _c2("a-icon", { attrs: { "type": "caret-down" } })], 2) : _c2("div", { class: [
|
|
70909
70912
|
"wallet-connected wallet-locked",
|
|
70910
70913
|
_vm.selfTheme && "wallet-connected-theme"
|
|
70911
|
-
] }, [_vm.walletIcon.indexOf("<svg") == -1 ? _c2("img", { attrs: { "src": _vm.walletIcon || "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cmVjdCB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHJ4PSI4IiBmaWxsPSIjNjYzIi8+Cjwvc3ZnPg==", "alt": "" } }) : _c2("span", { domProps: { "innerHTML": _vm._s(_vm.walletIcon) } }), _c2("span", { staticClass: "user-account" }, [_vm._v(_vm._s(_vm.connetcedWalletAccount))]), _c2("a-icon", { staticClass: "icon-locked", attrs: { "type": "lock" } })], 1), _c2("div", { staticClass: "menu-dropdown" }, [_vm.userMenus.length > 0 || _vm.walletType == "L1" && !_vm.l1Login ? _c2("UserMenu", { attrs: { "isLocked": _vm.isLocked, "accountIsCustody": _vm.accountIsCustody, "account": _vm.account } }) : _c2("userPanel", { attrs: { "top": "0", "isClickstatus": false, "type": "B" }, model: { value: _vm.walletMenuVisible, callback: function($$v) {
|
|
70914
|
+
] }, [_vm.walletIcon.indexOf("<svg") == -1 ? _c2("img", { attrs: { "src": _vm.walletIcon || "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cmVjdCB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHJ4PSI4IiBmaWxsPSIjNjYzIi8+Cjwvc3ZnPg==", "alt": "" } }) : _c2("span", { domProps: { "innerHTML": _vm._s(_vm.walletIcon) } }), _c2("span", { staticClass: "user-account" }, [_vm._v(_vm._s(_vm.connetcedWalletAccount || _vm.lockedAccount))]), _c2("a-icon", { staticClass: "icon-locked", attrs: { "type": "lock" } })], 1), _c2("div", { staticClass: "menu-dropdown" }, [_vm.userMenus.length > 0 || _vm.walletType == "L1" && !_vm.l1Login ? _c2("UserMenu", { attrs: { "isLocked": _vm.isLocked, "accountIsCustody": _vm.accountIsCustody, "account": _vm.account } }) : _c2("userPanel", { attrs: { "top": "0", "isClickstatus": false, "type": "B" }, model: { value: _vm.walletMenuVisible, callback: function($$v) {
|
|
70912
70915
|
_vm.walletMenuVisible = $$v;
|
|
70913
70916
|
}, expression: "walletMenuVisible" } })], 1)]);
|
|
70914
70917
|
};
|
|
@@ -91228,7 +91231,7 @@ const _sfc_main$1F = {
|
|
|
91228
91231
|
methods: {
|
|
91229
91232
|
goPage() {
|
|
91230
91233
|
const isGame = window.__isInnerFrame__;
|
|
91231
|
-
let localRouteData = JSON.parse(localStorage.getItem("localRoute") || []);
|
|
91234
|
+
let localRouteData = JSON.parse(localStorage.getItem("localRoute") || "[]");
|
|
91232
91235
|
let currentRoute = localRouteData[localRouteData.length - 1];
|
|
91233
91236
|
if (isGame && currentRoute) {
|
|
91234
91237
|
let { path: path4, query, params } = currentRoute.fromData || {};
|
|
@@ -91690,7 +91693,7 @@ var __component__$1B = /* @__PURE__ */ normalizeComponent(
|
|
|
91690
91693
|
_sfc_staticRenderFns$1B,
|
|
91691
91694
|
false,
|
|
91692
91695
|
null,
|
|
91693
|
-
"
|
|
91696
|
+
"799bce57"
|
|
91694
91697
|
);
|
|
91695
91698
|
const NavCenter = __component__$1B.exports;
|
|
91696
91699
|
const _sfc_main$1A = {
|
|
@@ -91726,6 +91729,7 @@ var __component__$1A = /* @__PURE__ */ normalizeComponent(
|
|
|
91726
91729
|
);
|
|
91727
91730
|
const MediaList = __component__$1A.exports;
|
|
91728
91731
|
const _sfc_main$1z = {
|
|
91732
|
+
mixins: [themeMixin],
|
|
91729
91733
|
name: "Menu-h5",
|
|
91730
91734
|
components: {
|
|
91731
91735
|
NavCenter,
|
|
@@ -91859,24 +91863,6 @@ const _sfc_main$1z = {
|
|
|
91859
91863
|
created() {
|
|
91860
91864
|
},
|
|
91861
91865
|
methods: {
|
|
91862
|
-
// dealSite() {
|
|
91863
|
-
// let navList = this.$t('site_common_header_navigation_bar') != 'site_common_header_navigation_bar' ? JSON.parse(this.$t('site_common_header_navigation_bar')) : []
|
|
91864
|
-
// navList.sort((a, b) => a.sort - b.sort);
|
|
91865
|
-
// // console.log('navList1: ', navList);
|
|
91866
|
-
// let parentNavList = navList.filter(v => !v.parent_id && v.client == 'H5')
|
|
91867
|
-
// let childNavList = navList.filter(v => v.parent_id && v.client == 'H5')
|
|
91868
|
-
// this.navList = parentNavList.map(v => {
|
|
91869
|
-
// v.child = []
|
|
91870
|
-
// childNavList.map(child => {
|
|
91871
|
-
// if (v.id == child.parent_id) {
|
|
91872
|
-
// v.child.push(child)
|
|
91873
|
-
// }
|
|
91874
|
-
// })
|
|
91875
|
-
// return v
|
|
91876
|
-
// })
|
|
91877
|
-
// // this.dealTheme()
|
|
91878
|
-
// console.log('navList', this.navList)
|
|
91879
|
-
// },
|
|
91880
91866
|
dealSietMode() {
|
|
91881
91867
|
let siteModel = this.$store.state.siteModel;
|
|
91882
91868
|
console.log("siteModel", siteModel);
|
|
@@ -91947,13 +91933,13 @@ const _sfc_main$1z = {
|
|
|
91947
91933
|
};
|
|
91948
91934
|
var _sfc_render$1z = function render129() {
|
|
91949
91935
|
var _vm = this, _c2 = _vm._self._c;
|
|
91950
|
-
return _c2("div", {
|
|
91936
|
+
return _c2("div", { class: ["menu", "theme-" + _vm.themeMode] }, [_c2("div", { staticClass: "mask", on: { "click": _vm.close } }), _c2("div", { staticClass: "menu-content" }, [_c2("div", { staticClass: "close" }, [_c2("svg-icon", { staticClass: "icon-close", attrs: { "icon-class": "close-x" }, on: { "click": _vm.close } })], 1), _vm.menuType == "main" ? _c2("div", { staticClass: "menu-list" }, [_c2("NavCenter", { attrs: { "navList": _vm.portfolioList, "styleConf": _vm.styleConf }, on: { "close": _vm.close } })], 1) : _vm._e(), _vm.menuType == "wallet" ? _c2("div", { staticClass: "menu-list" }, [_c2("NavCenter", { attrs: { "navList": _vm.userMenus, "styleConf": _vm.styleConf }, on: { "close": _vm.close } })], 1) : _vm._e(), _vm.menuType == "main" ? _c2("div", { staticClass: "log-in-out-wrapper" }, [_c2("media-list")], 1) : _vm._e(), _vm.menuType == "wallet" ? _c2("div", { staticClass: "log-in-out-wrapper" }, [_c2("div", { directives: [{ name: "show", rawName: "v-show", value: _vm.isLogin, expression: "isLogin" }], staticClass: "log-out", on: { "click": _vm.preLogOut } }, [_vm._v(" " + _vm._s(_vm.accountIsCustody ? _vm.$t("user_menu_log_out") : _vm.$t("wallet_common_walletconnect_disconnect")) + " ")]), _c2("div", { directives: [{ name: "show", rawName: "v-show", value: !_vm.isLogin, expression: "!isLogin" }], staticClass: "log-out", on: { "click": _vm.login } }, [_vm._v(" " + _vm._s(_vm.accountIsCustody ? _vm.$t("user_common_log_in") : _vm.$t("wallet_common_connect")) + " ")])]) : _vm._e()]), _c2("a-modal", { attrs: { "width": 320, "centered": "", "footer": null, "dialogClass": "mobile-logout-modal theme-" + _vm.themeMode }, on: { "ok": function($event) {
|
|
91951
91937
|
_vm.logoutModalVisible = false;
|
|
91952
91938
|
} }, model: { value: _vm.logoutModalVisible, callback: function($$v) {
|
|
91953
91939
|
_vm.logoutModalVisible = $$v;
|
|
91954
91940
|
}, expression: "logoutModalVisible" } }, [_c2("div", { staticClass: "title" }, [_vm._v(_vm._s(_vm.$t("common_base_confirmation")))]), _c2("p", [_vm._v(" " + _vm._s(_vm.$t("user_menu_log_out_text")) + " ")]), _c2("div", { staticClass: "btns" }, [_c2("a-button", { attrs: { "size": "small" }, on: { "click": function($event) {
|
|
91955
91941
|
_vm.logoutModalVisible = false;
|
|
91956
|
-
} } }, [_vm._v(_vm._s(_vm.$t("user_common_cancel")))]), _c2("a-button", { staticClass: "
|
|
91942
|
+
} } }, [_vm._v(_vm._s(_vm.$t("user_common_cancel")))]), _c2("a-button", { staticClass: "primary", attrs: { "size": "small" }, on: { "click": _vm.logOut } }, [_vm._v(_vm._s(_vm.$t("user_common_sure")))])], 1)])], 1);
|
|
91957
91943
|
};
|
|
91958
91944
|
var _sfc_staticRenderFns$1z = [];
|
|
91959
91945
|
var __component__$1z = /* @__PURE__ */ normalizeComponent(
|
|
@@ -91962,7 +91948,7 @@ var __component__$1z = /* @__PURE__ */ normalizeComponent(
|
|
|
91962
91948
|
_sfc_staticRenderFns$1z,
|
|
91963
91949
|
false,
|
|
91964
91950
|
null,
|
|
91965
|
-
"
|
|
91951
|
+
"6ba75b7c"
|
|
91966
91952
|
);
|
|
91967
91953
|
const Menu = __component__$1z.exports;
|
|
91968
91954
|
let closeFn$4;
|
|
@@ -92215,9 +92201,12 @@ const _sfc_main$1x = {
|
|
|
92215
92201
|
chainId() {
|
|
92216
92202
|
return this.$store.state.trade && this.$store.state.trade.tradeChainId || this.$store.state.chainId || "";
|
|
92217
92203
|
},
|
|
92204
|
+
uid() {
|
|
92205
|
+
var _a3, _b2;
|
|
92206
|
+
return ((_b2 = (_a3 = this.$store.state.user) == null ? void 0 : _a3.userInfo) == null ? void 0 : _b2.uid) || "";
|
|
92207
|
+
},
|
|
92218
92208
|
account() {
|
|
92219
|
-
|
|
92220
|
-
return this.$store.getters["wallet/account"] || ((_a3 = this.ethWallet) == null ? void 0 : _a3.address) || "";
|
|
92209
|
+
return this.$store.getters["wallet/account"] || this.uid || "";
|
|
92221
92210
|
},
|
|
92222
92211
|
walletIcon() {
|
|
92223
92212
|
return this.$store.getters["wallet/walletIcon"] || window.localStorage.getItem("selectedIcon") || "";
|
|
@@ -92256,7 +92245,8 @@ const _sfc_main$1x = {
|
|
|
92256
92245
|
},
|
|
92257
92246
|
immediate: true
|
|
92258
92247
|
},
|
|
92259
|
-
account: function() {
|
|
92248
|
+
account: function(val, oldVal) {
|
|
92249
|
+
console.log("account-cms:", val, oldVal);
|
|
92260
92250
|
},
|
|
92261
92251
|
"$store.state.trade.marketSymbolList"() {
|
|
92262
92252
|
this.initSymbolConfig();
|
|
@@ -92447,7 +92437,7 @@ var __component__$1x = /* @__PURE__ */ normalizeComponent(
|
|
|
92447
92437
|
_sfc_staticRenderFns$1x,
|
|
92448
92438
|
false,
|
|
92449
92439
|
null,
|
|
92450
|
-
"
|
|
92440
|
+
"a0566cde"
|
|
92451
92441
|
);
|
|
92452
92442
|
const Top = __component__$1x.exports;
|
|
92453
92443
|
const _sfc_main$1w = {
|
|
@@ -203532,6 +203522,7 @@ var __component__$v = /* @__PURE__ */ normalizeComponent(
|
|
|
203532
203522
|
"7dc2cd0e"
|
|
203533
203523
|
);
|
|
203534
203524
|
const DateH5 = __component__$v.exports;
|
|
203525
|
+
const noDataImage = "data:image/png;base64,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";
|
|
203535
203526
|
const _sfc_main$u = {
|
|
203536
203527
|
name: "NoReecord",
|
|
203537
203528
|
components: {
|
|
@@ -203542,6 +203533,11 @@ const _sfc_main$u = {
|
|
|
203542
203533
|
return this.text || this.$t("common_base_no_record_found");
|
|
203543
203534
|
}
|
|
203544
203535
|
},
|
|
203536
|
+
data() {
|
|
203537
|
+
return {
|
|
203538
|
+
noDataImage
|
|
203539
|
+
};
|
|
203540
|
+
},
|
|
203545
203541
|
props: {
|
|
203546
203542
|
text: {
|
|
203547
203543
|
type: String,
|
|
@@ -203555,7 +203551,7 @@ const _sfc_main$u = {
|
|
|
203555
203551
|
};
|
|
203556
203552
|
var _sfc_render$u = function render198() {
|
|
203557
203553
|
var _vm = this, _c2 = _vm._self._c;
|
|
203558
|
-
return _c2("div", { staticClass: "NoRecord" }, [!_vm.name ? _c2("img", { attrs: { "src":
|
|
203554
|
+
return _c2("div", { staticClass: "NoRecord" }, [!_vm.name ? _c2("img", { attrs: { "src": _vm.noDataImage, "alt": "no-record" } }) : _vm._e(), _vm.name ? _c2("svg-icon", { staticClass: "icon-message", attrs: { "icon-class": _vm.name } }) : _vm._e(), _c2("p", [_vm._v(_vm._s(_vm.newText))])], 1);
|
|
203559
203555
|
};
|
|
203560
203556
|
var _sfc_staticRenderFns$u = [];
|
|
203561
203557
|
var __component__$u = /* @__PURE__ */ normalizeComponent(
|
|
@@ -203564,7 +203560,7 @@ var __component__$u = /* @__PURE__ */ normalizeComponent(
|
|
|
203564
203560
|
_sfc_staticRenderFns$u,
|
|
203565
203561
|
false,
|
|
203566
203562
|
null,
|
|
203567
|
-
"
|
|
203563
|
+
"b07f0fc9"
|
|
203568
203564
|
);
|
|
203569
203565
|
const NoRecord = __component__$u.exports;
|
|
203570
203566
|
const _sfc_main$t = {
|
|
@@ -203797,6 +203793,7 @@ var __component__$p = /* @__PURE__ */ normalizeComponent(
|
|
|
203797
203793
|
"bb396dc6"
|
|
203798
203794
|
);
|
|
203799
203795
|
const SvgCircle = __component__$p.exports;
|
|
203796
|
+
const unLockImage = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAADpklEQVRYR+2YSWgTYRTH/2+apPkaKa2dcUFUxPWg4EFcEBEVT1oEUQQRvLggeBGVajuRQKZ1OYuI3kQFUVCogggqCOKC4EFFcANxaztpFbV+scs8mXZiE00m3yQqRX3HzFt++c/L+94XwjA3GuZ8KBuwTTTND4E2gGkJg8e7X5hAr0B8ncAn62Tz7XJEKBnwLXbqEVF1FODV7DLlMQIYwPmIDG2tRiJVCmhJgB+i5qReoisAT1Eryi/CHF5ek068UPMf8goM2IZdsVA0eosJs3KKMZ6CcM/7bA6AqdnPifHISYfmj0LicxDIwIAdVWYLMfZmihDwhjRsquu2LmcXtqsaV4C14wDGDvnSIV0mG34b4PuaRE1fuu81CDGvSEeIeW5tuvllvqLtleZk0nCHgLqB54wvleH+CdWf9neqQgZS0Bbx9QCf+q4I00Y9nTzhV6wzum+zQ86xIDE5raH6TVw/O2oeAWGbp8YnPR3SCYkevxyMHSIVjaVAqPLijhtpa4tq3aAKXgB41eCsw11dWvNUCtnCvA9g9qAvXTJkcqVKnFdH1RWwhXkVwFIv4pohrWUq0bYwbwBY5PneMKS1WCXuP2BGpf8KZikxfHowJeLbmZ3c44xoBYBxHvAbMF9Sanai+qwT5R2YW3NmHWkPdJk8nC9XwTFjC7MfgKYEUL6TY0irIiiguyr9MTOkVWhly89gC/PvASSgB6CcvhroX6Jpqq/gtypIQJcurcGNxbNOYR5ygN3/MmCTA5DSMlG+gsyGbM47MfzGjLuaZxZT3zdVPiC6DWmNCDpmngGYrNJDvwDwuSGtvBcwPwXdX6XS3vYLAC8a0nJPm5+sIGBKmA0MHPgTChKwR5fWwUCAdqU5nTQ8LnQpzzlLyxgz7uU+4oRmVH9NPAkE6Dr/sEEXFLPMV+y7mfuOkZSIz2PwrcEriJ+xK/SXXA+OABQu0iJMoAW6TN4p5Fd0zqVE/CyD16j0YlAfAp3TZXKtX1xRwA/YU9srwnfV/4dRxaRnYdk7twYH3pcF6AZ3RRpn9mvaTRCqVcv7dwQ+VjjOwpE9LQ+L5SuqYCZBWyw+K+RwKwMTiyUtosjLPo3qx3QnH6jkUQZ0k7XHGkdrjnY6626sUiPb55qjOetHd7e0qwYGAswk7RBN6zQmkwkzVQoR46FDbI2SzWdU/H+YsUFDhvw7RXwBE9UzOwsBuMtprffUbfwnRNpNYm6tk0l3VJVkJSlYUqUSg4Y94Dej1IM45k14dgAAAABJRU5ErkJggg==";
|
|
203800
203797
|
const _sfc_main$o = {
|
|
203801
203798
|
data() {
|
|
203802
203799
|
return {
|
|
@@ -203807,7 +203804,8 @@ const _sfc_main$o = {
|
|
|
203807
203804
|
activeUser: false,
|
|
203808
203805
|
showMobiBtn: "",
|
|
203809
203806
|
errorInfo: "",
|
|
203810
|
-
walletName: window.localStorage.getItem("selectedWallet")
|
|
203807
|
+
walletName: window.localStorage.getItem("selectedWallet"),
|
|
203808
|
+
unLockImage
|
|
203811
203809
|
};
|
|
203812
203810
|
},
|
|
203813
203811
|
computed: {
|
|
@@ -203854,13 +203852,7 @@ const _sfc_main$o = {
|
|
|
203854
203852
|
}
|
|
203855
203853
|
},
|
|
203856
203854
|
watch: {
|
|
203857
|
-
|
|
203858
|
-
handler: function(val, oldVal) {
|
|
203859
|
-
this.initActiveUser();
|
|
203860
|
-
},
|
|
203861
|
-
deep: true
|
|
203862
|
-
},
|
|
203863
|
-
"$store.state.uid"(val) {
|
|
203855
|
+
account(val) {
|
|
203864
203856
|
if (!this.userCenter) {
|
|
203865
203857
|
this.initActiveUser();
|
|
203866
203858
|
}
|
|
@@ -203892,7 +203884,7 @@ const _sfc_main$o = {
|
|
|
203892
203884
|
this.walletAccount = "";
|
|
203893
203885
|
}
|
|
203894
203886
|
},
|
|
203895
|
-
async initActiveUser() {
|
|
203887
|
+
async initActiveUser(type3) {
|
|
203896
203888
|
this.initWallet();
|
|
203897
203889
|
let activeUser = this.userInfo && this.userInfo.uid && this.userInfo.uid.length || 0;
|
|
203898
203890
|
this.activeUser = activeUser;
|
|
@@ -203907,8 +203899,8 @@ const _sfc_main$o = {
|
|
|
203907
203899
|
}
|
|
203908
203900
|
},
|
|
203909
203901
|
formartUserIcon(imgUrl2) {
|
|
203910
|
-
var _a3;
|
|
203911
|
-
let userAddress = (_a3 = this.userInfo) == null ? void 0 : _a3.wallet_address;
|
|
203902
|
+
var _a3, _b2;
|
|
203903
|
+
let userAddress = ((_a3 = this.userInfo) == null ? void 0 : _a3.wallet_address) || this.account || ((_b2 = this.ethWallet) == null ? void 0 : _b2.address) || "";
|
|
203912
203904
|
return !imgUrl2 || imgUrl2.includes("users/default/avatar.png") ? userAddress && toDataUrl(userAddress) : imgUrl2;
|
|
203913
203905
|
},
|
|
203914
203906
|
breakdown() {
|
|
@@ -203983,7 +203975,7 @@ const _sfc_main$o = {
|
|
|
203983
203975
|
};
|
|
203984
203976
|
var _sfc_render$o = function render204() {
|
|
203985
203977
|
var _vm = this, _c2 = _vm._self._c;
|
|
203986
|
-
return _c2("div", [_c2("div", { staticClass: "info" }, [_c2("div", { directives: [{ name: "show", rawName: "v-show", value: !_vm.showDetail, expression: "!showDetail" }], staticClass: "wallectconnect" }, [_c2("div", { staticClass: "no-connect" }, [!_vm.walletAccount.length ? _c2("button", { staticClass: "connect theme-bg-color", on: { "click": _vm.open } }, [_vm._v(" " + _vm._s(_vm.$t("wallet_common_connect")) + " ")]) : _vm.walletAccount.length ? _c2("div", { class: ["account", { "account_no": _vm.isLocked }], on: { "click": _vm.openDetail } }, [_c2("img", { staticClass: "wallet-icon", attrs: { "src": _vm.avatar, "alt": "" } }), _c2("span", [_vm._v(_vm._s(_vm.walletAccount))]), _vm.isLocked ? _c2("img", { staticClass: "unlock", attrs: { "src":
|
|
203978
|
+
return _c2("div", [_c2("div", { staticClass: "info" }, [_c2("div", { directives: [{ name: "show", rawName: "v-show", value: !_vm.showDetail, expression: "!showDetail" }], staticClass: "wallectconnect" }, [_c2("div", { staticClass: "no-connect" }, [!_vm.walletAccount.length ? _c2("button", { staticClass: "connect theme-bg-color", on: { "click": _vm.open } }, [_vm._v(" " + _vm._s(_vm.$t("wallet_common_connect")) + " ")]) : _vm.walletAccount.length ? _c2("div", { class: ["account", { "account_no": _vm.isLocked }], on: { "click": _vm.openDetail } }, [_c2("img", { staticClass: "wallet-icon", attrs: { "src": _vm.avatar, "alt": "" } }), _c2("span", [_vm._v(_vm._s(_vm.walletAccount))]), _vm.isLocked ? _c2("img", { staticClass: "unlock", attrs: { "src": _vm.unLockImage, "alt": "" } }) : _vm._e()]) : _vm._e(), _vm.walletAccount ? _c2("button", { staticClass: "more", on: { "click": _vm.openMenuH5 } }, [_vm._m(0)]) : _vm._e()])]), _c2("div", { directives: [{ name: "show", rawName: "v-show", value: _vm.showDetail, expression: "showDetail" }], staticClass: "detail" }, [_c2("div", { staticClass: "detail-box" }, [_c2("div", { staticClass: "title" }, [_c2("span", [_vm._v(_vm._s(_vm.$t("wallet_common_account")))]), _c2("svg-icon", { staticClass: "close", attrs: { "icon-class": "close-x" }, on: { "click": _vm.closeDetail } })], 1), _c2("div", { staticClass: "connect-info" }, [_c2("div", { staticClass: "action" }, [_c2("span", { staticClass: "action-title" }, [_vm._v(" " + _vm._s(_vm.$t("wallet_common_connected_to"))), _c2("br"), _vm._v(_vm._s(_vm.walletName) + " ")]), _c2("span", { staticClass: "action-disconnect", on: { "click": function($event) {
|
|
203987
203979
|
return _vm.disconnect("");
|
|
203988
203980
|
} } }, [_vm._v(" " + _vm._s(_vm.$t("wallet_common_walletconnect_disconnect")) + " ")])]), _c2("div", { class: ["connect-info-address", { "account_no": !_vm.activeUser }] }, [_c2("img", { attrs: { "src": _vm.avatar, "alt": "" } }), _c2("span", [_vm._v(_vm._s(_vm.walletAccount))]), _vm.isLocked ? _c2("div", { staticClass: "action-disconnect-agin", on: { "click": _vm.openAgin } }, [_vm._v(" " + _vm._s(_vm.$t("wallet_common_walletconnect_unlock_account")) + " ")]) : _vm._e()]), _c2("div", { staticClass: "copy-view" }, [_c2("span", { on: { "click": _vm.copy } }, [_c2("svg-icon", { staticClass: "icon", attrs: { "icon-class": "copy" } }), _c2("i", [_vm._v(_vm._s(_vm.$t("wallet_common_walletconnect_copy_address")))])], 1)])])])]), _c2("div", { directives: [{ name: "show", rawName: "v-show", value: _vm.mobiShow, expression: "mobiShow" }], staticClass: "mobi-info" }, [_c2("div", { staticClass: "mobi-content" }, [_c2("div", { staticClass: "mobi-title" }, [_c2("span", [_vm._v(_vm._s(_vm.$t("wallet_common_platform_title")))]), _c2("svg-icon", { staticClass: "icon", attrs: { "icon-class": "close-white" }, on: { "click": _vm.closeMobi } })], 1), _c2("div", { staticClass: "platform bottom" }, [_c2("div", [_c2("span", { staticClass: "platform-title" }, [_c2("img", { attrs: { "src": "", "alt": "" } }), _c2("span", { staticClass: "symbol" }, [_vm._v(_vm._s(_vm.info.platform_coin_symbol))]), _vm._v(" " + _vm._s(_vm.$t("wallet_common_platform_balance")) + " ")]), _c2("span", [_vm._v(" " + _vm._s(_vm.info.platform_coin_balance))])]), _c2("div", [_c2("span", [_vm._v(_vm._s(_vm.$t("wallet_common_mbop_price", { coinOp: _vm.info.platform_coin_symbol })))]), _c2("span", [_vm._v(_vm._s(_vm.info.currency_symbol) + _vm._s(_vm.info.market_price))])]), _c2("div", [_c2("span", [_vm._v(_vm._s(_vm.$t("wallet_common_mbop_circulation", { coinOp: _vm.info.platform_coin_symbol })))]), _c2("span", [_vm._v(_vm._s(_vm.info.circulation_supply) + " "), _c2("span", [_vm._v(_vm._s(_vm.info.platform_coin_symbol))])])]), _c2("div", [_c2("span", [_vm._v(_vm._s(_vm.$t("wallet_common_total_supply", { coin: _vm.info.platform_coin_symbol })))]), _c2("span", [_vm._v(_vm._s(_vm.info.total_supply))])])]), _c2("div", { staticClass: "platform" }, [_c2("div", [_c2("span", { staticClass: "platform-title" }, [_c2("img", { attrs: { "src": "", "alt": "" } }), _c2("span", { staticClass: "symbol" }, [_vm._v(_vm._s(_vm.info.dividend_coin_symbol))]), _vm._v(" " + _vm._s(_vm.$t("wallet_common_platform_balance")) + " ")]), _c2("span", [_vm._v(_vm._s(_vm.info.dividend_coin_balance))])]), _c2("div", [_c2("span", [_vm._v(_vm._s(_vm.$t("wallet_common_mobi_price", { coin: _vm.info.dividend_coin_symbol })))]), _c2("span", [_vm._v(_vm._s(_vm.info.currency_symbol) + _vm._s(_vm.info.rigid_price))])]), _c2("div", [_c2("span", [_vm._v(_vm._s(_vm.$t("wallet_common_mobi_circulation", { coin: _vm.info.dividend_coin_symbol })))]), _c2("span", [_vm._v(_vm._s(_vm.info.reserve_fund) + " "), _c2("span", [_vm._v(_vm._s(_vm.info.dividend_coin_symbol))])])]), _c2("div", [_c2("span", [_vm._v(_vm._s(_vm.$t("wallet_common_total_supply", { coin: _vm.info.dividend_coin_symbol })))]), _c2("span", [_vm._v(_vm._s(_vm.info.yielded))])])]), _c2("a", { staticClass: "uni", attrs: { "href": "#/trade/data-preview?coin_name=" + _vm.info.dividend_coin_symbol + "&symbol=" + _vm.info.platform_coin_symbol } }, [_vm._v(_vm._s(_vm.$t("trade_swap_view_uni_analytics")))]), _c2("a", { staticClass: "uni float-r", attrs: { "href": "http://192.168.2.11:7000/ ", "target": "block" } }, [_vm._v(" " + _vm._s(_vm.$t("wallet_common_reserve_funds")) + " ")])])])])]);
|
|
203989
203981
|
};
|
|
@@ -203997,7 +203989,7 @@ var __component__$o = /* @__PURE__ */ normalizeComponent(
|
|
|
203997
203989
|
_sfc_staticRenderFns$o,
|
|
203998
203990
|
false,
|
|
203999
203991
|
null,
|
|
204000
|
-
"
|
|
203992
|
+
"beb5ea9a"
|
|
204001
203993
|
);
|
|
204002
203994
|
const walletconnectBottom = __component__$o.exports;
|
|
204003
203995
|
const __$_require_1b21174e__ = "data:image/png;base64,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";
|
|
@@ -206189,7 +206181,6 @@ function init({ Vue: Vue2, router, store: store2, Parent, onComponentsRegistered
|
|
|
206189
206181
|
route2.component = Parent;
|
|
206190
206182
|
}
|
|
206191
206183
|
router.addRoute(route2);
|
|
206192
|
-
console.log(`[udxCms] 注册路由: ${route2.name} (${route2.path})`);
|
|
206193
206184
|
});
|
|
206194
206185
|
routesRegistered = true;
|
|
206195
206186
|
console.log("[udxCms] 路由注册完成");
|