Commit 3aa62fd20805142cf9b33c44eddbd3694504c036
1 parent
6abddc18
fix:DEFECT-570 修复新增通知,上一个新增通知上传的图片显示(缓存)在现在所要发的通知里
Showing
1 changed file
with
2 additions
and
1 deletions
... | ... | @@ -61,7 +61,7 @@ export const formSchema: FormSchema[] = [ |
61 | 61 | colProps: { span: 24 }, |
62 | 62 | required: true, |
63 | 63 | component: 'RadioGroup', |
64 | - defaultValue:'NOTICE', | |
64 | + defaultValue: 'NOTICE', | |
65 | 65 | componentProps: { |
66 | 66 | options: [ |
67 | 67 | { |
... | ... | @@ -96,6 +96,7 @@ export const formSchema: FormSchema[] = [ |
96 | 96 | colProps: { span: 24 }, |
97 | 97 | label: '通知内容', |
98 | 98 | required: true, |
99 | + defaultValue: '', | |
99 | 100 | render: ({ model, field }) => { |
100 | 101 | return h(Tinymce, { |
101 | 102 | value: model[field], | ... | ... |