d8b894b8 by lihua

修改字段长度限制

1 parent cb84831e
......@@ -420,7 +420,7 @@ const dictFormItems: any = ref([
// },
{
label: '上级分类',
label: '上级目录',
type: 'tree-select',
placeholder: '请选择',
field: 'parentGuid',
......@@ -432,13 +432,14 @@ const dictFormItems: any = ref([
label: "dicName",
value: "guid",
children: 'childList',
disabled: 'disabled',
checkStrictly: true,
emitPath: false
},
filterable: true,
clearable: true,
default: '',
required: true
required: false
},
{
......@@ -466,7 +467,7 @@ const dictFormItems: any = ref([
{
label: '界面排序',
type: 'input',
maxlength: 50,
maxlength: 10,
placeholder: "请输入,不填写自动生成",
field: 'orderNum',
regexp: /[^\d]/g,
......@@ -487,7 +488,7 @@ const dictFormItems: any = ref([
},
{
label: '描述',
placeholder: '输入',
placeholder: '输入',
field: 'remarks',
type: 'textarea',
default: '',
......
......@@ -420,6 +420,7 @@ const baseInfoFormItems = ref([
default: '',
clearable: true,
required: true,
maxlength: 500,
block: true,
example: '示例:该数据资源应用场景是数字化市场营销,基于LBS、销售数据、人力数据等各类的数据,结合AI算法为客户提供精准营销模型,提高营销人员精准服务客户的能力,优化公司的成本及效率。',
// col: 'col2 mr8'
......@@ -433,6 +434,7 @@ const baseInfoFormItems = ref([
clearable: true,
required: true,
block: true,
maxlength: 500,
exampleBtns: [{
value: '无限制',
label: '无限制'
......
......@@ -64,6 +64,7 @@ const searchItemList = ref([
field: "databaseNameZh",
default: "",
placeholder: "数据源名称",
maxlength: 50,
clearable: true,
},
{
......@@ -72,6 +73,7 @@ const searchItemList = ref([
field: "databaseNameEn",
default: "",
placeholder: "数据库名",
maxlength: 50,
clearable: true,
},
]);
......@@ -176,6 +178,7 @@ const contents: any = ref({
field: "databaseNameZh",
default: "",
clearable: true,
maxlength: 50,
required: true,
},
{
......@@ -238,6 +241,7 @@ const contents: any = ref({
default: "",
clearable: true,
required: true,
maxlength: 200,
block: true,
},
{
......@@ -245,6 +249,7 @@ const contents: any = ref({
type: "textarea",
placeholder: "请输入",
field: "beLoadUrl",
maxlength: 200,
default: "",
clearable: true,
required: true,
......@@ -255,6 +260,7 @@ const contents: any = ref({
type: "textarea",
placeholder: "请输入",
field: "dorisJdbcUrl",
maxlength: 200,
default: "",
clearable: true,
required: true,
......@@ -270,6 +276,7 @@ const contents: any = ref({
placeholder: "请输入",
field: "host",
default: "",
maxlength: 50,
clearable: true,
required: true,
},
......@@ -279,6 +286,7 @@ const contents: any = ref({
placeholder: "请输入",
field: "port",
default: "",
maxlength: 5,
clearable: true,
required: true,
},
......@@ -288,6 +296,7 @@ const contents: any = ref({
placeholder: "请输入",
field: "logonUser",
default: "",
maxlength: 50,
clearable: true,
required: true,
autocompleteSetting: {
......@@ -300,6 +309,7 @@ const contents: any = ref({
type: "password",
placeholder: "请输入",
field: "password",
maxlength: 50,
default: "",
clearable: true,
required: true,
......@@ -313,6 +323,7 @@ const contents: any = ref({
type: "input",
placeholder: "请输入",
field: "databaseNameEn",
maxlength: 50,
default: "",
clearable: true,
required: true,
......@@ -322,6 +333,7 @@ const contents: any = ref({
type: "textarea-tips",
placeholder: "请输入",
field: "linkage",
maxlength: 500,
default: "",
tips: {
type: "table",
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!