index.js 1.6 KB
Newer Older
1
import moment from "moment";
zenghuan committed
2

李少勇 committed
3 4 5 6
export default class Sndsel {
  constructor() {
    this.data = {
      sndp: {
7 8
        rcvdatsta: moment(new Date()).add(-3, 'd').format('YYYY-MM-DD'),			//  :	起始日期
        rcvdatend: moment(new Date()).format('YYYY-MM-DD'),			//  :	截止日期
李少勇 committed
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 38
        msgtyp: "",			//  :      报文标准
        subtyp: "",			//  :		报文类型
        sndbak: "",			//  : 		发报行BIC
        revbak: "",			//  : 		收报行BIC
        actbic: "",			//  : 		账户行
        othref: "",			//  : 		21域编号
        ownref: "",			//  :		20域编
        cur: "",			//  : 			币种
        act: "",			//  : 			账号
        amtmin: "",			//  : 		金额下限
        amtmax: "",			//  : 		金额上限
        chnipt: "",			//  行内系统		.sndp.chnipt
        rspsta: "",			//  回执状态		.sndp.rspsta
        tblrsp: "",			//  回执状态标签		.sndp.tblrsp
        tblrsm: "",			//  回执状态标签		.sndp.tblrsm
        usrnam: "",			//  操作员		.sndp.usrnam
        starsp: "",			//  处理状态标签		.sndp.starsp
        starsm: "",			//  处理状态标签		.sndp.starsm
        sta: "",			//  处理状态		.sndp.sta
        dtlchg: "",			//  : 		费用明细
        starsp1: "",			//  处理状态标签1		.sndp.starsp1
        starsm1: "",			//  处理状态标签1		.sndp.starsm1
        sta1: "",			//  处理状态1		.sndp.sta1
        expexl: "",			//  导出		.sndp.expexl
        expexl2: "",			//  3910导出		.sndp.expexl2
      },
      msggrp: {
        rcvlst: [],			//  		.msggrp.rcvlst
      },
      pageId: ""			// ctx的key
zenghuan committed
39
    }
李少勇 committed
40
  }
zenghuan committed
41
}