yuang-framework-ui-pc 1.1.25 → 1.1.26
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/es/style/index.scss
CHANGED
|
@@ -76,7 +76,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
76
76
|
}
|
|
77
77
|
};
|
|
78
78
|
const getCaptcha = () => {
|
|
79
|
-
http.get("/
|
|
79
|
+
http.get("/sso-api/standard/framework-captcha/getSliderCaptcha", { params: {} }).then((res) => {
|
|
80
80
|
key.value = res.data.data.key;
|
|
81
81
|
block.value.src = res.data.data.blockSrc;
|
|
82
82
|
block.value.style.top = res.data.data.blockY + "px";
|
|
@@ -239,7 +239,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
239
239
|
key: key.value,
|
|
240
240
|
captcha: moveLength
|
|
241
241
|
};
|
|
242
|
-
http.get("/
|
|
242
|
+
http.get("/sso-api/standard/framework-captcha/validateSliderCaptcha", { params }).then((res) => {
|
|
243
243
|
emit("success", { key: key.value, value: moveLength });
|
|
244
244
|
}).catch(() => {
|
|
245
245
|
verifyFailEvent();
|
package/lib/style/index.scss
CHANGED
|
@@ -77,7 +77,7 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
77
77
|
}
|
|
78
78
|
};
|
|
79
79
|
const getCaptcha = () => {
|
|
80
|
-
httpConfig.http.get("/
|
|
80
|
+
httpConfig.http.get("/sso-api/standard/framework-captcha/getSliderCaptcha", { params: {} }).then((res) => {
|
|
81
81
|
key.value = res.data.data.key;
|
|
82
82
|
block.value.src = res.data.data.blockSrc;
|
|
83
83
|
block.value.style.top = res.data.data.blockY + "px";
|
|
@@ -240,7 +240,7 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
240
240
|
key: key.value,
|
|
241
241
|
captcha: moveLength
|
|
242
242
|
};
|
|
243
|
-
httpConfig.http.get("/
|
|
243
|
+
httpConfig.http.get("/sso-api/standard/framework-captcha/validateSliderCaptcha", { params }).then((res) => {
|
|
244
244
|
emit("success", { key: key.value, value: moveLength });
|
|
245
245
|
}).catch(() => {
|
|
246
246
|
verifyFailEvent();
|