Commit fb19448c authored by 田翔's avatar 田翔

fix: 选项长度修改

parent 0d4827a0
{
"name": "panda-xform",
"version": "2.8.6",
"description": "2.8.6: 内部字段不允许编辑配置",
"version": "2.8.7",
"description": "2.8.7: 选项长度修改",
"keywords": [
"panda-xform"
],
......
......@@ -773,7 +773,7 @@ const selectWidgets = [
default: '',
props: {
style: {
width: '120px',
width: '200px',
color: 'blue'
}
}
......@@ -946,10 +946,12 @@ const selectWidgets = [
},
sourceType: {
title: '来源方式',
name: '单选框',
type: 'string',
widget: 'SoruceType',
default: '手动输入',
props: {
disabled: true
}
},
options: {
title: '',
......@@ -957,7 +959,7 @@ const selectWidgets = [
type: 'array',
required: '{{formData.sourceType === "手动输入"}}',
hidden: '{{formData.sourceType !== "手动输入"}}',
default: [],
default: [{ value: '选项一' }],
widget: 'simpleList',
items: {
type: 'object',
......@@ -971,7 +973,7 @@ const selectWidgets = [
default: '',
props: {
style: {
width: '120px',
width: '200px',
color: 'blue'
}
}
......@@ -1081,7 +1083,6 @@ const selectWidgets = [
},
sourceType: {
title: '来源方式',
name: '复选框',
type: 'string',
widget: 'SoruceType',
default: '手动输入',
......@@ -1095,7 +1096,7 @@ const selectWidgets = [
type: 'array',
required: '{{formData.sourceType === "手动输入"}}',
hidden: '{{formData.sourceType !== "手动输入"}}',
default: [],
default: [{ value: '选项一' }],
widget: 'simpleList',
items: {
type: 'object',
......@@ -1108,7 +1109,7 @@ const selectWidgets = [
default: '',
props: {
style: {
width: '120px',
width: '200px',
color: 'blue'
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment