boka-human-cliend-v3 0.0.43 → 0.0.45
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.
|
@@ -482,7 +482,6 @@
|
|
|
482
482
|
max-width: 600px;
|
|
483
483
|
min-height: 360px;
|
|
484
484
|
height: 80vh;
|
|
485
|
-
border: 1px solid #ccc;
|
|
486
485
|
}
|
|
487
486
|
.humanMainView.full {
|
|
488
487
|
padding-top: env(safe-area-inset-top);
|
|
@@ -504,12 +503,14 @@
|
|
|
504
503
|
cursor: move;
|
|
505
504
|
font-size: 0;
|
|
506
505
|
box-sizing: border-box;
|
|
507
|
-
border-bottom: 1px solid #f5f5f5;
|
|
508
506
|
position: relative;
|
|
509
507
|
z-index: 999;
|
|
510
|
-
background: #
|
|
508
|
+
background: url(https://rs.bokao2o.com/bkWeb/Def_BKWeb_AI_Header.png) center top / 100% no-repeat #ffffff;
|
|
511
509
|
white-space: nowrap;
|
|
512
510
|
user-select: none;
|
|
511
|
+
max-width: 1000px;
|
|
512
|
+
left: 50%;
|
|
513
|
+
transform: translateX(-50%);
|
|
513
514
|
}
|
|
514
515
|
.humanMainView .humanMainHeader .humanMainHeaderRight {
|
|
515
516
|
text-align: right;
|
|
@@ -5223,11 +5223,13 @@
|
|
|
5223
5223
|
let { product, subCustType } = this;
|
|
5224
5224
|
if (product.toLowerCase() === "mase" || product.toLowerCase() === "aime" && subCustType === "overseas") {
|
|
5225
5225
|
return "https://service.mase.cloud";
|
|
5226
|
+
} else if (product == "web") {
|
|
5227
|
+
return "https://sale.shboka.com";
|
|
5226
5228
|
}
|
|
5227
5229
|
return "https://human.shboka.com";
|
|
5228
5230
|
},
|
|
5229
5231
|
src() {
|
|
5230
|
-
let { token, product, custType, subCustType, source, terminal = "" } = this;
|
|
5232
|
+
let { token, product, custType = "", subCustType, source, terminal = "" } = this;
|
|
5231
5233
|
let { protocol, host } = location;
|
|
5232
5234
|
let domain = `${protocol}//${host}`;
|
|
5233
5235
|
return `${this.host}?token=${token}&product=${product}&custType=${custType}&subCustType=${subCustType}&source=${source}&human=1&isIFrame=true&terminal=${terminal}&domain=${encodeURIComponent(domain)}&time=${(/* @__PURE__ */ new Date()).getTime()}`;
|