import { ref } from 'vue' import { SearchProps } from '../../../components/table/table-helper' const search = ref([ { type: 'text', label: '参数类型', field: 'parameterGroup', value: '', span: 5, placeholder: '请输入参数类型编号' }, { type: 'text', label: '参数名称', field: 'parameterName', value: '', span: 5, placeholder: '请输入参数名称' }, { type: 'text', label: '参数编号', field: 'parameterCode', value: '', span: 5, placeholder: '请输入参数编号' } ]) export default search