com-angel-authorization 1.0.31 → 1.0.32
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/README.md +1 -1
- package/dist/react/index.cjs +16 -7
- package/dist/react/index.cjs.map +1 -1
- package/dist/react/index.js +16 -7
- package/dist/react/index.js.map +1 -1
- package/dist/vue/index.cjs +16 -11
- package/dist/vue/index.cjs.map +1 -1
- package/dist/vue/index.js +16 -11
- package/dist/vue/index.js.map +1 -1
- package/package.json +1 -1
package/dist/vue/index.cjs
CHANGED
|
@@ -4502,7 +4502,10 @@ var UserManager = (0, import_vue6.defineComponent)({
|
|
|
4502
4502
|
[
|
|
4503
4503
|
formError.value ? (0, import_vue6.h)("div", { style: s4.error }, formError.value) : null,
|
|
4504
4504
|
(0, import_vue6.h)("label", { style: s4.field }, [
|
|
4505
|
-
(0, import_vue6.h)("span", { style: s4.label },
|
|
4505
|
+
(0, import_vue6.h)("span", { style: s4.label }, [
|
|
4506
|
+
"\u8D26\u53F7 ",
|
|
4507
|
+
(0, import_vue6.h)("span", { style: s4.required }, "*")
|
|
4508
|
+
]),
|
|
4506
4509
|
(0, import_vue6.h)("input", {
|
|
4507
4510
|
style: s4.input,
|
|
4508
4511
|
value: form.username,
|
|
@@ -4514,7 +4517,10 @@ var UserManager = (0, import_vue6.defineComponent)({
|
|
|
4514
4517
|
})
|
|
4515
4518
|
]),
|
|
4516
4519
|
(0, import_vue6.h)("label", { style: s4.field }, [
|
|
4517
|
-
(0, import_vue6.h)("span", { style: s4.label },
|
|
4520
|
+
(0, import_vue6.h)("span", { style: s4.label }, [
|
|
4521
|
+
"\u7528\u6237\u540D ",
|
|
4522
|
+
(0, import_vue6.h)("span", { style: s4.required }, "*")
|
|
4523
|
+
]),
|
|
4518
4524
|
(0, import_vue6.h)("input", {
|
|
4519
4525
|
style: s4.input,
|
|
4520
4526
|
value: form.name,
|
|
@@ -4525,24 +4531,23 @@ var UserManager = (0, import_vue6.defineComponent)({
|
|
|
4525
4531
|
}
|
|
4526
4532
|
})
|
|
4527
4533
|
]),
|
|
4528
|
-
(0, import_vue6.h)("label", { style: s4.field }, [
|
|
4529
|
-
(0, import_vue6.h)(
|
|
4530
|
-
"
|
|
4531
|
-
{ style: s4.
|
|
4532
|
-
|
|
4533
|
-
),
|
|
4534
|
+
!editing.value ? (0, import_vue6.h)("label", { style: s4.field }, [
|
|
4535
|
+
(0, import_vue6.h)("span", { style: s4.label }, [
|
|
4536
|
+
"\u521D\u59CB\u5BC6\u7801 ",
|
|
4537
|
+
(0, import_vue6.h)("span", { style: s4.required }, "*")
|
|
4538
|
+
]),
|
|
4534
4539
|
(0, import_vue6.h)("input", {
|
|
4535
4540
|
style: s4.input,
|
|
4536
4541
|
type: "password",
|
|
4537
4542
|
value: form.password,
|
|
4538
|
-
placeholder:
|
|
4539
|
-
required:
|
|
4543
|
+
placeholder: "\u8BF7\u8F93\u5165\u521D\u59CB\u5BC6\u7801",
|
|
4544
|
+
required: true,
|
|
4540
4545
|
autocomplete: "new-password",
|
|
4541
4546
|
onInput: (e) => {
|
|
4542
4547
|
form.password = e.target.value;
|
|
4543
4548
|
}
|
|
4544
4549
|
})
|
|
4545
|
-
]),
|
|
4550
|
+
]) : null,
|
|
4546
4551
|
(0, import_vue6.h)("fieldset", { style: s4.fieldset }, [
|
|
4547
4552
|
(0, import_vue6.h)("legend", { style: s4.label }, [
|
|
4548
4553
|
"\u5F52\u5C5E\u90E8\u95E8 ",
|