1234567891011121314151617 |
- import { selectObj } from '@/utils/select'
- import { A4voucherSearchType, IA4voucherParams } from './types'
- export const DEFAULT_A4VOUCHER_PARAMS: IA4voucherParams = {
- pageNum: 1,
- pageSize: 10,
- num: ''
- }
- export const A4VOUCHER_PARAM_ROWS: A4voucherSearchType[] = [
- { name: '凭证名称', key: 'num', type: '输入框' },
- { name: '归档日期范围', key: 'num', type: '日期选择' },
- { name: '业务类型', key: 'num', type: '下拉框', data: selectObj['业务类型'] },
- { name: '业务编号', key: 'num', type: '输入框' }
- ]
- export const A4VOUCHER_TABLE_COLUMNS = [['txt', '业务编号', 'num']]
|