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.
@@ -1,2 +1,5 @@
1
1
  @use '../ele-app/style/index.scss' as app;
2
2
  @use './plus.scss' as *;
3
+
4
+
5
+ @use './css/iconfont.css';
@@ -76,7 +76,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
76
76
  }
77
77
  };
78
78
  const getCaptcha = () => {
79
- http.get("/framework-api/standard/framework-captcha/getSliderCaptcha", { params: {} }).then((res) => {
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("/framework-api/standard/framework-captcha/validateSliderCaptcha", { params }).then((res) => {
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();
@@ -1,2 +1,5 @@
1
1
  @use '../ele-app/style/index.scss' as app;
2
2
  @use './plus.scss' as *;
3
+
4
+
5
+ @use './css/iconfont.css';
@@ -77,7 +77,7 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
77
77
  }
78
78
  };
79
79
  const getCaptcha = () => {
80
- httpConfig.http.get("/framework-api/standard/framework-captcha/getSliderCaptcha", { params: {} }).then((res) => {
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("/framework-api/standard/framework-captcha/validateSliderCaptcha", { params }).then((res) => {
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();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yuang-framework-ui-pc",
3
- "version": "1.1.25",
3
+ "version": "1.1.26",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "dev": "vite --host --config vite.global.ts --mode dev",