codes.js 2.77 KB
Newer Older
fukai committed
1
import CodeTable from "~/config/CodeTable"
liuxiaojing committed
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37

export default {
  dsp:CodeTable.dsp,
  busflg:CodeTable.busflg,
  actiontype:CodeTable.actiontype,
  cur:CodeTable.cur,
  ptytyp:CodeTable.ptytyp,
  staflg:CodeTable.staflg,
  paytyp:CodeTable.paytyp,
  payattr:CodeTable.payattr,
  balancemode:CodeTable.balancemode,
  bopcustype:CodeTable.bopcustype,
  payeeattr:CodeTable.payeeattr,
  boppaytype:CodeTable.boppaytype,
  debcdtflg:CodeTable.debcdtflg,
  acttyp:CodeTable.acttyp,
  payflg:CodeTable.payflg,
  buscod:CodeTable.buscod,
  datsrc:CodeTable.datsrc,
  sndselflg:CodeTable.sndselflg,
  payacttyp:CodeTable.payacttyp,
  curtxt:CodeTable.curtxt,
  bustyp:CodeTable.bustyp,
  swftyp:CodeTable.swftyp,
  payeraccttype:CodeTable.payeraccttype,
  chato:CodeTable.chato,
  opertype:CodeTable.opertype,
  bopyesno:CodeTable.bopyesno,
  custyp:CodeTable.custyp,
  dsp2:CodeTable.dsp2,
  liqtyp:CodeTable.liqtyp,
  bopcur: CodeTable.bopcur,
  szflg: CodeTable.szflg,
  rmbflg: CodeTable.rmbflg,
  jshtyp: CodeTable.jshtyp,
  diqvjigou: CodeTable.diqvjigou,
liuyunfeng committed
38
  bopmethods: CodeTable.bopmethods,
39
  rol: CodeTable.rol,
liuxiaojing committed
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
  swfcod: {
    SWT: [
      { label: 'MT103', value: '103' },
      { label: 'MT103+MT202', value: '103202' },
    ],
    FMT: [
      { label: 'FMT100', value: 'F00' },
      { label: 'FMT101', value: 'F01' },
    ],
    CIP: [
      { label: 'CIPS001', value: 'C00' },
      { label: 'CIPS101', value: 'C01' },
    ],
    CMT: [
      { label: 'CMT100', value: 'CM0' },
    ]
  },
  liqtyp1: [
		{ label: '01-SWIFT支付', value: 'SWT' },
		{ label: '02-境内外币支付', value: 'FMT' },
		{ label: '03-行内划转', value: 'ZZT' },
	],
	liqtyp2: [
		{ label: '03-行内划转', value: 'ZZT' },
		{ label: '04-跨境人民币支付', value: 'CIP' },
		{ label: '05-人民币大额支付', value: 'CMT' },
  ],
  usetype: [
    { label: `购房`, value: `010` },
    { label: `购买其他固定资产`, value: `011` },
    { label: `其他等用途`, value: `099` },
    { label: `支付货款`, value: `001` },
    { label: `股权出资`, value: `012` },
    { label: `支付工程款`, value: `002` },
    { label: `偿还银行贷款`, value: `013` },
    { label: `支付保证金`, value: `003` },
    { label: `购买股票/债券/基金/信托等境内金融资产`, value: `014` },
    { label: `支付咨询费`, value: `004` },
    { label: `支付其他服务费用`, value: `005` },
    { label: `支付投资人境外证券投资本金/收益`, value: `016` },
    { label: `预付款`, value: `006` },
    { label: `利息结汇`, value: `017` },
    { label: `支付税款`, value: `007` },
    { label: `备用金`, value: `018` },
    { label: `支付工资等劳务报酬`, value: `008` },
    { label: `现钞`, value: `019` },
    { label: `土地出让金`, value: `009` },
liuyunfeng committed
87 88
  ],
  bchlevelLst:[]
liuxiaojing committed
89
}