import { SearchProps } from '../../../components/table/table-helper' import { ref } from 'vue' const search = ref([ { type: 'text', field: 'displayName', label: '菜单名称', value: undefined, span: 4, placeholder: '请输入菜单名称' }, { type: 'select', field: 'siteCode', value: undefined, label: '客户端类型', span: 3, options: [ { key: 'manage', text: '管理端', value: 'manage' }, { key: 'h5', text: '移动端', value: 'h5' } ], placeholder: '请选择终端' } ]) export default search