d4131bce by lihua

添加数据产品下载源文件

1 parent fc4cc643
...@@ -473,6 +473,34 @@ const baseInfoFormItems = ref([ ...@@ -473,6 +473,34 @@ const baseInfoFormItems = ref([
473 filterable: true, 473 filterable: true,
474 required: false, //非必填,只能选择跟领域匹配的逻辑空间 474 required: false, //非必填,只能选择跟领域匹配的逻辑空间
475 clearable: true, 475 clearable: true,
476 }, {
477 label: '是否文件资源',
478 type: 'radio-group',
479 placeholder: '',
480 field: 'isFileResource',
481 block: false,
482 disabled: false,
483 default: 'N',
484 options: [{
485 value: 'Y',
486 label: '是'
487 }, {
488 value: 'N',
489 label: '否'
490 }],
491 required: true,
492 },
493 {
494 label: '选择文件上传',
495 tip: '',
496 type: 'upload-file',
497 accept: '',
498 required: true,
499 default: [],
500 block: false,
501 field: 'attachments',
502 col: 'col2',
503 visible: false,
476 }, 504 },
477 { 505 {
478 label: '资源描述', 506 label: '资源描述',
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!