@uxda/appkit 1.2.50 → 1.2.52
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/index.js
CHANGED
|
@@ -3828,10 +3828,11 @@ var script = /* @__PURE__ */ defineComponent({
|
|
|
3828
3828
|
loginRuleTip.value = "";
|
|
3829
3829
|
emits("show", loginRuleTip.value);
|
|
3830
3830
|
return;
|
|
3831
|
+
} else if (result.status) {
|
|
3832
|
+
showLoginRule.value = true;
|
|
3833
|
+
loginRuleTip.value = result.message;
|
|
3834
|
+
emits("show", loginRuleTip.value);
|
|
3831
3835
|
}
|
|
3832
|
-
showLoginRule.value = true;
|
|
3833
|
-
loginRuleTip.value = result.message;
|
|
3834
|
-
emits("show", loginRuleTip.value);
|
|
3835
3836
|
});
|
|
3836
3837
|
}, 100);
|
|
3837
3838
|
const emits = __emit;
|
package/package.json
CHANGED
|
@@ -72,11 +72,11 @@ const checkLoginTimeRule = debounce(() => {
|
|
|
72
72
|
loginRuleTip.value = ''
|
|
73
73
|
emits('show', loginRuleTip.value)
|
|
74
74
|
return
|
|
75
|
+
} else if (result.status) {
|
|
76
|
+
showLoginRule.value = true
|
|
77
|
+
loginRuleTip.value = result.message
|
|
78
|
+
emits('show', loginRuleTip.value)
|
|
75
79
|
}
|
|
76
|
-
|
|
77
|
-
showLoginRule.value = true
|
|
78
|
-
loginRuleTip.value = result.message
|
|
79
|
-
emits('show', loginRuleTip.value)
|
|
80
80
|
})
|
|
81
81
|
}, 100)
|
|
82
82
|
|