Commit 686c344e3742e7d1772bb8935a731c6d0865d61a

Authored by ww
1 parent fd953261

perf: rename device name to product name

... ... @@ -96,7 +96,7 @@ export const step1Schemas: FormSchema[] = [
96 96 },
97 97 {
98 98 field: 'name',
99   - label: '配置名称',
  99 + label: '产品名称',
100 100 required: true,
101 101 component: 'Input',
102 102 colProps: { span: 14 },
... ... @@ -104,7 +104,7 @@ export const step1Schemas: FormSchema[] = [
104 104 return {
105 105 disabled: false,
106 106 ength: 255,
107   - placeholder: '请输入配置名称',
  107 + placeholder: '请输入产品名称',
108 108 };
109 109 },
110 110 },
... ... @@ -242,12 +242,12 @@ export const defaultObj = {
242 242 export const searchFormSchema: FormSchema[] = [
243 243 {
244 244 field: 'name',
245   - label: '配置名称',
  245 + label: '产品名称',
246 246 component: 'Input',
247 247 colProps: { span: 6 },
248 248 componentProps: {
249 249 maxLength: 255,
250   - placeholder: '请输入配置名称',
  250 + placeholder: '请输入产品名称',
251 251 },
252 252 },
253 253 ];
... ... @@ -262,12 +262,12 @@ export const isEmail = (type: string) => {
262 262 export const formSchema: FormSchema[] = [
263 263 {
264 264 field: 'configName',
265   - label: '配置名称',
  265 + label: '产品名称',
266 266 required: true,
267 267 component: 'Input',
268 268 componentProps: {
269 269 maxLength: 255,
270   - placeholder: '请输入配置名称',
  270 + placeholder: '请输入产品名称',
271 271 },
272 272 },
273 273 {
... ...