index.js 1.99 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
import Api from "~/service/Api"
import Pts from "../Common/Pts"

export default class Cnysel{
    constructor () {
        this.data = {
						cnytyp:"",			//  申报类型		.cnytyp
						ownref:"",			//  业务编号		.ownref
						frmdat:"",			//  From		.frmdat
						tildat:"",			//  Until		.tildat
						ownextkey:"",			//  Initial Code		.ownextkey
						cnystm:"",			//  Selection		.cnystm
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
						cnyselp:{
							cnylib:{
								spk:"",			//  业务主键		.cnyselp.cnylib.spk
								sbankorgcode:"",			//  银行机构代码		.cnyselp.cnylib.sbankorgcode
								stransattr:"",			//  业务属性		.cnyselp.cnylib.stransattr
								stranstype:"",			//  业务类型		.cnyselp.cnylib.stranstype
								sforbankswiftbic:"",			//  境外对手行代码		.cnyselp.cnylib.sforbankswiftbic
								sorgcode:"",			//  境内企业机构代码		.cnyselp.cnylib.sorgcode
								sforeigncountrycode:"",			//  境外企业国别地区代码		.cnyselp.cnylib.sforeigncountrycode
								doccurdate:"",			//  业务发生日期		.cnyselp.cnylib.doccurdate
								denddate:"",			//  业务到期日		.cnyselp.cnylib.denddate
								dcreditenddate:"",			//  信用证到期日		.cnyselp.cnylib.dcreditenddate
								famt:"",			//  金额		.cnyselp.cnylib.famt
								dexchangedate:"",			//  承兑日期		.cnyselp.cnylib.dexchangedate
								fexchangeamt:"",			//  承兑金额		.cnyselp.cnylib.fexchangeamt
								dexchangeenddate:"",			//  承兑到期日		.cnyselp.cnylib.dexchangeenddate
								sbanktrano:"",			//  银行业务编号		.cnyselp.cnylib.sbanktrano
								stermtype:"",			//  期限条件		.cnyselp.cnylib.stermtype
								currencycode:"",			//  币种		.cnyselp.cnylib.currencycode
							},
							sorgname:"",			//  境内企业名称		.cnyselp.sorgname
							sforeignorgname:"",			//  境外企业名称		.cnyselp.sforeignorgname
							saddwordlib:"",			//  交易附言		.cnyselp.saddwordlib
							sbankname:"",			//  银行机构名称		.cnyselp.sbankname
						},
38 39 40 41
						pageId: ""			// ctx的key
				}
    }
}