constants.ts 641 B

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