@airpower/web 0.2.72 → 0.3.1
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/i18n/WebI18n.d.ts +1 -1
- package/dist/main.js +2 -3
- package/package.json +1 -1
package/dist/i18n/WebI18n.d.ts
CHANGED
|
@@ -51,7 +51,7 @@ export declare class WebI18n extends I18n {
|
|
|
51
51
|
InvalidIntegerNumber: string;
|
|
52
52
|
InvalidNaturalNumber: string;
|
|
53
53
|
InvalidMobilePhone: string;
|
|
54
|
-
|
|
54
|
+
ConfirmToComplete: string;
|
|
55
55
|
InvalidContain: string;
|
|
56
56
|
Import: string;
|
|
57
57
|
ImportSuccess: string;
|
package/dist/main.js
CHANGED
|
@@ -2184,7 +2184,7 @@ class WebI18n extends I18n {
|
|
|
2184
2184
|
__publicField(this, "InvalidIntegerNumber", "请输入正确的整数");
|
|
2185
2185
|
__publicField(this, "InvalidNaturalNumber", "只允许输入非负数字");
|
|
2186
2186
|
__publicField(this, "InvalidMobilePhone", "请输入正确的手机号");
|
|
2187
|
-
__publicField(this, "
|
|
2187
|
+
__publicField(this, "ConfirmToComplete", "请确认填写完整");
|
|
2188
2188
|
__publicField(this, "InvalidContain", "不允许输入中包含");
|
|
2189
2189
|
__publicField(this, "Import", "导入");
|
|
2190
2190
|
__publicField(this, "ImportSuccess", "数据导入成功");
|
|
@@ -18357,7 +18357,6 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
|
18357
18357
|
key: 0,
|
|
18358
18358
|
disabled: unref(isDisableChangeStatus)(getRowEntity(scope)),
|
|
18359
18359
|
underline: false,
|
|
18360
|
-
type: "success",
|
|
18361
18360
|
onClick: ($event) => emits("enable", getRowEntity(scope))
|
|
18362
18361
|
}, {
|
|
18363
18362
|
default: withCtx(() => [
|
|
@@ -19005,7 +19004,7 @@ class WebValidator {
|
|
|
19005
19004
|
ifEmpty() {
|
|
19006
19005
|
this.required = true;
|
|
19007
19006
|
if (!this.message) {
|
|
19008
|
-
this.message = WebI18n.get().
|
|
19007
|
+
this.message = WebI18n.get().ConfirmToComplete;
|
|
19009
19008
|
}
|
|
19010
19009
|
return this;
|
|
19011
19010
|
}
|