Commit 73b23d422e074fac9f87112cf094f2a3c5824c24

Authored by ww
1 parent e6bb15e8

fix: 修复描述名称错误

... ... @@ -147,7 +147,7 @@ export const formSchema: FormSchema[] = [
147 147 },
148 148 {
149 149 field: 'enableTemplate', //前端控制
150   - label: '启用模',
  150 + label: '启用模',
151 151 component: 'Switch',
152 152 defaultValue: 0,
153 153 componentProps: ({ formActionType }) => {
... ...
... ... @@ -62,7 +62,7 @@ export const columns: BasicColumn[] = [
62 62 export const searchFormSchema: FormSchema[] = [
63 63 {
64 64 field: 'name',
65   - label: '模板',
  65 + label: '模板名称',
66 66 component: 'Input',
67 67 colProps: { span: 8 },
68 68 componentProps: {
... ...
... ... @@ -25,7 +25,7 @@
25 25 const [register, { reload }] = useCardList({
26 26 api: getPage,
27 27 useSearchForm: true,
28   - title: '模',
  28 + title: '模板列表',
29 29 gutter: 4,
30 30 formConfig: {
31 31 schemas: searchFormSchema,
... ...