Sign in

简柏林 / thingskit-front · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Network
  • thingskit-front
  • ..
  • component
  • config.ts
  • fix: 修改看板小程序端无法滑动
    9d2a974a
    loveumiko authored
    2023-12-19 14:38:43 +0800  
    Browse Files »
config.ts 323 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
import { FormSchema } from '/@/components/Form';

export const formSchema: FormSchema[] = [
  {
    field: 'password',
    label: '操作密码',
    colProps: { span: 18 },
    component: 'InputPassword',
    required: true,
    componentProps: {
      placeholder: '请输入操作密码',
      max: 120,
    },
  },
];