kts-component-invoice-operate 3.2.50 → 3.2.51
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.esm.js
CHANGED
|
@@ -14394,7 +14394,7 @@ var RULES = {
|
|
|
14394
14394
|
required: true,
|
|
14395
14395
|
message: "".concat(label, "\u5FC5\u586B")
|
|
14396
14396
|
}, {
|
|
14397
|
-
max:
|
|
14397
|
+
max: 100,
|
|
14398
14398
|
message: "".concat(label, "\u5185\u5BB9\u8D85\u957F")
|
|
14399
14399
|
}];
|
|
14400
14400
|
},
|
package/dist/index.js
CHANGED
|
@@ -14404,7 +14404,7 @@ var RULES = {
|
|
|
14404
14404
|
required: true,
|
|
14405
14405
|
message: "".concat(label, "\u5FC5\u586B")
|
|
14406
14406
|
}, {
|
|
14407
|
-
max:
|
|
14407
|
+
max: 100,
|
|
14408
14408
|
message: "".concat(label, "\u5185\u5BB9\u8D85\u957F")
|
|
14409
14409
|
}];
|
|
14410
14410
|
},
|
package/package.json
CHANGED
|
@@ -18,7 +18,7 @@ import classNames from 'classnames';
|
|
|
18
18
|
const RULES = {
|
|
19
19
|
companyName: (label: string) => [
|
|
20
20
|
{ required: true, message: `${label}必填` },
|
|
21
|
-
{ max:
|
|
21
|
+
{ max: 100, message: `${label}内容超长` }
|
|
22
22
|
],
|
|
23
23
|
taxId: (label: string) => [
|
|
24
24
|
{ max: 20, message: `${label}内容超长` },
|