fmui-base 2.2.42 → 2.2.44
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 +2 -0
- package/lib/form/form.js +4 -0
- package/lib/process_info/processInfo.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/lib/form/form.js
CHANGED
|
@@ -3261,6 +3261,7 @@ var PageHome = function (_React$Component) {
|
|
|
3261
3261
|
label: t.state.itemParam.title,
|
|
3262
3262
|
readOnly: t.state.itemParam.readOnly,
|
|
3263
3263
|
minRows: 1,
|
|
3264
|
+
maxRows: 1000,
|
|
3264
3265
|
placeholder: t.state.itemParam.readOnly ? '' : t.state.itemParam.placeholder,
|
|
3265
3266
|
value: t.state.itemParam.value,
|
|
3266
3267
|
onChange: function onChange(value) {
|
|
@@ -3324,6 +3325,7 @@ var PageHome = function (_React$Component) {
|
|
|
3324
3325
|
label: t.state.itemParam.title,
|
|
3325
3326
|
readOnly: t.state.itemParam.readOnly,
|
|
3326
3327
|
minRows: 1,
|
|
3328
|
+
maxRows: 1000,
|
|
3327
3329
|
placeholder: t.state.itemParam.readOnly ? '' : t.state.itemParam.placeholder,
|
|
3328
3330
|
value: t.state.itemParam.value,
|
|
3329
3331
|
onChange: function onChange(value) {
|
|
@@ -3348,6 +3350,7 @@ var PageHome = function (_React$Component) {
|
|
|
3348
3350
|
label: t.state.itemParam.title,
|
|
3349
3351
|
readOnly: t.state.itemParam.readOnly,
|
|
3350
3352
|
minRows: 1,
|
|
3353
|
+
maxRows: 1000,
|
|
3351
3354
|
placeholder: t.state.itemParam.readOnly ? '' : t.state.itemParam.placeholder,
|
|
3352
3355
|
value: t.state.itemParam.value,
|
|
3353
3356
|
onChange: function onChange(value) {
|
|
@@ -3448,6 +3451,7 @@ var PageHome = function (_React$Component) {
|
|
|
3448
3451
|
label: t.state.itemParam.title,
|
|
3449
3452
|
readOnly: t.state.itemParam.readOnly,
|
|
3450
3453
|
minRows: 1,
|
|
3454
|
+
maxRows: 1000,
|
|
3451
3455
|
placeholder: t.state.itemParam.readOnly ? '' : t.state.itemParam.placeholder,
|
|
3452
3456
|
value: t.state.itemParam.value
|
|
3453
3457
|
}) : t.state.itemParam.dateFormat == "DateInterval" ? _react2.default.createElement(_CalendarField2.default, {
|
|
@@ -8296,7 +8296,7 @@ var PageHome = function (_React$Component) {
|
|
|
8296
8296
|
placeholder: '\u8BF7\u9009\u62E9',
|
|
8297
8297
|
code: 'org,group',
|
|
8298
8298
|
chooseType: 'userNotOrg',
|
|
8299
|
-
checkType: 'checkbox',
|
|
8299
|
+
checkType: this.state.participantMode == '3' ? 'radio' : 'checkbox',
|
|
8300
8300
|
ref: "selectMember_addSign",
|
|
8301
8301
|
isDelete: true,
|
|
8302
8302
|
onChange: this.addSignCallback.bind(this)
|