index.js 719 Bytes
Newer Older
fukai committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
export default class Infbfd{
    constructor () {
        this.data = {
          infcon: {
            seaownref: '', //业务编号
            opndatfrom: new Date((new Date).getTime() - (7 * 24 * 60 * 60 * 1000)),
            opndatto: new Date(),
            sealcrtyp:'', //信用证类型
            ptyExtkey:'',//客户号
            searef:'',//当事人参考号
            seapty:'', //当事人BIC/名称
            seasta: '', //业务状态
            seacur: '', //币种
            seaamtfr: '', //金额
            seaamtto: '',//金额
            seadoctyp: '',//单据类型
            seaelcflg:'',//是否通过电证系统 
            seaforflg:'',//转卖单据
        }
				}
    }
}