|
@@ -43,14 +43,12 @@ const formOptions = ref<IDynamicFormOptions>({
|
|
|
children: [
|
|
|
{
|
|
|
label: '非遗项目名称', name: 'title', type: 'text',
|
|
|
- disabled: true,
|
|
|
additionalProps: {
|
|
|
placeholder: '请输入标题',
|
|
|
},
|
|
|
},
|
|
|
{
|
|
|
label: '级别', name: 'level', type: 'select-id',
|
|
|
- disabled: true,
|
|
|
additionalProps: {
|
|
|
placeholder: '请选择级别',
|
|
|
loadData: async () => (await CommonContent.getCategoryList(2)).map(p => ({ label: p.title, value: p.id, raw: p }))
|
|
@@ -58,7 +56,6 @@ const formOptions = ref<IDynamicFormOptions>({
|
|
|
},
|
|
|
{
|
|
|
label: '非遗分类', name: 'ichType', type: 'select-id',
|
|
|
- disabled: true,
|
|
|
additionalProps: {
|
|
|
placeholder: '请选择非遗类型',
|
|
|
loadData: async () => (await CommonContent.getCategoryList(4)).map(p => ({ label: p.title, value: p.id, raw: p }))
|
|
@@ -66,13 +63,12 @@ const formOptions = ref<IDynamicFormOptions>({
|
|
|
},
|
|
|
{
|
|
|
label: '批次', name: 'batch', type: 'select-id',
|
|
|
- disabled: true,
|
|
|
additionalProps: {
|
|
|
placeholder: '请选择批次',
|
|
|
loadData: async () => (await CommonContent.getCategoryList(289)).map(p => ({ label: p.title, value: p.id, raw: p }))
|
|
|
},
|
|
|
},
|
|
|
- { label: '申报区域', name: 'regionText', type: 'text', disabled: true, additionalProps: { placeholder: '请输入申报地区' } },
|
|
|
+ { label: '申报区域', name: 'regionText', type: 'text', additionalProps: { placeholder: '请输入申报地区' } },
|
|
|
|
|
|
{ label: '非遗项目简介', name: 'intro', type: 'richtext', additionalProps: { placeholder: '请输入简介' } },
|
|
|
{
|